【Centos7】Delete virtual bridge

来源:互联网 发布:国税局知乎 编辑:程序博客网 时间:2024/06/17 01:54
Previously,Stop service which controls virtual bridges.

sudo systemctl stop libvirtd.service #Systemd OS

Then,take down the bridge.

sudo ifconfig virbr0 down #centos6 centos7sudo ip link set dev virbr0 down #centos7

Finally,remove this bridge.

sudo brctl delbr virbr0

Additionally. If libvirtd.service is restarted. the bridge will created automatically. So you better disable this service.

sudo systemctl disable libvirtd.service

 

原创粉丝点击