From 069da032460f9d881b09f4c218f8103dd2adef61 Mon Sep 17 00:00:00 2001 From: Rob White Date: Tue, 27 Mar 2018 11:54:05 +0100 Subject: [PATCH] nogogsplash2: Add compatibility with mwan3 v2 nogogsplash2: Add compatibility with mwan3 version 2 Changes in mwan3 version 2 resulted in previous recommended fix for Nodogsplash to fail. Setting fw_mark to use bits set "higher" than used in mwan3 solves the problem. This works also for all previous versions of Nodogsplash. Author-name: Rob White Signed-off-by: Rob White Maintainer: Moritz Warning Compile not required Run tested: Run and tested on LEDE 170104 Description: fw_mark settings compatible with mwan3 version 2 --- nodogsplash2/files/nodogsplash.config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nodogsplash2/files/nodogsplash.config b/nodogsplash2/files/nodogsplash.config index b6ca368..37269bd 100644 --- a/nodogsplash2/files/nodogsplash.config +++ b/nodogsplash2/files/nodogsplash.config @@ -73,6 +73,6 @@ config nodogsplash #list trustedmac '00:00:C0:01:D0:1D' # Set FW_MARK for compatibilty with other OpenWrt Packages eg mwan3, sqm etc. - list fw_mark_authenticated '520' - list fw_mark_trusted '510' - list fw_mark_blocked '500' + list fw_mark_authenticated '30000' + list fw_mark_trusted '20000' + list fw_mark_blocked '10000'