I have misconfiged a bridge(br2) in AHV(aos 5.15.4 bundle) enviroment and configured the bond br2-up with 2 physical NICs. I need to delete the birdge by the command:
manage_ovs --bridge_name br2 delete_single_bridge
but it is failed and the error is there is network card is in this bridge like ethX is used by this bridge. but I can not find how to remove the uplink NICs by the command
mange_ovs --bridge_name br2 --bond_name br2-up --interface ****(how to fill) update_uplinks
So I delete the bridge by ssh to AHV and use command ovs-vsctl del-br br2 and recreate a new bridge by manage_ovs.
So my concerns are the following:
- if I want to remove the uplink NICs by manage_ovs, how to fill the --interface options?
- if I delete the bridge by ovs-vsctl, does it have any other risks for my enviroment?