[[Update]] the package lists. {{CodeSelect|code= sudo apt update }} Install resolvconf. /etc/openvpn/update-resolv-conf uses resolvconf. resolvconf needs to be installed for the lines beginning with ''script-security'', ''up'', and ''down'' to function properly. {{CodeSelect|code= sudo apt install resolvconf }} Users preferring not to install resolvconf should read the footnotes. {{Box|text= '''1.''' In the /etc/openvpn/openvpn.conf file, change the following text.
script-security 2
up "/etc/openvpn/update-resolv-conf script_type=up dev=tun0"
down "/etc/openvpn/update-resolv-conf script_type=down dev=tun0"
To the following. Remove or comment out the lines beginning with "up" and "down", and change the 2 to a 1.
script-security 1
'''2.''' {{Open with root rights|filename= /etc/resolv.conf }} '''3.''' Comment out the nameserver.
#nameserver 10.152.152.10
'''4.''' Add the VPN provider's DNS server.
## Riseup.net OpenVPN DNS server
nameserver 172.27.100.1
If Riseup is not in use, replace ''172.27.100.1'' with the virtual LAN IP address of the VPN provider's DNS server. If unsure, the VPN provider might provide it. To try to infer it, run sudo route after successfully connecting to the VPN. The first destination default gateway should also function as a DNS server. '''5.''' Save and exit. '''6.''' ''Optional:'' Prevent /etc/resolv.conf being overwritten by other packages like DHCP or resolvconf. Run.
sudo chattr +i /etc/resolv.conf
In order to revert this change, use ''-i''. Ignore the /etc/resolv.conf instructions below. }}