Hi
When restarting a bridge via ifdown and ifup, the VM's on it don't come back online. Because ifup doesn't know which links were active on the bridge, I guess?
What is the best method to make changes to a bridge and don't impact the running guests?
Here is my current network config - a part of. Any tips on this?
Thanks
When restarting a bridge via ifdown and ifup, the VM's on it don't come back online. Because ifup doesn't know which links were active on the bridge, I guess?
What is the best method to make changes to a bridge and don't impact the running guests?
Here is my current network config - a part of. Any tips on this?
Code:
iface enp179s0f0 inet manual
bond-master bond0
bond-primary enp179s0f0
#Member interface bond0
iface enp179s0f1 inet manual
bond-master bond0
bond-primary enp179s0f0
#Member interface bond0
auto bond0
iface bond0 inet manual
bond-mode active-backup
bond-slaves enp179s0f0 enp179s0f1
bond-miimon 100
#TRUNK uplink bonding
auto vmbr1
iface vmbr1 inet manual
bridge_ports bond0.100
bridge_stp off
bridge_fd 0
Thanks