set ALLMULTI on bridged interfaces (should improve multicast bridging)
[openwrt.git] / openwrt / package / base-files / default / etc / hotplug.d / net / 10-net
index dd4ee88..0f384ec 100644 (file)
@@ -75,12 +75,7 @@ do_ifup() {
                        DHCP_HOSTNAME=${DHCP_HOSTNAME%%.*}
                        [ -z $DHCP_HOSTNAME ] || DHCP_ARGS="$DHCP_ARGS -H $DHCP_HOSTNAME"
                        [ "$if_proto" = "pptp" ] && DHCP_ARGS="$DHCP_ARGS -n -q" || DHCP_ARGS="$DHCP_ARGS -R &"
-                       oldpid=$(cat $pidfile)
                        ${DEBUG:-eval} "udhcpc $DHCP_ARGS"
-                       pidof udhcpc | grep "$oldpid" >&- 2>&- && {
-                               sleep 1
-                               kill -9 $oldpid
-                       }
                        # hotplug events are handled by /usr/share/udhcpc/default.script
                ;;
                *)
@@ -144,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
This page took 0.025567 seconds and 4 git commands to generate.