summaryrefslogtreecommitdiffstats
path: root/openwrt
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-31 11:36:01 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-31 11:36:01 +0000
commitbc766b82db24faaebbb4e872ca58ea8727fb6c0c (patch)
tree2cec235cd9ec660fe34435cf177b4ead72dbd106 /openwrt
parent33d39081fb309d6ffcbadaca8b694cf695038900 (diff)
set ALLMULTI on bridged interfaces (should improve multicast bridging)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3079 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt')
-rw-r--r--openwrt/package/base-files/default/etc/hotplug.d/net/10-net3
1 files changed, 2 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
index 4579a8470..0f384ec46 100644
--- a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
@@ -139,7 +139,8 @@ do_register()
if [ "$INTERFACE" != "$if" ]; then
$DEBUG ifconfig "$INTERFACE" 0.0.0.0 up
- brctl addif "$if" "$INTERFACE"
+ $DEBUG brctl addif "$if" "$INTERFACE"
+ $DEBUG ifconfig "$INTERFACE" allmulti
else
do_ifup "$IFPROTO" "$IFTYPE" "$if"
fi