X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=functions;h=959d762bdd78ea0a9e31ac0ee2ddf8a2c671c918;hb=6f4946607ac728f473033dcbabffaaa8b5f3a275;hp=e9111fe08e9c72e6640a7cca20dfe1e1f88b9449;hpb=c9ae07817991aa1a0453811459fb5011c407c40c;p=rrq%2Foverlay-boot.git diff --git a/functions b/functions index e9111fe..959d762 100644 --- a/functions +++ b/functions @@ -92,6 +92,9 @@ EOF # Setup the network namespace for the given $CABLES # $1=netns ( $2="br=mac" .. ) +# br is optional, mac is optional. +# If mac is .N then it's taken as vlan tag on prior outer interface +# (with ifup configuration) and the inner interface is left alone. setup_veth_cables() { local NETNS BR IF MAC C i ADD NETNS="$1" @@ -100,14 +103,23 @@ setup_veth_cables() { for C in "$@" ; do IF=$NETNS$i MAC="${C#*=}" - [ -z "$MAC" ] || MAC="address $MAC" - ip link add $IF type veth peer name eth$i $MAC netns $NETNS - ip link set $IF up + if [ -z "$MAC" ] ; then + # set up veth with "random" mac address + ip link add $IF type veth peer name eth$i netns $NETNS + elif [ -z "${MAC%%.*}" ] ; then + # set up a host vlan with specified tag on previous eth + i=$((i-1)) + IF=$NETNS$i$MAC + ifup $IF + else + # set up veth with specified mac address + ip link add $IF type veth peer name eth$i address $MAC netns $NETNS + fi BR="${C%=*}" if [ -z "$BR" ] ; then - ip link set $IF - ifup $IF + ifup $IF || ip link set $IF up else + ip link set $IF up brctl addif $BR $IF fi i=$((i+1)) @@ -156,12 +168,12 @@ setup_overlay() { grep ^SHARE= "$CONFIG" | while read A ; do B="$(echo ${A#SHARE=})" - D="$(realpath "$LOWER$B")" + D="$(realpath "$B")" [ "$D" = "$LOWER" ] && continue if [ -d "$D" ] ; then - echo bind mount $D onto $LIVE$D + echo bind mount $D onto $LIVE$B mkdir -p $LIVE$D - mount --bind $D $LIVE$D + mount --bind $D $LIVE$B fi done