=== modified file 'network-hooks.d/bridge' --- network-hooks.d/bridge 2011-11-28 22:58:16 +0000 +++ network-hooks.d/bridge 2011-11-28 23:40:46 +0000 @@ -41,8 +41,10 @@ "$brctl" addbr "$BRIDGE" for port in $PORTS; do "$brctl" addif "$BRIDGE" "$port" + ip link set up "$port" done ip link set up "$BRIDGE" + sleep "$DELAY" if [ -n "$IPADDRS" ]; then for ipaddr in $IPADDRS; do ip addr add "$ipaddr" dev "$BRIDGE" @@ -57,6 +59,7 @@ stop) ip link set down "$BRIDGE" for port in $PORTS; do + ip link set down "$port" "$brctl" delif "$BRIDGE" "$port" done "$brctl" delbr "$BRIDGE"