From 704ec2b064f33b76b4511e6975e00ba7b199da7c Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Thu, 29 Mar 2018 11:30:52 +0200 Subject: [PATCH] net/mwan3: set default mask to 0x3F00 The IPsec ip route table has the default number 220. If mwan3 has more then 7 bits set (124 interfaces) then if mwan3 down is executed the table is also cleared. To solve this set default max 7 bits in the mmx_mask for mwan3. Signed-off-by: Florian Eckert --- net/mwan3/files/lib/mwan3/mwan3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/mwan3/files/lib/mwan3/mwan3.sh b/net/mwan3/files/lib/mwan3/mwan3.sh index 275723008..1c371ea65 100644 --- a/net/mwan3/files/lib/mwan3/mwan3.sh +++ b/net/mwan3/files/lib/mwan3/mwan3.sh @@ -69,7 +69,7 @@ mwan3_init() MWAN3_INTERFACE_MAX=$(uci_get_state mwan3 globals iface_max) else config_load mwan3 - config_get MMX_MASK globals mmx_mask '0xff00' + config_get MMX_MASK globals mmx_mask '0x3F00' echo "$MMX_MASK" > "${MWAN3_STATUS_DIR}/mmx_mask" $LOG notice "Using firewall mask ${MMX_MASK}"