diff options
author | Daniel A. Maierhofer <git@damadmai.at> | 2019-07-25 23:13:44 +0200 |
---|---|---|
committer | Daniel A. Maierhofer <git@damadmai.at> | 2019-08-04 18:47:25 +0200 |
commit | 1e97156adc49d38fa22dc7783b81e976115aed02 (patch) | |
tree | 1ab5af1e4839704a5abd81fd3745783bcb0c86a7 | |
parent | f431f442a34da3a45b367d50695a73db4477b2c5 (diff) |
mwan3: Add missing IPs to wanb
Maintainer: Florian Eckert @feckert
Compile tested: not needed
Run tested: x86_64
Description:
Only two of the four IPs defined for wan are found in wanb, adding it so it is the same.
Signed-off-by: Daniel A. Maierhofer <git@damadmai.at>
-rw-r--r-- | net/mwan3/Makefile | 2 | ||||
-rw-r--r-- | net/mwan3/files/etc/config/mwan3 | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/net/mwan3/Makefile b/net/mwan3/Makefile index a80c9dede..e6d538616 100644 --- a/net/mwan3/Makefile +++ b/net/mwan3/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mwan3 PKG_VERSION:=2.8.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Florian Eckert <fe@dev.tdt.de> PKG_LICENSE:=GPLv2 diff --git a/net/mwan3/files/etc/config/mwan3 b/net/mwan3/files/etc/config/mwan3 index 3f64b99d4..3f09d9569 100644 --- a/net/mwan3/files/etc/config/mwan3 +++ b/net/mwan3/files/etc/config/mwan3 @@ -37,19 +37,27 @@ config interface 'wan6' config interface 'wanb' option enabled '0' + list track_ip '8.8.4.4' list track_ip '8.8.8.8' + list track_ip '208.67.222.222' list track_ip '208.67.220.220' option family 'ipv4' option reliability '1' option count '1' option timeout '2' + option failure_latency '1000' + option recovery_latency '500' + option failure_loss '20' + option recovery_loss '5' option interval '5' option down '3' option up '8' config interface 'wanb6' option enabled '0' + list track_ip '2001:4860:4860::8844' list track_ip '2001:4860:4860::8888' + list track_ip '2620:0:ccd::2' list track_ip '2620:0:ccc::2' option family 'ipv6' option reliability '1' |