1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 07:04:10 +03:00

fix clearing of prerouting_rule and postrouting_rule in firewall.user

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1327 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-07-03 19:42:49 +00:00
parent 4577754436
commit 4584b28562

View File

@ -7,8 +7,8 @@ LAN=$(nvram get lan_ifname)
iptables -F input_rule
iptables -F output_rule
iptables -F forwarding_rule
iptables -F prerouting_rule
iptables -F postrouting_rule
iptables -t nat -F prerouting_rule
iptables -t nat -F postrouting_rule
### BIG FAT DISCLAIMER
### The "-i $WAN" literally means packets that came in over the $WAN interface;