don't drop all incoming connections if wan_ifname is not set
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 27 Apr 2006 14:55:04 +0000 (14:55 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 27 Apr 2006 14:55:04 +0000 (14:55 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3709 3c298f89-4303-0410-b956-a3cf2f4a3e73

openwrt/package/iptables/files/firewall.init

index 3804d04..a7cde95 100755 (executable)
@@ -34,7 +34,7 @@ iptables -t nat -N postrouting_rule
   iptables -A INPUT -j input_rule
 
   # allow
-  [ -z "$WAN" ] || iptables -A INPUT -i \! $WAN        -j ACCEPT       # allow from lan/wifi interfaces 
+  iptables -A INPUT ${WAN:+-i \! $WAN} -j ACCEPT       # allow from all interfaces except for wan
   iptables -A INPUT -p icmp    -j ACCEPT       # allow ICMP
   iptables -A INPUT -p gre     -j ACCEPT       # allow GRE
 
This page took 0.028283 seconds and 4 git commands to generate.