diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-31 11:36:01 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-31 11:36:01 +0000 |
commit | bc766b82db24faaebbb4e872ca58ea8727fb6c0c (patch) | |
tree | 2cec235cd9ec660fe34435cf177b4ead72dbd106 /openwrt/package/base-files | |
parent | 33d39081fb309d6ffcbadaca8b694cf695038900 (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/package/base-files')
-rw-r--r-- | openwrt/package/base-files/default/etc/hotplug.d/net/10-net | 3 |
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 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 |