I have simple setup with two physical NIC interfaces.
I have VLAN interface for management and I would like to tag VM inside proxmox with the same VLAN.
With this setting when I'm adding NIC to VM on vmbr0 with tag 52 - this VM doesn't have network.
What I'm doing wrong here?
I have VLAN interface for management and I would like to tag VM inside proxmox with the same VLAN.
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto eno2
iface eno2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode balance-alb
auto vmbr0
iface vmbr0 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vlan52
iface vlan52 inet static
address 192.168.52.11/25
gateway 192.168.52.1
vlan-raw-device bond0
With this setting when I'm adding NIC to VM on vmbr0 with tag 52 - this VM doesn't have network.
What I'm doing wrong here?