虚拟网卡docker0其实是一个网桥,如果想删除它,只需要按照删除网桥的方法即可。
ifconfig docker0 down
brctl delbr docker0
docker0
这个网桥是在启动Docker Daemon时创建的,因此,这种删除方法并不能根本上删除docker0
,下次daemon启动(假设没有指定-b参数)时,又会自动创建docker0
网桥。
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:删除docker0网卡