使用OpenVPN时源应该是什么?

使用OpenVPN时源应该是什么?

我正在尝试在我的 Ubuntu 10 VPS 上使用 OpenVPN。

我正在尝试使用此命令来路由我的流量:

iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -j SNAT -to

我收到的错误是:

iptables v1.4.4: You must specify --to-source

来源应该是什么?

答案1

你必须指定流量去往何处

sudo iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -j SNAT --to-source aa.bb.cc.dd

其中“aa.bb.cc.dd”是您希望流量去往的地方。

也可以看看

https://help.ubuntu.com/community/OpenVPN

https://help.ubuntu.com/community/IptablesHowTo

相关内容