iptables -t nat -A PREROUTING -p udp --dport 1234 -j DNAT --to-destination C 的 IP iptables -t nat -A POSTROUTING -s A 的 IP -p udp --dport 1234 -j SNAT --to-source B 的 IP
就是这样啊,但是需要调整 A 的路由表在 A 访问 C 是下一跳是 B
脾气不要这么差
sujin190
2023-09-21 10:56:29 +08:00
A 的 IP 不确定,第二条可以不写就是了
iptables -t nat -A POSTROUTING -p udp --dport 1234 -j SNAT --to-source B 的 IP