aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-01-31 11:36:01 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-01-31 11:36:01 +0000
commitb6119a90d5ac83cf46af744a14e63083803b4273 (patch)
tree0167a0eebece42a0e319b34eee0b4d2ebe728a70 /package
parent9a26b4651816439ad29b3df1caf69ac74f17530e (diff)
downloadupstream-b6119a90d5ac83cf46af744a14e63083803b4273.tar.gz
upstream-b6119a90d5ac83cf46af744a14e63083803b4273.tar.bz2
upstream-b6119a90d5ac83cf46af744a14e63083803b4273.zip
set ALLMULTI on bridged interfaces (should improve multicast bridging)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3079 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/base-files/default/etc/hotplug.d/net/10-net3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/default/etc/hotplug.d/net/10-net b/package/base-files/default/etc/hotplug.d/net/10-net
index 4579a84704..0f384ec46b 100644
--- a/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/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