Iptables实现转发一片连续的端口
2024年4月20日...小于 1 分钟
Iptables实现转发一片连续的端口
转发命令
iptables -t nat -A PREROUTING -i xenbr0 -p tcp --dport 64000:65000 -j DNAT --to 172.16.10.10:61000-62000
解释
--to
是 --to-destination
或 --to-source
的简写
DNAT target options:
--to-destination [<ipaddr>[-<ipaddr>]][:port[-port[/port]]]
Address to map destination to.
SNAT target options:
--to-source [<ipaddr>[-<ipaddr>]][:port[-port]]
Address to map source to.
新版防火墙nftables入门解释 https://blog.rachelt.one/articles/new-to-nftables-from-config-to-dnat/
你认为这篇文章怎么样?
- 0
- 0
- 0
- 0
- 0
- 0
Powered by Waline v3.3.2