From: nbd Date: Sun, 3 Jul 2005 19:42:49 +0000 (+0000) Subject: fix clearing of prerouting_rule and postrouting_rule in firewall.user X-Git-Tag: fast2504n-3.10.28-merged~24667 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=29717925ff71d3da43405997241e02f39fb62d69;p=openwrt.git fix clearing of prerouting_rule and postrouting_rule in firewall.user git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1327 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/openwrt/target/default/target_skeleton/etc/firewall.user b/openwrt/target/default/target_skeleton/etc/firewall.user index 2ba6b4e839..1781bd4ea0 100755 --- a/openwrt/target/default/target_skeleton/etc/firewall.user +++ b/openwrt/target/default/target_skeleton/etc/firewall.user @@ -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;