X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=openwrt%2Fpackage%2Fbase-files%2Fdefault%2Fetc%2Finit.d%2FS45firewall;h=2942f3118e6df6c7e6e226204fbe068f2aada22d;hb=efb789106090c1daedbf5e2d34a6db51a84eb792;hp=0110cfc775013a2f82999f4be578c97a0064777a;hpb=3f956d1d50b27a7f0de79e3f473c883550da586a;p=openwrt%2Fstaging%2Fdedeckeh.git diff --git a/openwrt/package/base-files/default/etc/init.d/S45firewall b/openwrt/package/base-files/default/etc/init.d/S45firewall index 0110cfc775..2942f3118e 100755 --- a/openwrt/package/base-files/default/etc/init.d/S45firewall +++ b/openwrt/package/base-files/default/etc/init.d/S45firewall @@ -81,11 +81,9 @@ iptables -t nat -N postrouting_rule iptables -A FORWARD -j forwarding_rule # allow - # 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 + iptables -A FORWARD -i br0 -o br0 -j ACCEPT + [ -z "$WAN" ] || iptables -A FORWARD -i $iface -o $WAN -j ACCEPT + # reject (what to do with anything not allowed earlier) # uses the default -P DROP