我在 Amazon Linux 2 EC2 实例上有 OpenVPN,需要通过它转发数据包。在我开始docker
实例之前它一直有效。然后 FORWARD 策略变为 DROP 并且 VPN 停止工作。
[root@ip-... ~]# iptables -L FORWARD
Chain FORWARD (policy ACCEPT) <<< See it's ACCEPT
target prot opt source destination
然后我启动 docker 并再次检查:
[root@ip-... ~]# systemctl start docker
[root@ip-... ~]# iptables -L
Chain FORWARD (policy DROP) <<<< Turned to DROP
target prot opt source destination
DOCKER-USER all -- anywhere anywhere
DOCKER-ISOLATION-STAGE-1 all -- anywhere anywhere
ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
DOCKER all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
我试图设置策略,/etc/sysconfig/iptables
但这无济于事。
这似乎特定于 Amazon Linux 2,我在 Ubuntu 上似乎没有这个问题。
有任何想法吗?