设置firewall的跳转:
sudo iptables -t nat -A OUTPUT -d 172.16.101.2(跳转的起始地址) -P icmp/tcp -j DNAT --to-destination 25.0.0.2(想跳转到的目的地址)
查看防火墙的规则:
sudo iptables -t nat -L
查看跳转结果:
sudo tcpdump -i enp3s0(设备名称) host 25.0.0.2 or sudo tcpdump -i enp3s0 -h | grep 25.0.0.2