Just came over from UnRaid and I am having issues with my bridges.
I have two VLANs off of my swtich. One is a LAN and one is a DMZ.
The LAN is connected to eno3 (bridge is vmbr0) and the DMZ (bridge is vmbr1) is connected to eno4. I want the Proxmox server to be on the LAN and it's using vmbr0, no problems.
However the VMs I am creating and assigning to vmbr1 have no connection. They are fine if I swap them to vmbr0.
What am I doing wrong?
Here is my /etc/network/interfaces
I have two VLANs off of my swtich. One is a LAN and one is a DMZ.
The LAN is connected to eno3 (bridge is vmbr0) and the DMZ (bridge is vmbr1) is connected to eno4. I want the Proxmox server to be on the LAN and it's using vmbr0, no problems.
However the VMs I am creating and assigning to vmbr1 have no connection. They are fine if I swap them to vmbr0.
What am I doing wrong?
Here is my /etc/network/interfaces
Code:
auto lo
iface lo inet loopback
iface eno3 inet manual
#10G LAN
iface idrac inet manual
iface eno1 inet manual
iface eno2 inet manual
iface eno4 inet manual
#10G DMZ
auto vmbr0
iface vmbr0 inet static
address 10.51.1.10/24
gateway 10.51.1.1
bridge-ports eno3
bridge-stp off
bridge-fd 0
#LAN
auto vmbr1
iface vmbr1 inet manual
bridge-ports eno4
bridge-stp off
bridge-fd 0
#DMZ