I changed all my vpn settings to read the following DNS settings
208.67.222.222, 208.67.220.220
When I run this command in terminal
$ cat /etc/resolv.conf
I get the following information
# Generated by NetworkManager
domain gateway.2wire.net
search gateway.2wire.net
nameserver 208.67.222.222 This is a public DNS
nameserver 192.168.xxx.xxxThis belongs to my ISP
How do I change that DNS to, say, 208.67.220.220
Can I use the instructions below??
Setup DNS Name resolution
Steps to configure Linux as DNS client, first login as a root user (use su command):
Step # 1: Open /etc/resolv.conf file:
# vi /etc/resolv.conf
Step #2: Add your ISP nameserver as follows:
search isp.com
nameserver 202.54.1.110
nameserver 202.54.1.112
nameserver 202.54.1.115
Note Max. three nameserver can be used/defined at a time.
Step # 3:Test setup nslookup or dig command:
$ dig www.nixcraft.com
$ nslookup www.nixcraft.com








