I have 3 Ethernet ports on the PVE host I'm running: Two of the ports are used for bonding & one to allow connectivity to the pve host itself. I would like to use this 3rd port for other things (and not dedicated this 3rd port for pve host access)
Here's a snip of Interfaces:
If I make the following changes, I am not longer able to access the pve host:
# DOESN'T WORK:
Any ideas why changing the bridge ports to bond0.10 doesn't work. By the way, passing vmbr1 to a VM allows for VLAN connectivity..
Thanks!
Here's a snip of Interfaces:
Code:
iface bond0 inet manual
bond-slaves enp1s0 enp2s0
bond-miimon 100
bond-mode balance-rr
iface vmbr1 inet manual # //This bridge allows access to VLANs in the VM.
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
iface vmbr0 inet static
address 192.168.10.2
netmask 24
gateway 192.168.10.1
bridge-ports enp3s0 # //Don't want to use dedicated port enp3s0 for accessing host
bridge-stp off
bridge-fd 0
If I make the following changes, I am not longer able to access the pve host:
# DOESN'T WORK:
Code:
iface vmbr0 inet static
address 192.168.10.2
netmask 24
gateway 192.168.10.1
bridge-ports bond0.10
bridge-stp off
bridge-fd 0
Any ideas why changing the bridge ports to bond0.10 doesn't work. By the way, passing vmbr1 to a VM allows for VLAN connectivity..
Thanks!
Last edited by a moderator: