diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-18 14:08:36 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-18 14:08:36 +0000 |
commit | 89648c8fb6dbc48d7b1a0d999c6a481368843ec3 (patch) | |
tree | 500e14e8da256f874238b4f00fbeac35522b6042 /openwrt/package | |
parent | 4073708de934b630a838a9d54f0cfb693db59420 (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')
-rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S45firewall | 2 |
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 066bded5bf..8c67d82b18 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 |