iptables 命令是什么来实现 sudo iptables -t nat -L -n -v 报告的以下规则
Chain POSTROUTING (policy ACCEPT 133 packets, 10675 bytes)
pkts bytes target prot opt in out source destination
74 4322 MASQUERADE all -- * * 10.42.0.0/24 !10.42.0.0/24
答案1
根据 LL3 的提示,上面的一个选项是:
sudo iptables -A POSTROUTING -s 192.168.42.0/24 ! -d 192.168.42.0/24 -j MASQUERADE
另一个隐式引用我使用的 nat 表的是
sudo iptables --table nat -A POSTROUTING -s 192.168.42.0/24 ! -d 192.168.42.0/24 -j MASQUERADE