Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过以下方式将端口 80 重定向到端口 8000:
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 8000
其他主机可以通过 80 端口访问我的网络服务器,但是当我访问 127.0.0.1:80 时,重定向无法在本地主机中工作。
端口方向可以用于环回网络适配器吗?
该nat表用于网络地址转换,仅用于外部接口。您还必须将规则添加到处理内部通信的表中。
nat