Archive
Split tunneling using OpenVPN

Split tunneling using OpenVPN

2024-11-22 If you are using the Mullvad VPN app, then please instead see the guide Split tunneling with the Mullvad app (for Android, Linux and Windows). The te

Related articles

What is a VPN? How to Open Cloud Kitchen on Zomato: 2024 Rules What Is a Site-to-Site VPN? 5 Best VPN Free Trials in 2024 What was Angus Cloud’s dad’s cause of death? Rainbow Cloud (Rare)

If you are using the Mullvad VPN app, then please instead see the guide Split tunneling with the Mullvad app (for Android, Linux and Windows).

The term “split tunneling” is used to describe when you want some of your programs to use the VPN while allowing the rest of your traffic to travel via your regular Internet connection. This guide explains how to set up split tunneling so that everything goes outside of the VPN tunnel by default, or so that everything goes inside the VPN tunnel by default.

prerequisite

First you need to have set up OpenVPN in your operating system. See the corresponding guide here:

openvpn installation on Linux

OpenVPN installation on Windows

Tunnelblick on macOS

option 1 : How to route everything outside of the VPN by default

You will use SOCKS5 proxies for the programs that you want to go out  via the VPN connection.

 

DNS configuration

Warning: Firefox may leak DNS requests outside the SOCKS5 proxy even if you have “Proxy DNS when using SOCKS v5” enabled. Make sure that you have set your system to use a DNS that that you are comfortable to leak queries to.

Linux is using using openvpn

Edit /etc/openvpn/mullvad_xx.conf and add

 route - nopull 
 route 10.0.0.0 255.0.0.0 

Reconnect.

Follow the SOCKS5 guide guide for how to configure your clients that should go out via the VPN.

Windows using OpenVPN

Copy mullvad_xx.ovpn from C:\Program Files\OpenVPN\config\ or C:\Program Files(x86)\OpenVPN\config\ to the desktop, then edit it to add the following:

 route - nopull 
 route 10.0.0.0 255.0.0.0 

Also remove the line block-outside-dns.

Save the file, and then copy it back to C:\Program Files\OpenVPN\config\ or C:\Program Files(x86)\OpenVPN\config\

Click Yes on the permission requester.

Reconnect.

Follow the SOCKS5 guide for how to configure your clients that should go out via the VPN.

Set your system DNS to use a public DNS that you wish to use.

  1. Go to Windows Settings > Network & Internet > Change adapter options.
  2. right – click on the Ethernet network adapter ( or Wi – Fi adapter ) that you use to connect to the internet and select property .
  3. Double-click on Internet Protocol Version 4 (TCP/IPv4).
  4. Click on Use the following DNS server addresses and enter the IP as the Preferred DNS server and click on OK and then OK again.

MacOS using Tunnelblick (OpenVPN)

Right click on the Mullvad.tblk file (found inside the downloaded Zip file) and choose “Show Package Contents”. Find the file mullvad_xx.conf and open it in TextEdit.

addthe following options to it:

 route - nopull 
 route 10.0.0.0 255.0.0.0 

Save the file, and then import this profile into Tunnelblick

Follow the SOCKS5 guide for how to configure your clients that should go out via the VPN.

option 2 : How to route everything via the VPN by default except certain ip address

note : remove the three line from the example above if you have add them .

In this example we is route will not route www.chalmers.se through the VPN .

First figure out the IP address that you want to go outside the VPN tunnel, in this case it is www.chalmers.se

open up a terminal / command prompt and runnslookup www.chalmers.se.

It is respond should respond with

Server:        10.137.8.1
Address:    10.137.8.1#53

Non-authoritative answer

Name:    www.chalmers.se
Address: 129.16.71.10

As you can see, it only has one IP address, 129.16.71.10, so we will add this using OpenVPN.

  1. Edit the OpenVPN configuration / Profile
  2. addroute 129.16.71.10 255.255.255.255 net_gateway
  3. save change .
  4. restart openvpn connection .

Troubleshooting

  1. Are you is Are able to ping 10.8.0.1 ?   If you get response then the connection to the VPN server is work .
  2. Are you is Are not able to get dns lookup through ? In a terminal window , runnslookup is sunet.se sunet.se and check which server it tries to use as well.
  3. If your browser work with SOCKS5 enable work but fail without , then it is is is most likely a dns issue .