
Debian/ubuntu system delete docker virtual bridge
After installing docker, sometimes the docker is uninstalled, and the virtual bridge is still there. At this time, the docker bridge needs to be manually uninstalled
ifconfig
to view the name of the network card created by docker, which usually starts with br and docker0
Install the brctl tool
1
2
3
4
5
6
7
Fedora/Centos system
$ yum install -y bridge-utils
Debian/Ubuntu system
$ apt-get install -y bridge-utils
stop docker service
systemctl stop docker
Stop the docker virtual network card
ifconfig br-69ec69521ef3 down && ifconfig docker0 down
Delete virtual network card
brctl delbr br-69ec69521ef3 && brctl delbr docker0
💘 相关文章
- debian/ubuntu系统删除docker虚拟网桥
- 在ubuntu和Debian系统单网卡绑定多个IP v6地址的方法
- debian,ubuntu赋予普通用户绑定端口权限的方法
- debian/Ubuntu simple firewall setupthing
- debian /ubuntu系统安装测速软件的方法
- debian安装docker和Docker面板Portainer并部署Wordpress
- how can do speed test network for debian /ubuntu?
- debian/Ubuntu系统超级简单的防火墙配置
- 一键安装docker的方法,只需两条命令
- ubuntu 使用snap安装包和软件的一些常用命令