Skip to content

Instantly share code, notes, and snippets.

@taldanzig
Created January 24, 2013 22:14
Show Gist options
  • Save taldanzig/4628573 to your computer and use it in GitHub Desktop.
Save taldanzig/4628573 to your computer and use it in GitHub Desktop.
Routing tips for VPNs on OS X

Routing tips for VPNs on OS X

When VPNs Just Work™, they're a fantastic way of allowing access to a private network from remote locations. When they don't work it can be an experience in frustration. I've had situations where I can connect to a VPN from my Mac, but various networking situations cause routing conflicts. Here are a couple of cases and how I've been able to get around them.

Specific cases

Case 1: conflicting additional routes.

In this example the VPN we are connecting to has a subnet that does not conflict with our local IP, but has additional routes that conflict in some way with our local network's routing. In my example the remote subnet is 10.0.x.0/24, my local subnet is 10.0.y.0/24, and the conflicting route is 10.0.0.0/8. Without the later route, I can't access all hosts on the VPN without manually adding the route after connecting to the VPN:

sudo route add -net 10 -interface ppp0

In the above case the VPN is a PPTP VPN that uses ppp0 as the network interface. With this additional route, I can now access all the hosts I need to on the VPN. This won't solve the case of trying to access addresses on the 10.0.y.0/24 subnet though.

Case 2: conflicting subnet between VPN and local network.

Fairly often a VPN on a private address space subnet can end up conflicting with a local subnet. For example if both the remote and local networks share the 192.168.0.0/24 subnet then our VPN connection ends up being pretty useless as all of the remote addresses will end up being routed to the local network device.

It is possible to get around this in some cases as long as the VPN IP address doesn't conflict directly with a local IP address that you need access to. In this case we need to add a specific route for the remote IP:

sudo route add -host 192.168.0.x -interface tun0

In the above case I'm routing the host 192.168.0.x (replace the x with your specific address) via the tun0 device (in this case an OpenVPN connection).

Useful commands to debug routing issues.

The following command will show the existing routing table (IPv4 only):

netstat -nr -f inet

The following command will show you how a specific host will get routed:

route get HOSTNAME_OR_IP
@bsd5
Copy link

bsd5 commented Jul 20, 2023

You're my hero! I have a VPN on the 10.1.x.x network and a local device at 10.1.1.123 and have been trying to convince my computer on a 192.168.1.0 network access it. The first route worked! I tried what seems like countless other options for the network to no avail.

THANK YOU!

@b1rdex
Copy link

b1rdex commented Aug 8, 2023

In Big Sur, I have found the ip-up script method will work, but you have to use networksetup instead of route.

Actually, you don't have to create /etc/ppp/ip-up anymore (it doesn't work). You just run a command one time in terminal and it applies it to future connections automatically.

Works for me in Ventura:
networksetup -setadditionalroutes "You vpn name" 172.20.20.0 255.255.255.0 172.17.19.1 172.16.0.0 255.255.254.0 172.17.19.1 (yes all routes should be in one command run)

@mraesener-aubex
Copy link

the solution from @b1rdex worked perfectly fine for me, thanks for sharing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment