Hello everyone,
I’m setting up a Proxmox node with two networks:
• 10.10.64.0/24 - Management (host access, WebUI, SSH, etc.)
• 10.10.106.0/24 - For cluster traffic and for VMs
My physical NIC is eno12399np0, connected to a switch port configured as a trunk with VLAN 1 (untagged, management) and VLAN 1006 (tagged).
This is my current /etc/network/interfaces configuration:
• The management works fine on 10.10.64.62:8006.
• As soon as I add the vmbr0.1006 interface, I lose connectivity to the WebUI / SSH...
• I only want the host management to stay at 10.10.64.62, while using 10.10.106.152 only for the cluster network and to allow VMs to run on VLAN 1006.
What I tried:
• Setting bridge-vlan-aware yes with bridge-vids 1 1006.
• Using vmbr0.1006 with vlan-id 1006 and vlan-raw-device vmbr0.
• Verified with bridge vlan show that VLAN 1006 was not present until I added it manually.
• Switch port is trunk, VLAN 1 native, VLAN 1006 tagged.
Any advice or working configuration examples would be very much appreciated.
Thanks in advance!
I’m setting up a Proxmox node with two networks:
• 10.10.64.0/24 - Management (host access, WebUI, SSH, etc.)
• 10.10.106.0/24 - For cluster traffic and for VMs
My physical NIC is eno12399np0, connected to a switch port configured as a trunk with VLAN 1 (untagged, management) and VLAN 1006 (tagged).
This is my current /etc/network/interfaces configuration:
Code:
auto lo
iface lo inet loopback
iface eno12399np0 inet manual
iface eno8303 inet manual
iface eno8403 inet manual
iface ens1f1np1 inet manual
iface eno12409np1 inet manual
iface ens1f0np0 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.10.64.62/24
gateway 10.10.64.13
bridge-ports eno12399np0
bridge-stp off
bridge-fd 0
auto vmbr0.1006
iface vmbr0.1006 inet static
address 10.10.106.152/24
source /etc/network/interfaces.d/*
root@pvemad1:~#
• The management works fine on 10.10.64.62:8006.
• As soon as I add the vmbr0.1006 interface, I lose connectivity to the WebUI / SSH...
• I only want the host management to stay at 10.10.64.62, while using 10.10.106.152 only for the cluster network and to allow VMs to run on VLAN 1006.
What I tried:
• Setting bridge-vlan-aware yes with bridge-vids 1 1006.
• Using vmbr0.1006 with vlan-id 1006 and vlan-raw-device vmbr0.
• Verified with bridge vlan show that VLAN 1006 was not present until I added it manually.
• Switch port is trunk, VLAN 1 native, VLAN 1006 tagged.
Any advice or working configuration examples would be very much appreciated.
Thanks in advance!