Linux:删除虚拟网卡

CentOS 7安装了docker,自动生成了docker0,还有开启了虚拟化会生成virbr0,影响系统里的服务使用,不直接走eth0,先去检测虚拟桥接网卡。

1、删除虚拟网卡需要两个工具 ifconfig 和 brctl,两个程序默认CentOS 7里没有,需要安装

yum install -y net-tools.x86_64         #ifconfig的安装包
yum install -y bridge-utils             #brctl 的安装包

2、先停止虚拟网卡

ifconfig docker0 down
ifconfig virbr0 down

3、删除虚拟网卡

brctl delbr docker0
brctl delbr virbr0

4、下次重启后再次启动docker还会生成虚拟网卡

5、禁用开机启动虚拟

systemctl disable libvirtd

Removed symlink /etc/systemd/system/multi-user.target.wants/libvirtd.service.
Removed symlink /etc/systemd/system/sockets.target.wants/virtlogd.socket.
Removed symlink /etc/systemd/system/sockets.target.wants/virtlockd.socket.

Was this article helpful?

Related Articles