From 3c31bc91e4e97632ec8a9bce2ead55ed90c2fd59 Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 30 Jan 2024 04:46:44 +0100 Subject: [PATCH] feat: Generate unique MAC address (#611) --- src/display.sh | 4 +++- src/network.sh | 28 +++++++++++++++++----------- src/reset.sh | 1 + src/serial.sh | 15 +++++++++++++++ 4 files changed, 36 insertions(+), 12 deletions(-) diff --git a/src/display.sh b/src/display.sh index 65af198..be5fb9c 100644 --- a/src/display.sh +++ b/src/display.sh @@ -15,7 +15,9 @@ if [[ "$GPU" != [Yy1]* ]] || [[ "$ARCH" != "amd64" ]]; then fi -DISPLAY_OPTS="-display egl-headless,rendernode=/dev/dri/renderD128 -vga $VGA" +[[ "${VGA,,}" == "virtio" ]] && VGA="virtio-vga" +DISPLAY_OPTS="-display egl-headless,rendernode=/dev/dri/renderD128" +DISPLAY_OPTS="$DISPLAY_OPTS -vga none -device $VGA" [ ! -d /dev/dri ] && mkdir -m 755 /dev/dri diff --git a/src/network.sh b/src/network.sh index f6b5d01..c9ce3f9 100644 --- a/src/network.sh +++ b/src/network.sh @@ -3,8 +3,8 @@ set -Eeuo pipefail # Docker environment variables +: "${MAC:=""}" : "${DHCP:="N"}" -: "${MAC:="02:11:32:AA:BB:CC"}" : "${VM_NET_DEV:=""}" : "${VM_NET_TAP:="dsm"}" @@ -33,7 +33,7 @@ configureDHCP() { fi while ! ip link set "$VM_NET_TAP" up; do - info "Waiting for address to become available..." + info "Waiting for MAC address $VM_NET_MAC to become available..." sleep 2 done @@ -128,7 +128,7 @@ configureNAT() { ip address add ${VM_NET_IP%.*}.1/24 broadcast ${VM_NET_IP%.*}.255 dev dockerbridge while ! ip link set dockerbridge up; do - info "Waiting for address to become available..." + info "Waiting for IP address to become available..." sleep 2 done @@ -136,7 +136,7 @@ configureNAT() { ip tuntap add dev "$VM_NET_TAP" mode tap while ! ip link set "$VM_NET_TAP" up promisc on; do - info "Waiting for tap to become available..." + info "Waiting for TAP to become available..." sleep 2 done @@ -211,14 +211,20 @@ getInfo() { error "$ADD_ERR -e \"VM_NET_DEV=NAME\" to specify another interface name." && exit 27 fi - VM_NET_MAC="${VM_NET_MAC//-/:}" + if [ -z "$VM_NET_MAC" ]; then + # Generate MAC address based on Docker container ID in hostname + VM_NET_MAC=$(echo "$HOST" | md5sum | sed 's/^\(..\)\(..\)\(..\)\(..\)\(..\).*$/02:11:32:\3:\4:\5/') + fi + + VM_NET_MAC="${VM_NET_MAC,,//-/:}" + if [[ ${#VM_NET_MAC} == 12 ]]; then m="$VM_NET_MAC" VM_NET_MAC="${m:0:2}:${m:2:2}:${m:4:2}:${m:6:2}:${m:8:2}:${m:10:2}" fi if [[ ${#VM_NET_MAC} != 17 ]]; then - error "Invalid mac address: '$VM_NET_MAC', should be 12 or 17 digits long!" && exit 28 + error "Invalid MAC address: '$VM_NET_MAC', should be 12 or 17 digits long!" && exit 28 fi GATEWAY=$(ip r | grep default | awk '{print $3}') @@ -242,15 +248,15 @@ getInfo html "Initializing network..." if [[ "$DEBUG" == [Yy1]* ]]; then - info "Container IP is $IP with gateway $GATEWAY on interface $VM_NET_DEV" && echo + info "Host: $HOST IP: $IP Gateway: $GATEWAY Interface: $VM_NET_DEV MAC: $VM_NET_MAC" + [ -f /etc/resolv.conf ] && cat /etc/resolv.conf + echo fi if [[ "$DHCP" == [Yy1]* ]]; then - if [[ "$GATEWAY" == "172."* ]]; then - if [[ "$DEBUG" != [Yy1]* ]]; then - error "You can only enable DHCP while the container is on a macvlan network!" && exit 26 - fi + if [[ "$GATEWAY" == "172."* ]] && [[ "$DEBUG" != [Yy1]* ]]; then + error "You can only enable DHCP while the container is on a macvlan network!" && exit 26 fi # Configuration for DHCP IP diff --git a/src/reset.sh b/src/reset.sh index 050f0b8..2d0483f 100644 --- a/src/reset.sh +++ b/src/reset.sh @@ -35,6 +35,7 @@ TEMPLATE="/var/www/index.html" FOOTER1="$APP for Docker v$(