iptables 如何将本机对外访问 1.1.1.1:443 的请求劫持到 2.2.2.2:7443
1
hostname Aug 22, 2022
iptables -t nat -AOUTPUT -p tcp -d 1.1.1.1 --dport 443 -j DNAT --to-destination 2.2.2.2:7443
|