iptables 将特定 IP 重定向到端口 8080

iptables 将特定 IP 重定向到端口 8080

我的电脑有两个 IP 地址。如何在 CentOS 中将端口上的传入请求转发808080我的一个 IP iptables

例如,我有 IP 地址1.1.1.12.2.2.2,我想将http://1.1.1.1端口转发80到端口8080,但1.1.1.1没有2.2.2.2

我该怎么做呢?

答案1

iptables -t nat -A PREROUTING -d 1.1.1.1 -p tcp --dport 80 -j DNAT --to-destination 1.1.1.1:8080

相关内容