MY setup is :
Pfsense --> unifi switch --> proxmox
Unifi is configured as a trunk port, all VLANs are configured in pfsense
Each VM has multiple NICs, each NIC tagged with a different VLAN in the proxmox NIC settings.
I am having trouble getting 2 VMs tagged with the same VLAN to talk directly across vmbr0, rather than routing via pfsense and back,
I am unable to get vmbr0 to show anything other than tag 1
my network is setup as simply as can be
I have also tried creating a dedicated linux bridge per VLAN but that also has the same issue.
Any suggestions?
Pfsense --> unifi switch --> proxmox
Unifi is configured as a trunk port, all VLANs are configured in pfsense
Each VM has multiple NICs, each NIC tagged with a different VLAN in the proxmox NIC settings.
I am having trouble getting 2 VMs tagged with the same VLAN to talk directly across vmbr0, rather than routing via pfsense and back,
I am unable to get vmbr0 to show anything other than tag 1
Code:
bridge vlan show | grep vmbr0
vmbr0 1 PVID Egress Untagged
my network is setup as simply as can be
Code:
auto lo
iface lo inet loopback
iface enp87s0 inet manual
iface enp89s0 inet manual
iface enp2s0f0np0 inet manual
iface enp2s0f1np1 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.100.0.126/24
gateway 10.100.0.1
bridge-ports enp87s0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-100
iface wlp90s0 inet manual
source /etc/network/interfaces.d/*
I have also tried creating a dedicated linux bridge per VLAN but that also has the same issue.
Any suggestions?