From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel =?utf-8?q?Weism=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH] Core 152: the script "network-hotplug-bridges" now reads the variable ${ZONE}_STP_PRIORITY from /var/ipfire/ethernet/settings so that the priority can be adjusted Signed-off-by: Daniel =?utf-8?q?Weism=C3=BCller?= Date: Fri, 20 Nov 2020 18:35:52 +0100 Message-ID: <20201120173551.4722-1-daniel.weismueller@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8887067013448811931==" List-Id: --===============8887067013448811931== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable --- config/udev/network-hotplug-bridges | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config/udev/network-hotplug-bridges b/config/udev/network-hotplu= g-bridges index 7431377bb..77330b114 100644 --- a/config/udev/network-hotplug-bridges +++ b/config/udev/network-hotplug-bridges @@ -82,16 +82,22 @@ MODE=3D"$(get_value "${ZONE}_MODE")" # The name of the virtual bridge BRIDGE=3D"$(get_value "${ZONE}_DEV")" STP=3D"$(get_value "${ZONE}_STP")" +STP_PRIORITY=3D"$(get_value "${ZONE}_STP_PRIORITY")" =20 case "${MODE}" in bridge) + # We need to check if $STP_PRIORITY has a valid value if not set it + if [ -n "${STP_PRIORITY}" ]; then =20 + STP_PRIORITY=3D16384; + fi + ADDRESS=3D"$(get_value "${ZONE}_MACADDR")" [ -n "${ADDRESS}" ] || ADDRESS=3D"$(random_mac_address)" =20 # We need to create the bridge if it doesn't exist, yet if [ ! -d "/sys/class/net/${BRIDGE}" ]; then ip link add "${BRIDGE}" address "${ADDRESS}" type bridge \ - $([ "${STP}" =3D "on" ] && echo "stp_state 1") + $([ "${STP}" =3D "on" ] && echo "stp_state 1 priority ${STP_PRIORITY}" = )=20 #ip link set "${BRIDGE}" up fi =20 --=20 2.28.0 --===============8887067013448811931==--