我的计算机有两个连接:ppp0(连接到互联网)和 eth0(作为伪装)。我还在端口 8080 上运行代理。我将这台计算机用作路由器。是否有快速的 iptables 黑客可以将端口 80 重定向到端口 8080(我的本地代理)?
答案1
来自本地机器或所连接的内部网络的流量?
对于本地:iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination 127.0.0.1:8080
对于网络:iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 127.0.0.1:8080