Hi all,
I need help on figuring out how to correctly configure my host network configuration.
Intro:
my server has 4 GE interface and I am trying to bond them together, make them vlan aware and have management interface on a separate vlan than VMs.
The kind of bonding that I would like to be able to do is first 2 interfaces together with 802.3ad, third and forth together with the same mode, this resulting as bond1 and bond2 and then after that, last bonding using active/backup(bond0) between bond1(active) and bond2.
Now, I was able to create all bonding stuff but I have few problems on understanding how to make the bridge VLAN aware and still have connectivity on management interface. I was just playing with different options so probably last part is wrong or has something that locks me out from host.
What I have done:
Anyone that can point my in the correct direction or have some docs that I can read?
Thanks for your time
I need help on figuring out how to correctly configure my host network configuration.
Intro:
my server has 4 GE interface and I am trying to bond them together, make them vlan aware and have management interface on a separate vlan than VMs.
The kind of bonding that I would like to be able to do is first 2 interfaces together with 802.3ad, third and forth together with the same mode, this resulting as bond1 and bond2 and then after that, last bonding using active/backup(bond0) between bond1(active) and bond2.
Now, I was able to create all bonding stuff but I have few problems on understanding how to make the bridge VLAN aware and still have connectivity on management interface. I was just playing with different options so probably last part is wrong or has something that locks me out from host.
What I have done:
Code:
auto bond2
iface bond2 inet manual
bond-slaves eno3 eno4
bond-miimon 100
bond-mode 802.3ad
auto bond1
iface bond1 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode 802.3ad
auto bond0
iface bondo inet manual
bond-slaves bond1 bond2
bond-miimon 100
bond-mode active-backup
bond-primary bond1
iface bond0.5 inet manual
auto vmbr0.5
iface vmbr0.5 inet static
address 10.10.10.45/25
gateway 10.10.10.2
bride-ports bond0.5
bridge-stp off
bridge-fdo
vlan-raw-device vmbr0
auto vmbr0
iface vmbr0 inet static
bridge-ports bond0
bridge-stp off
bridge-fdo
bridge-vlan-aware yes
bridge-vids 2-4094
Anyone that can point my in the correct direction or have some docs that I can read?
Thanks for your time
Last edited: