Some parts taken from: https://gist.github.com/kujohn/7209628
ipfw
is officially deprecated and removed in OS X Yosemite. Pow requires another program pf
to handle the port forwarding.
Create file /etc/pf.anchors/pow
rdr pass on lo0 inet proto tcp from any to 127.0.0.1 port = 80 -> 127.0.0.1 port 20559
Note: Trailing line break is important.
Insert rdr-anchor "pow"
and load anchor "pow" from "/etc/pf.anchors/pow"
at correct places in /etc/pf.conf
, so that it looks like this:
scrub-anchor "com.apple/*"
nat-anchor "com.apple/*"
rdr-anchor "com.apple/*"
rdr-anchor "pow" # Pow port forwarding
dummynet-anchor "com.apple/*"
anchor "com.apple/*"
load anchor "com.apple" from "/etc/pf.anchors/com.apple"
load anchor "pow" from "/etc/pf.anchors/pow" # Pow port forwarding
Note: In newer versions of Yosemite Developer Preview, it seems that pf is enabled automatically on boot.
You can enable pf manually via sudo pfctl -ef /etc/pf.conf
However, to enable pf automatically after every boot, save the following as /System/Library/LaunchDaemons/com.apple.pfctl.plist
:
<key>ProgramArguments</key>
<array>
<string>pfctl</string>
<string>-e</string>
<string>-f</string>
<string>/etc/pf.conf</string>
</array>
Damn, this still isn't working for me. Still getting an error when trying to install pow:
*** Installing Pow 0.4.3...
*** Installing local configuration files...
*** Starting the Pow server...
*** Performing self-test...
*** Reloading system network configuration...
!!! Couldn't resolve configured domains (dev)