Since Mavericks stopped using the deprecated ipfw (as of Mountain Lion), we'll be using pf to allow port forwarding.
####1. anchor file
Create an anchor file under /etc/pf.anchors/<anchor file> with your redirection rule like:
| #!/bin/bash | |
| # Installing the Xcode command line tools on 10.7.x or higher | |
| osx_vers=$(sw_vers -productVersion | awk -F "." '{print $2}') | |
| cmd_line_tools_temp_file="/tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress" | |
| # Installing the latest Xcode command line tools on 10.9.x or higher | |
| if [[ "$osx_vers" -ge 9 ]]; then |
| #!/bin/bash | |
| # Installing the Xcode command line tools on 10.7.x or higher | |
| osx_vers=$(sw_vers -productVersion | awk -F "." '{print $2}') | |
| cmd_line_tools_temp_file="/tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress" | |
| # Installing the latest Xcode command line tools on 10.9.x or higher | |
| if [[ "$osx_vers" -ge 9 ]]; then |