aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2006-01-03 12:53:01 +0000
committerFlorian Fainelli <florian@openwrt.org>2006-01-03 12:53:01 +0000
commit9feda69af9dd6682ef0f92a4f63c223f1174e18b (patch)
tree0d8d23205fa0b40990a9b1c56c56cf7d76a25792 /package/base-files
parent927ab463fb65539129594f22c42bcdb71ba34f25 (diff)
downloadmaster-187ad058-9feda69af9dd6682ef0f92a4f63c223f1174e18b.tar.gz
master-187ad058-9feda69af9dd6682ef0f92a4f63c223f1174e18b.tar.bz2
master-187ad058-9feda69af9dd6682ef0f92a4f63c223f1174e18b.zip
Added mrd6 package : IPv6 multicast routing daemon
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2816 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/default/etc/init.d/S45firewall8
1 files changed, 5 insertions, 3 deletions
diff --git a/package/base-files/default/etc/init.d/S45firewall b/package/base-files/default/etc/init.d/S45firewall
index 8c67d82b18..0110cfc775 100755
--- a/package/base-files/default/etc/init.d/S45firewall
+++ b/package/base-files/default/etc/init.d/S45firewall
@@ -81,9 +81,11 @@ iptables -t nat -N postrouting_rule
iptables -A FORWARD -j forwarding_rule
# allow
- iptables -A FORWARD -i br0 -o br0 -j ACCEPT
- [ -z "$WAN" ] || iptables -A FORWARD -i $LAN -o $WAN -j ACCEPT
-
+ # if there is bridge splitting this workaround works too
+ for iface in $LAN; do
+ iptables -A FORWARD -i $iface -o $iface -j ACCEPT
+ [ -z "$WAN" ] || iptables -A FORWARD -i $iface -o $WAN -j ACCEPT
+ done
# reject (what to do with anything not allowed earlier)
# uses the default -P DROP