Hi,
In my proxmox network configuration, I have 4 LACP bonded interface as follows.
All of those connected to juniper switch and carry multiple vlans. I need some of that VLAN on my pve host as well as guest VMs. So I added below configuration
At the initial stage, this configuration just works. But when I try to assign vmbr0 (management bridge) to vm and start the VM I lose the connectivity to Proxmox webGUI.
Is this the proper way to share bond between host and guest VMs? Or do I need to create VLAN bridge instead of VLAN bond for the host ?. None of my bridges a re VLAN aware
In my proxmox network configuration, I have 4 LACP bonded interface as follows.
Code:
bond0 -> for management
bond1 -> for cluster network
bond2 -> storage
bond3 -> external
All of those connected to juniper switch and carry multiple vlans. I need some of that VLAN on my pve host as well as guest VMs. So I added below configuration
Code:
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode 802.3ad
#pve-mgmt-bond
auto bond0.100
iface bond0.100 inet static
address 192.168.100.10
netmask 24
#pve-mgmt-vlan
auto bond1
iface bond1 inet manual
bond-slaves eno3 eno4
bond-miimon 100
bond-mode 802.3ad
#pve-cluster-bond
auto bond1.200
iface bond1.200 inet static
address 192.168.200.10
netmask 24
#pve-cluster-vlan
auto bond2
iface bond2 inet manual
bond-slaves eno49 ens1f0
bond-miimon 100
bond-mode 802.3ad
#pve-storage-bond
auto bond2.120
iface bond2.120 inet static
address 192.168.120.10
netmask 24
#pve-storage-120
auto bond3
iface bond3 inet manual
bond-slaves ens1f1 ens2f0
bond-miimon 100
bond-mode 802.3ad
#pve-external-bond
auto bond3.130
iface bond3.130 inet static
address 192.168.130.10
netmask 24
#pve-external-vlan-130
auto vmbr0
iface vmbr0 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
#bridge-pve-mgmt
auto vmbr1
iface vmbr1 inet manual
bridge-ports bond3
bridge-stp off
bridge-fd 0
#bridge-pve-external
At the initial stage, this configuration just works. But when I try to assign vmbr0 (management bridge) to vm and start the VM I lose the connectivity to Proxmox webGUI.
Is this the proper way to share bond between host and guest VMs? Or do I need to create VLAN bridge instead of VLAN bond for the host ?. None of my bridges a re VLAN aware