1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-13 06:50:17 +02:00

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
This commit is contained in:
nbd 2005-11-18 14:08:36 +00:00
parent 4073708de9
commit 89648c8fb6

View File

@ -11,7 +11,7 @@ WAN=$(nvram get wan_ifname)
LAN=$(nvram get lan_ifname) LAN=$(nvram get lan_ifname)
## CLEAR TABLES ## CLEAR TABLES
for T in filter nat mangle; do for T in filter nat; do
iptables -t $T -F iptables -t $T -F
iptables -t $T -X iptables -t $T -X
done done