限制与 Docker 守护程序的连接 - ext_if 的值应该是多少

Restrict connections to the Docker daemon - What should be the value of ext_if

我倾向于使用主机 iptables

限制与 Docker 守护进程的连接

https://docs.docker.com/network/iptables/#restrict-connections-to-the-docker-daemon

给出的例子是

$ iptables -I DOCKER-USER -i ext_if ! -s 192.168.1.1 -j DROP

我想知道 ext_if 的值应该是多少,我怎样才能计算出 ext_if 的值?

这对我来说效果很好

iptables -I DOCKER-USER -i eth0 -p tcp --dport 5555 -j DROP

但是,我不确定获取 eth0 的正确步骤。这只是我的 try-n-error 方式。