diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-29 18:02:45 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-29 18:02:45 +0000 |
commit | 50a22f4f9e981c910c9559c1ee6fc0dab2b52c3d (patch) | |
tree | 56fc2738798df78d8b8575ea5236a3f04b3d2d64 /package/firewall/files/lib/core.sh | |
parent | 0a84f6a74e3e4edabf28ac15199f9b7e8ba6de19 (diff) | |
download | mtk-20170518-50a22f4f9e981c910c9559c1ee6fc0dab2b52c3d.zip mtk-20170518-50a22f4f9e981c910c9559c1ee6fc0dab2b52c3d.tar.gz mtk-20170518-50a22f4f9e981c910c9559c1ee6fc0dab2b52c3d.tar.bz2 |
firewall: relocate TCPMSS rules into mangle table, add code to selectively clear them out again
SVN-Revision: 28669
Diffstat (limited to 'package/firewall/files/lib/core.sh')
-rw-r--r-- | package/firewall/files/lib/core.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/firewall/files/lib/core.sh b/package/firewall/files/lib/core.sh index c383597..0297518 100644 --- a/package/firewall/files/lib/core.sh +++ b/package/firewall/files/lib/core.sh @@ -67,6 +67,12 @@ fw_stop() { [ -n "$i" ] && env -i ACTION=remove ZONE="$z" \ INTERFACE="$n" DEVICE="$i" /sbin/hotplug-call firewall done + + config_get i core "${z}_tcpmss" + [ "$i" == 1 ] && { + fw del i m FORWARD zone_${z}_MSSFIX + fw del i m zone_${z}_MSSFIX + } done fw_clear ACCEPT |