From: Felix Fietkau Date: Tue, 31 Jan 2006 11:36:01 +0000 (+0000) Subject: set ALLMULTI on bridged interfaces (should improve multicast bridging) X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=0d3a3473621403991c1cdbebe98d2060712bc157;p=openwrt%2Fstaging%2Fansuel.git set ALLMULTI on bridged interfaces (should improve multicast bridging) SVN-Revision: 3079 --- 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 4579a84704..0f384ec46b 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