如何将 strongSwan 绑定到具有多个 IP 的 VPS 上的特定 IP?

如何将 strongSwan 绑定到具有多个 IP 的 VPS 上的特定 IP?

我希望客户端流量公开显示为源自该特定 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

相关内容