I use OpenVPN to connect to the LAN at the office. When I start an OpenVPN connection, the office LAN DNS server becomes the default DNS server on my workstation, thus overriding my LAN's DNS service which normally defines the domain names for various local/internal servers. So if I have a mapped a share from a computer on the LAN using a locally defined domain name, the map fails as soon as I open a VPN connection.
The current client-side configuration looks like this:
dev tun
proto udp
persist-tun
persist-key
remote fw1.remotesystem.com 1194
resolv-retry infinite
nobind
route 192.168.1.0 255.255.255.0
client
ca company.crt
cert company-myusername.crt
key company-myusername.key
auth-user-pass
comp-lzo
I have patched the problem by adding a company_up.bat (when the OpenVPN config file is "company.ovpn") with the following content:
netsh interface ip set dns "Local Area Connection 4" static 127.0.0.1
exit 0
I have a resolver running on my workstation that forwards only the queries for the company LAN domain names to the company resolver, and everything else to my LAN's DNS server.
My question is, can I prevent the OpenVPN tunnel from setting the DNS server in the first place so that the company_up.bat would be unnecessary? I don't control the company end of the tunnel, so I can't set "redirect-gateway bypass-dns" (having the company DNS become the local default on connect is probably the desired functionality anyway for most of the users who connect to the company LAN).
Many thanks for any insights on this!