Adding routes in OS X or Linux
1 minute to readAdding a route manually can be necessary sometimes. When on Linux, I know the command by heart:
# ip addresses just for example
sudo route add -net 10.67.0.0/16 gw 192.168.120.254
On the OS X the command is similar, but a bit different 🙂
Just as a note to myself and anyone else interested:
sudo route -n add -net 10.67.0.0/16 192.168.120.254
This sets up a route to the 10.67.0.0/16
net through gateway
192.168.120.254
.
To see an overview of current routes use:
netstat -nr