Questions tagged «ipfw»

7
相当于Mac OS X的iptables
我想将请求从转发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)
55 mac-osx  iptables  ipfw 

1
带有端口的本地主机的主机名-OSX [关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,以使其成为服务器故障的主题。 4年前关闭。 我正在尝试Node.js在计算机上本地运行多个Web服务器。 因为我正在编写的代码需要引用域名,所以我希望保持约定,dev.myHost.com并指向从Node运行的non-port-80服务(从技术上来说,我在Harp.js上运行,在on上运行Sails.js)。 所以dev.hostOne.com应该指向localhost:123 并dev.hostTwo.com应指向localhost:456 这可能吗?如果是这样,如何。
14 mac-osx  node.js  hosts  ipfw 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.