From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 1/2] udev: Accept MAC addresses for PARENT_DEV Date: Wed, 08 May 2019 12:11:07 +0100 Message-ID: <1557313868-10327-1-git-send-email-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8135586156790748630==" List-Id: --===============8135586156790748630== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Florian B=C3=BChrle This allows us to create VLAN interfaces even when the name of the parent interface might vary. This patch also appends the VLAN tag to interfaces when the zone is in bridge mode. Signed-off-by: Michael Tremer --- config/udev/network-hotplug-vlan | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/config/udev/network-hotplug-vlan b/config/udev/network-hotplug-v= lan index f7b6a9d..178e1a6 100644 --- a/config/udev/network-hotplug-vlan +++ b/config/udev/network-hotplug-vlan @@ -23,40 +23,51 @@ =20 [ -n "${INTERFACE}" ] || exit 2 =20 -CONFIG_FILE=3D"/var/ipfire/ethernet/vlans" +VLAN_CONFIG_FILE=3D"/var/ipfire/ethernet/vlans" +MAIN_CONFIG_FILE=3D"/var/ipfire/ethernet/settings" =20 -# Skip immediately if no configuration file has been found. -[ -e "${CONFIG_FILE}" ] || exit 0 +# Skip immediately if a configuration file is missing. +[ -e "${VLAN_CONFIG_FILE}" ] && [ -e "${MAIN_CONFIG_FILE}" ] || exit 0 =20 -eval $(/usr/local/bin/readhash ${CONFIG_FILE}) +eval $(/usr/local/bin/readhash ${VLAN_CONFIG_FILE}) +eval $(/usr/local/bin/readhash ${MAIN_CONFIG_FILE}) =20 for interface in green0 red0 blue0 orange0; do case "${interface}" in green*) + ZONE_MODE=3D${GREEN_MODE} PARENT_DEV=3D${GREEN_PARENT_DEV} VLAN_ID=3D${GREEN_VLAN_ID} MAC_ADDRESS=3D${GREEN_MAC_ADDRESS} ;; red*) + ZONE_MODE=3D${RED_MODE} PARENT_DEV=3D${RED_PARENT_DEV} VLAN_ID=3D${RED_VLAN_ID} MAC_ADDRESS=3D${RED_MAC_ADDRESS} ;; blue*) + ZONE_MODE=3D${BLUE_MODE} PARENT_DEV=3D${BLUE_PARENT_DEV} VLAN_ID=3D${BLUE_VLAN_ID} MAC_ADDRESS=3D${BLUE_MAC_ADDRESS} ;; orange*) + ZONE_MODE=3D${ORANGE_MODE} PARENT_DEV=3D${ORANGE_PARENT_DEV} VLAN_ID=3D${ORANGE_VLAN_ID} MAC_ADDRESS=3D${ORANGE_MAC_ADDRESS} ;; esac =20 - # If the parent device does not match the interface that + # If the parent device (MAC or name) does not match the interface that # has just come up, we will go on for the next one. - [ "${PARENT_DEV}" =3D "${INTERFACE}" ] || continue + [ "${PARENT_DEV}" =3D "${INTERFACE}" ] || [ "${PARENT_DEV}" =3D "$(