diff -ur rc-scripts-0.4.12.orig/lib/ifup-br rc-scripts-0.4.12.fix/lib/ifup-br --- rc-scripts-0.4.12.orig/lib/ifup-br 2014-06-10 06:55:19.000000000 +0000 +++ rc-scripts-0.4.12.fix/lib/ifup-br 2014-07-18 15:33:28.455000000 +0000 @@ -65,20 +65,19 @@ # standard -[ -n "$AGEING" ] && brctl setageing "$AGEING" -[ -n "$GCINT" ] && brctl setgcint "$GCINT" +[ -n "$AGEING" ] && brctl setageing ${DEVICE} "$AGEING" [ -n "$FD" ] && brctl setfd ${DEVICE} "$FD" # spanning tree protocol if is_yes "$SPANNING_TREE"; then - brctl stp ${DEVICE} yes + brctl stp ${DEVICE} on [ -n "$BRIDGEPRIO" ] && brctl setbridgeprio ${DEVICE} "$BRIDGEPRIO" [ -n "$HELLO" ] && brctl sethello ${DEVICE} "$HELLO" [ -n "$MAXAGE" ] && brctl setmaxage ${DEVICE} "$MAXAGE" [ -n "$PATHCOST" -a -n "$PATHCOST_PORT" ] && brctl setpathcost ${DEVICE} "$PATHCOST_PORT" "$PATHCOST" [ -n "$PORTPRIO" -a -n "$PORTPRIO_PORT" ] && brctl setportprio ${DEVICE} "$PORTPRIO_PORT" "$PORTPRIO" else - brctl stp ${DEVICE} no + brctl stp ${DEVICE} off fi ip link set dev ${DEVICE} multicast ${MULTICAST} ${ARP}