我正在从 Windows 迁移到 Debian 10,在 Windows 上我使用 portproxy 重新路由端口
netsh 接口 portproxy 添加 v4tov4 listenport=9800 listenaddress=127.0.0.1 connectport=9078 connectaddress=127.0.0.1
我现在需要使用 debian/nftables 执行上述操作,我需要什么配置才能在 nftables 上执行上述端口重新映射?
答案1
这就是所谓的转发端口正如 RHEL 文档中解释的那样, https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/security_guide/sec-configuring_port_forwarding_using_nftables
nft add rule ip nat prerouting tcp dport 9800 redirect to :9078
您可以在其他发行版的网站上找到很好的文档,尤其是 RHEL。您不需要坚持使用 Debian。