IPtables 端口转发

IPtables 端口转发

设想:

在 linksys 路由器上使用 DDwrt。我想使用 IPtables 将特定公共 IP 地址端口转发到内部 IP 192.168.0.20 端口 80。不确定如何执行此操作,如能得到任何帮助,我将不胜感激。

答案1

就像是:

iptables -t nat -A PREROUTING -d <public-ip> -i <wan-interface> -j DNAT --to 192.168.0.20

应该可以工作。如果您只想转发公网 IP 上的 TCP 端口 80,您可以执行以下操作:

iptables -t nat -A PREROUTING -p tcp --dport 80 -d <public-ip> -i <wan-interface> -j DNAT --to 192.168.0.20:80

相关内容