gpt4 book ai didi

使用 SNAT 对特定目标 IP 进行 iptables 后路由

转载 作者:行者123 更新时间:2023-12-04 11:39:28 25 4
gpt4 key购买 nike

关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

7年前关闭。




Improve this question




我想在 iptables 中为 ubuntu 中的后路由定义一个规则,如下所示:

$IPTABLES -t nat -A POSTROUTING  -o $EXTIF -p tcp -d xxx.xx.xx.8 -j SNAT --to-source xxx.xx.xx.238

这意味着对于 IP 为 xxx.xx.xx.8(公共(public) IP)的目的地,我希望其源 IP 为 xxx.xx.xx.238。

上述规则不起作用。
有什么建议么。
谢谢你。

最佳答案

我自己得到了解决方案,如下所示:
我在子接口(interface) (eth0:0) 中添加了一个新 IP,以及我所需的 NATting IP。例如带有 eth0:0 的 xxx.xx.xx.238。
现在我在 IPTABLE 中添加了一个新规则

$IPTABLES  -t nat -A POSTROUTING  -o eth0.0 -p tcp -d xxx.xx.xx.8 -j SNAT --to-source xxx.xx.xx.238

.

访问IP为xxx.xx.xx.8的应用时,显示NATting IP为xxx.xx.xx.238。

关于使用 SNAT 对特定目标 IP 进行 iptables 后路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18052116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com