Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在同一台服务器上有多个 IP 地址,我想将端口 80 上的所有传出流量重定向到同一台服务器上的不同 IP,只是不使用始终主 IP。
目前我正在使用这个:
/sbin/iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to-source IP;
它运行良好,但它会重定向所有内容,当我通过 SSH 备份进行备份时,它失败了。
系统:CentOS 5.8 64位
这有效:
iptables -t nat -A POSTROUTING -p tcp --dport 80 -o eth0 -j SNAT --to-source IP