diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-01-03 12:53:01 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-01-03 12:53:01 +0000 |
commit | 1c59bfaaf40a3da51600e2fbfff62cfd85012fd9 (patch) | |
tree | 610ae23e4d4a766a69337b02b1f665e16594b7e3 /openwrt/package/base-files/default/etc | |
parent | 4bdead278b222dfd48403a65d276808253c17ef2 (diff) | |
download | mtk-20170518-1c59bfaaf40a3da51600e2fbfff62cfd85012fd9.zip mtk-20170518-1c59bfaaf40a3da51600e2fbfff62cfd85012fd9.tar.gz mtk-20170518-1c59bfaaf40a3da51600e2fbfff62cfd85012fd9.tar.bz2 |
Added mrd6 package : IPv6 multicast routing daemon
SVN-Revision: 2816
Diffstat (limited to 'openwrt/package/base-files/default/etc')
-rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S45firewall | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S45firewall b/openwrt/package/base-files/default/etc/init.d/S45firewall index 8c67d82..0110cfc 100755 --- a/openwrt/package/base-files/default/etc/init.d/S45firewall +++ b/openwrt/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 |