OpenVPN: Only route a specific IP addresses through VPN?

50

33

On a remote private network there are two servers -- a file server and a database server (these are both Win machines, in case it matters).

The file server has its own fairly robust authentication mechanisms, and allows me to connect directly from a remote location.

The database server uses a simple username and password, so to prevent unauthorized access, it's locked down to the local network -- external traffic is blocked.

To access the database server, I'm using the OpenVPN client on Windows to connect to a VPN server on the private network.

By default, OpenVPN routes all network packets destined for the remote network on which the VPN server resides, through the VPN. Unfortunately, accessing the file server through the VPN is extremely slow!

Question:

How can I configure the OpenVPN client to ONLY route traffic through the VPN that is destined for a single, specific IP address -- namely the database server??

Brian Lacy

Posted 2012-08-03T01:03:06.383

Reputation: 2 572

It's simple, see here for how to do it http://superuser.com/a/178675/96461

– Sameer – 2012-11-26T21:49:54.097

Answers

57

The correct configuration for OpenVpn is:

route-nopull 
route 192.168.0.0 255.255.255.0

These entries belong in your .ovpn file and will direct all 192.168.0.* subnet traffic through the VPN.

For one IP only (192.168.0.1):

route-nopull 
route 192.168.0.1 255.255.255.255

Thomas

Posted 2012-08-03T01:03:06.383

Reputation: 671

Can i just route a website to vpn?For example just www.facebook.com – Nicola Peluchetti – 2014-10-28T22:15:07.470

In my case routing single ip through vpn seems to work ok. But when using subnet mask it does not work at all. Any ideas why? – running.t – 2014-12-18T14:40:15.900

I still dont know answer to my question (above), but I have done some investigation and created separate thread about it: http://superuser.com/questions/854194/openvpn-route-only-specific-subnetwork-through-vpn-works-for-single-ip-adress

– running.t – 2014-12-18T16:06:45.527

is it possible to use dns name instead of ip address ? – Michael – 2014-12-25T22:30:23.623

Here is a suggested edit from an anonymous user who must not have enough rep to post comments. (They tried to add it as an edit) Add it to your answer if you feel it is appropriate. You also need to add this: script-security 2 Without it route-nopull doesn't work. At least on Windows it doesn't. – DrZoo – 2016-02-18T22:24:02.423

I didn't need script-security 2 on windows – xtian – 2018-08-23T11:58:30.217

But routes has a 3rd argument which is the gateway, what should I put there ? – Neji Soltani – 2019-06-02T13:16:51.767

We are mostly English speakers and don't necessarily know German. Please translate your answer. – gronostaj – 2013-08-06T08:44:19.497

1+1. This is exactly what I needed. I am using ovpn clients on my linux and hence you answer just saved me. Thanks. – slayedbylucifer – 2014-05-30T08:33:56.217

27

Goals

  • Use the plain internet connection for all internet traffic by default, even when the VPN is connected.
  • Route traffic to one specific IP address through the VPN.

Steps

  1. Press Win + R and execute ncpa.cpl.

  2. Right-click the VPN connection and go to Properties → Networking.

  3. Select Internet Protocol Version 4 and go to Properties → Advanced....

  4. Uncheck Use default gateway on remote network and click OK.

  5. (optional) Repeat the previous steps for Internet Protocol Version 6.

  6. (Re)connect to your VPN.

  7. Open a command prompt and execute route print -4.

  8. Spot the VPN's interface in the Interface list and its gateway in the Active Routes.

    On my machine, I have:

    Interface List
     32...........................Super Free VPN
    
    [...]
    
    Active Routes:
    Network Destination        Netmask          Gateway       Interface  Metric
              0.0.0.0          0.0.0.0         On-link        10.6.6.127     31
             10.0.0.0        255.0.0.0        10.88.1.1      10.88.1.102     31
    

    Here, the VPN's gateway is 10.88.1.1, since its the gateway for the 10.xxx.xxx.xxx block.

  9. Add a persistant route that will be appended to the active routes whenever there's a connection to the VPN:

    route -p add 23.22.135.169 10.88.1.1 if 32
    

    In this example, 23.22.135.169 is the IP of whatismyip.org, 10.88.1.1 is the gateway's IP and 32 the number of the interface.

  10. (optional) Repeat the previous steps for route print -6.

  11. Test the setup.

    If everything worked out, whatismyip.org and www.whatismyip.cx will display different IPs now.

Dennis

Posted 2012-08-03T01:03:06.383

Reputation: 42 934

2@ЕлинЙ. if you're using Network Manager just select "Use this connection only for resources on this network". – leif81 – 2014-11-08T02:09:37.903

1+1 ... but could golf this? – Olivier Dulac – 2016-05-26T17:50:03.437

1Surely there's a simpler way? – Brian Lacy – 2012-08-07T14:56:50.970

1Do you know how to achieve this under Linux (Ubuntu)? – Елин Й. – 2014-03-26T11:49:07.313

12

To your OpenVPN client config, add a line like:

route The.IP.To.Go 255.255.255.255

(Where The.IP.To.Go is the IP you wish to route through the VPN)

This instructs OpenVPN to create the entry in your OS's routing table.

Alternatively, the OpenVPN server could be made to "push" this routing configuration down to clients, by adding to the server config:

push "route The.IP.To.Go 255.255.255.255"

EDIT: One thing I missed addressing--the default forwarding of all traffic... It could either be disabled on the server, or clients can elect to ignore "pushed" directives (so our second option "pushing" the route would not work) via:

route-nopull

Adam

Posted 2012-08-03T01:03:06.383

Reputation: 121

0

In response to the comments asking for an easy linux / networkmanager friendly solution to customizing what gets routed over OpenVPN, here is a GUI friendly way to set it up. This answer is, as far as I can tell, just the GUI version of Thomas's answer.

Screenshot of network manager showing where to click

Step 1: select your VPN configuration

Step 2: go over to the relevant tab (either IPv4 or IPv6)

Step 3: Click the "Routes..." button in the bottom right

Step 4: Add your desired route (in this case it is redirecting all traffic from 192.168.0.* through the VPN

Step 5: check the "use only for resources on this connection" checkbox so that connecting to the VPN doesn't change your default gateway settings to route all traffic through the VPN.

DeveloperACE

Posted 2012-08-03T01:03:06.383

Reputation: 101

-3

iptables -A PREROUTING -t mangle -i <LAN_interface> \
-d <remote_network>/<remote_netmask> -j ROUTE --gw <openvpn_host_ip>

Dharmesh

Posted 2012-08-03T01:03:06.383

Reputation: 1

Please explain what this command does. Just one command without explanation is not that useful. Also check the formatting of your post—all the <brackets> are not visible if they're not marked as code. – slhck – 2015-02-13T10:44:11.193

The question is about configuring the Windows OpenVPN client side of things; this is a Linux server-side configuration that doesn't apply. – Jim Stewart – 2019-12-19T08:06:13.883