1

I just setup OpenVPN client using this guide on The Geek Stuff

But now (somewhat as expected) all my traffic is routed through the VPN.

I actually just want to set up the interface device.
Does anyone know how to do that?

Here's the config file:

client

dev tun
remote purevpnserver.test 53
proto udp
nobind
persist-key
persist-tun
tls-auth Wdc.key 1
ca ca.crt
cipher AES-256-CBC
comp-lzo
verb 1
mute 20
float
route-method exe
route-delay 2
auth-user-pass
auth-retry interact
explicit-exit-notify 2
ifconfig-nowarn
auth-nocache 
masegaloeh
  • 18,236
  • 10
  • 57
  • 106
Jelle De Loecker
  • 1,094
  • 6
  • 17
  • 30

1 Answers1

2

By adding route-nopull to the config file, openvpn would ignore the routes pushed from the server to the client.

Something I found on the openvpn site

Jelle De Loecker
  • 1,094
  • 6
  • 17
  • 30