我希望客户端流量公开显示为源自该特定 IP(可能是分配给与主 IP 相同的网络接口的辅助 IP)。
iface eth0 inet static
address 167.99.179.140/24
gateway 167.99.179.1
iface eth0 inet static
address 167.99.179.141/24
答案1
弄清楚了!
我不得不用-A POSTROUTING -s 10.0.2.0/24 -o eth0 -j MASQUERADE
来-A POSTROUTING -s 10.0.2.0/24 -o eth0 -j SNAT --to-source 167.99.179.141
代替/etc/iptables/rules.v4
。