From 4643aabe28e4e73922a9c08abfa96c1ee387c7ae Mon Sep 17 00:00:00 2001 From: John Fleischauer <103971509+ki4hrg@users.noreply.github.com> Date: Fri, 27 Mar 2026 13:17:36 -0500 Subject: [PATCH] Update network configuration to include VLAN tag --- scripts/install-proxmox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-proxmox.sh b/scripts/install-proxmox.sh index 6c93855..ce16fa8 100755 --- a/scripts/install-proxmox.sh +++ b/scripts/install-proxmox.sh @@ -85,7 +85,7 @@ pct create "$CTID" "$TEMPLATE" \ --rootfs "${STORAGE}:${DISK_SIZE}" \ --memory "$RAM" \ --cores "$CORES" \ - --net0 "name=eth0,bridge=${BRIDGE},ip=dhcp" \ + --net0 "name=eth0,bridge=${BRIDGE},ip=dhcp${VLAN_TAG:+,tag=${VLAN_TAG}}" \ --ostype debian \ --unprivileged 1 \ --features "nesting=1" \