PVE NAT规则 示例
均基于apt install iptables-persistent
独立IP
iptables -t nat -A PREROUTING -d 公网 -j DNAT --to-destination 内网
ip6tables -t nat -A PREROUTING -d 公网 -j DNAT --to-destination 内网
NAT公网端口
iptables -t nat -A PREROUTING -p tcp --dport 公网端口 -j DNAT --to-destination 内网:22
iptables -t nat -A PREROUTING -p tcp -m tcp --dport 公网端口:公网端口 -j DNAT --to-destination 内网:内网端口-内网端口
iptables -t nat -A PREROUTING -p udp -m udp --dport 公网端口:公网端口 -j DNAT --to-destination 内网:内网端口-内网端口
ip6tables -t nat -A PREROUTING -p tcp --dport 公网端口 -j DNAT --to-destination 内网:22
ip6tables -t nat -A PREROUTING -p tcp -m tcp --dport 公网端口:公网端口 -j DNAT --to-destination 内网:内网端口-内网端口
ip6tables -t nat -A PREROUTING -p udp -m udp --dport 公网端口:公网端口 -j DNAT --to-destination 内网:内网端口-内网端口
版权声明:
作者:MR.k
链接:https://bigeng.sbs/2024/09/pve-nat%e8%a7%84%e5%88%99-%e7%a4%ba%e4%be%8b/
文章版权归作者所有,未经允许请勿转载。
THE END