In my homelab setup, I have 3 proxmox hosts each with 2x 10G connections. On each of these are a bridge (vmbr0 and vmbr1) and vlan_bridge (vmbr0.10 and vmbr1.50) that allow the host proxmox to have an IP and connection into the respective public and storage vlans.
Proxmox has it's IP set on the vlan_bridges and has no comms issues.
I currently have 2x VMs that I've migrated over to the Proxmox setup. In the VM configuration, one has a connection to vmbr0 and tagged vlan 10 and is properly pulling a dhcp from that network. The second vm is configured for vmbr0 with a blank vlan tag field because I want it to be on the native "non-tagged vlan". When I run tcpdump I can see that even though the VM is not configured to tag a VLAN and is on vmbr0 it's still showing traffic as if it's on the vlan 10.
Proxmox has it's IP set on the vlan_bridges and has no comms issues.
I currently have 2x VMs that I've migrated over to the Proxmox setup. In the VM configuration, one has a connection to vmbr0 and tagged vlan 10 and is properly pulling a dhcp from that network. The second vm is configured for vmbr0 with a blank vlan tag field because I want it to be on the native "non-tagged vlan". When I run tcpdump I can see that even though the VM is not configured to tag a VLAN and is on vmbr0 it's still showing traffic as if it's on the vlan 10.
Code:
auto lo
iface lo inet loopback
iface eno7 inet manual
iface eno5 inet manual
iface eno6 inet manual
iface eno8 inet manual
iface eno1 inet manual
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge-ports eno7
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr0.10
iface vmbr0.10 inet static
address 10.100.10.21/24
gateway 10.100.10.1
auto vmbr1
iface vmbr1 inet manual
bridge-ports eno8
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr1.50
iface vmbr1.50 inet static
address 10.100.50.21/24
Last edited: