1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-18 10:25:00 +02:00

don't clear the mangle table in the default firewall script

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2517 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-11-18 14:08:36 +00:00
parent 1657a14f25
commit bfe74cf7f3

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