例如 :
运行docker容器时,没有映射50600端口,想在不影响运行的情况下,添加该端口映射:
iptables -t nat -A DOCKER -p tcp --dport 50600 -j DNAT --to 172.17.0.2:50600
iptables -t nat -A POSTROUTING -p udp -s 172.17.0.2 -d 172.17.0.2 --dport 50600 -j MASQUERADE
iptables -A DOCKER -p udp --dport 50600 -d 172.17.0.2 -j ACCEPT
172.17.0.2是docker容器的IP地址。