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 地址上的 Linux NAT-ing 的问题。
假设我有一个网络接口,比如 eth0。它的 IP 地址为 127.0.0.2。现在我在 Linux 中应用一个 NAT 规则说:
任何源 IP 为 127.0.0.2 的流量都应更改为源 IP 192.168.0.2。
我会在从 eth0 发送的数据包中看到什么源 IP?换句话说,NAT 规则是否会应用于来自我自己机器的数据包?
谢谢!斤
您可以使用相同的后路由
iptables -t nat -A POSTROUTING -s 127.0.0.2 -o eth0 -j SNAT --to 192.168.0.2