aboutsummaryrefslogtreecommitdiffstats
path: root/package/firewall/files/lib/core_interface.sh
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-10-29 18:02:45 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-10-29 18:02:45 +0000
commitc3b8a2419cfc6e3106f70cf7e3b0f1a647503856 (patch)
tree6f2121a1e8a4df6c222c03086e0ab52369fd33fd /package/firewall/files/lib/core_interface.sh
parent0817f041877704400449b359ee5d3c00f24da6c3 (diff)
downloadmaster-187ad058-c3b8a2419cfc6e3106f70cf7e3b0f1a647503856.tar.gz
master-187ad058-c3b8a2419cfc6e3106f70cf7e3b0f1a647503856.tar.bz2
master-187ad058-c3b8a2419cfc6e3106f70cf7e3b0f1a647503856.zip
[package] firewall: relocate TCPMSS rules into mangle table, add code to selectively clear them out again
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28669 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/firewall/files/lib/core_interface.sh')
-rw-r--r--package/firewall/files/lib/core_interface.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/firewall/files/lib/core_interface.sh b/package/firewall/files/lib/core_interface.sh
index 84e07e0e25..8023e7fb8d 100644
--- a/package/firewall/files/lib/core_interface.sh
+++ b/package/firewall/files/lib/core_interface.sh
@@ -96,7 +96,9 @@ fw_configure_interface() {
fw $action $mode f ${chain}_REJECT reject $ { -o "$ifname" $onet }
fw $action $mode f ${chain}_REJECT reject $ { -i "$ifname" $inet }
- fw $action $mode f ${chain}_MSSFIX TCPMSS $ { -o "$ifname" -p tcp --tcp-flags SYN,RST SYN --clamp-mss-to-pmtu $onet }
+ [ "$(uci_get_state firewall core "${zone}_tcpmss")" == 1 ] && \
+ fw $action $mode m ${chain}_MSSFIX TCPMSS $ \
+ { -o "$ifname" -p tcp --tcp-flags SYN,RST SYN --clamp-mss-to-pmtu $onet }
fw $action $mode f input ${chain} $ { -i "$ifname" $inet }
fw $action $mode f forward ${chain}_forward $ { -i "$ifname" $inet }