fix firewall script, add ar7 network if into the bridge by default
authorFelix Fietkau <nbd@openwrt.org>
Thu, 21 Jul 2005 16:57:12 +0000 (16:57 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 21 Jul 2005 16:57:12 +0000 (16:57 +0000)
SVN-Revision: 1522

openwrt/package/base-files/default/etc/init.d/S45firewall
openwrt/target/linux/package/openwrt/files/network.overrides.ar7

index 188b9aaa8ad950d70ece0c352fa347566aaa3b17..c9986011ad89d868fd82e286de3999c81e67f9e6 100755 (executable)
@@ -5,7 +5,8 @@ ${FAILSAFE:+exit}
 
 . /etc/functions.sh
 . /etc/network.overrides
-[ -e /etc/config/network] && . /etc/config/network
+[ -e /etc/config/network ] && . /etc/config/network
+
 WAN=$(nvram get wan_ifname)
 LAN=$(nvram get lan_ifname)
 
@@ -37,7 +38,7 @@ iptables -t nat -N postrouting_rule
   iptables -A INPUT -j input_rule
 
   # allow
-  iptables -A INPUT -i \! $WAN -j ACCEPT       # allow from lan/wifi interfaces 
+  iptables -A INPUT ${WAN:+-i \! $WAN} -j ACCEPT       # allow from lan/wifi interfaces 
   iptables -A INPUT -p icmp    -j ACCEPT       # allow ICMP
   iptables -A INPUT -p gre     -j ACCEPT       # allow GRE
 
@@ -81,7 +82,7 @@ iptables -t nat -N postrouting_rule
 
   # allow
   iptables -A FORWARD -i br0 -o br0 -j ACCEPT
-  iptables -A FORWARD -i $LAN -o $WAN -j ACCEPT
+  [ -z "$WAN" ] || iptables -A FORWARD -i $LAN -o $WAN -j ACCEPT
 
   # reject (what to do with anything not allowed earlier)
   # uses the default -P DROP
@@ -89,7 +90,7 @@ iptables -t nat -N postrouting_rule
 ### MASQ
   iptables -t nat -A PREROUTING -j prerouting_rule
   iptables -t nat -A POSTROUTING -j postrouting_rule
-  iptables -t nat -A POSTROUTING -o $WAN -j MASQUERADE
+  [ -z "$WAN" ] || iptables -t nat -A POSTROUTING -o $WAN -j MASQUERADE
 
 ## USER RULES
 [ -f /etc/firewall.user ] && . /etc/firewall.user
index dc58a7e59120005a83b529728fd77df10da32df6..e857d5b5f1891ec3e584a3bb20a5708f1a91a768 100644 (file)
@@ -7,7 +7,7 @@
 [ -f /etc/sysconf ] && . /etc/sysconf
 
 DEFAULT_lan_proto="static"
-DEFAULT_lan_ifname="eth0"
+DEFAULT_lan_ifname="br0"
 DEFAULT_lan_ifnames="eth0"
 DEFAULT_lan_ipaddr=${BR2_SYSCONF_FAILSAFE_IP:-"192.168.1.1"}
 DEFAULT_lan_netmask=${BR2_SYSCONF_FAILSAFE_NETMASK:-"255.255.255.0"}