summaryrefslogtreecommitdiffstats
path: root/openwrt/package/base-files/default/etc/init.d
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-18 14:08:36 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-18 14:08:36 +0000
commit89648c8fb6dbc48d7b1a0d999c6a481368843ec3 (patch)
tree500e14e8da256f874238b4f00fbeac35522b6042 /openwrt/package/base-files/default/etc/init.d
parent4073708de934b630a838a9d54f0cfb693db59420 (diff)
don't clear the mangle table in the default firewall script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2517 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default/etc/init.d')
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/S45firewall2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S45firewall b/openwrt/package/base-files/default/etc/init.d/S45firewall
index 066bded5b..8c67d82b1 100755
--- a/openwrt/package/base-files/default/etc/init.d/S45firewall
+++ b/openwrt/package/base-files/default/etc/init.d/S45firewall
@@ -11,7 +11,7 @@ WAN=$(nvram get wan_ifname)
LAN=$(nvram get lan_ifname)
## CLEAR TABLES
-for T in filter nat mangle; do
+for T in filter nat; do
iptables -t $T -F
iptables -t $T -X
done