我想将请求转发192.168.99.100:80
到127.0.0.1:8000
。这就是我在linux中使用的方法iptables
:
iptables -t nat -A OUTPUT -p tcp --dport 80 -d 192.168.99.100 -j DNAT --to-destination 127.0.0.1:8000
我如何在 MacOS X 中做同样的事情?我尝试了一些ipfw
命令组合,但没有取得多大成功:
ipfw add fwd 127.0.0.1,8000 tcp from any to 192.168.99.100 80
(对我来说,成功是将浏览器指向http://192.168.99.100
并从我运行的开发服务器上获得响应localhost:8000
)