将所有传入和传出流量从端口重定向到特定IP

时间:2018-06-18 13:41:43

标签: docker iptables

我在端口8080上的docker容器内运行节点服务器,我可以通过172.17.0.2:8080(容器ip)访问它,现在我想从localhost:9099访问此ip。< / p>

我尝试使用iptables将此localhost:9099的流量重定向到172.17.0.2:8080,但所有措施都是徒劳的。

这是我正在使用的命令。请纠正我出错的地方。提前谢谢。

sudo iptables -t nat -A PREROUTING -p tcp --dport 9099 -j DNAT --to-destination 172.17.0.2:8080

我从this ans那里得到了帮助,但没有成功。

0 个答案:

没有答案