如何识别孤立的 veth 接口以及如何删除它们?

How to identify orphaned veth interfaces and how to delete them?

当我通过 docker run 启动任何容器时,我们会得到一个新的 veth interface。删除容器后,应删除与容器链接的 veth 接口。然而,有时它会失败(通常容器启动时出错):

root@hostname /home # ifconfig | grep veth | wc -l
53
root@hostname /home # docker run -d -P  axibase/atsd -name axibase-atsd-
28381035d1ae2800dea51474c4dee9525f56c2347b1583f56131d8a23451a84e
Error response from daemon: Cannot start container 28381035d1ae2800dea51474c4dee9525f56c2347b1583f56131d8a23451a84e: iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 33359 -j DNAT --to-destination 172.17.2.136:8883 ! -i docker0: iptables: No chain/target/match by that name.
 (exit status 1)
root@hostname /home # ifconfig | grep veth | wc -l
55
root@hostname /home # docker rm -f 2838
2838
root@hostname /home # ifconfig | grep veth | wc -l
55

如何识别哪些接口与现有容器链接,以及如何删除与已删除容器链接的额外接口?

这种方式行不通(root):

ifconfig veth55d245e down
brctl delbr veth55d245e
can't delete bridge veth55d245e: Operation not permitted

额外的接口现在由传输的流量定义(如果没有 activity,它是额外的接口)。

更新

root@hostname ~ # uname -a
Linux hostname 3.13.0-53-generic #89-Ubuntu SMP Wed May 20 10:34:39 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

root@hostname ~ # docker info
Containers: 10
Images: 273
Storage Driver: aufs
 Root Dir: /var/lib/docker/aufs
 Backing Filesystem: extfs
 Dirs: 502
 Dirperm1 Supported: false
Execution Driver: native-0.2
Logging Driver: json-file
Kernel Version: 3.13.0-53-generic
Operating System: Ubuntu 14.04.2 LTS
CPUs: 8
Total Memory: 47.16 GiB
Name: hostname
ID: 3SQM:44OG:77HJ:GBAU:2OWZ:C5CN:UWDV:JHRZ:LM7L:FJUN:AGUQ:HFAL
WARNING: No swap limit support

root@hostname ~ # docker version
Client version: 1.7.1
Client API version: 1.19
Go version (client): go1.4.2
Git commit (client): 786b29d
OS/Arch (client): linux/amd64
Server version: 1.7.1
Server API version: 1.19
Go version (server): go1.4.2
Git commit (server): 786b29d
OS/Arch (server): linux/amd64

这里存在三个问题:

  1. 启动单个容器不应将系统上 veth 接口的数量增加 2,因为当 Docker 创建一对 veth 时,一端这对在容器名称空间中是隔离的,并且对主机不可见。

  2. 您似乎无法启动容器:

    Error response from daemon: Cannot start container ...
    
  3. Docker 应该会自动清理 veth 接口。

这些事实让我怀疑您的环境存在根本性错误。您能否使用有关您正在使用的发行版、内核版本和 Docker 版本的详细信息来更新您的问题?

How I can identify which interfaces are linked with existing containers, and how I can remove extra interface which was linked with removed contrainers?

关于手动删除veth接口:veth接口不是网桥,所以当然不能删除brctl

删除veth接口:

# ip link delete <ifname>

检测 "idle" 接口是一个更棘手的问题,因为如果您只查看流量,您很可能会不小心删除仍在使用但看不到的东西 activity .

我认为您真正想要查找的是 veth 接口,其对等方 在全局网络命名空间中可见。您可以使用 these instructions 找到 veth 接口的对等点,然后查看该接口是否可见然后删除一个或另一个(删除 veth 接口也将删除其对等方)。

已通过 docker 升级到最新版本修复。 新版本:

root@hostname ~ # docker version
Client:
 Version:      1.8.1
 API version:  1.20
 Go version:   go1.4.2
 Git commit:   d12ea79
 Built:        Thu Aug 13 02:35:49 UTC 2015
 OS/Arch:      linux/amd64

Server:
 Version:      1.8.1
 API version:  1.20
 Go version:   go1.4.2
 Git commit:   d12ea79
 Built:        Thu Aug 13 02:35:49 UTC 2015
 OS/Arch:      linux/amd64

现在接口与容器一起移除。已通过以下命令手动删除旧的孤立接口:

# ip link delete <ifname>

这是按模式将它们全部删除的方法。

for name in $(ifconfig -a | sed 's/[ \t].*//;/^\(lo\|\)$/d' | grep veth)
do
    echo $name
    # ip link delete $name # uncomment this
done

在我的例子中,所有虚拟以太网网络接口都是由 Docker 创建的。为了解决这个问题,我停止了所有 Docker 服务:

docker stop $(docker ps -q)

并删除了 Docker 创建的所有网络:

docker network rm $(docker network ls -q)