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 上的 Mac 上传入的流量重定向到端口 8080 上的同一台 Mac 的最简单方法是什么?
任何帮助将不胜感激。
您可以使用以下 ipfw 规则将任何传入流量的端口 8080 转发到 80:
sudo ipfw add 100 fwd 127.0.0.1:8080 tcp from any to me 80 in
请注意,重新启动后,除非您使用 launchd 将其永久化,否则该规则将消失。