Q. How do I change existing name server IP address? How do I configure DNS name server IP address under Ubuntu Linux / Debian Linux? How do I configure DNS name resolution under Ubuntu Linux?
A. You need to edit /etc/resolv.conf file under Debian / Ubuntu Linux to set Name server IP address that the resolver should query. Up to 3 name server internet IP address can be defined. If there are multiple servers, the resolver library queries them in the order listed.
Ubuntu Linux Configure DNS Name resolution
Type the following command, enter:
$ sudo vi /etc/resolv.conf
Or use nano text editor:
$ sudo nano /etc/resolv.conf
Append your ISP name server or free fast dns nameservers IP address as follows:
nameserver 208.67.222.222
nameserver 208.67.220.220
nameserver 202.51.5.52
Save and close the file. Test your dns configuration by typing the following commands:
$ host yahoo.com
$ nslookup google.com
$ ping nixcraft.in
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 15 comments… read them below or add one }
I wonder if you are not missing something in the command:
$ sudo /etc/resolv.conf
What about:
$ sudo nano /etc/resolv.conf
or something?
Carl,
Thanks for the heads up. The faq has been updated.
On Ubuntu the settings may get overwritten and will certainly get overwritten after a reboot. This is because Ubuntu dynamically generates the /etc/resolv.conf file.It generates this from file a template where it gives you convenient hooks to add in your own static nameserver definitions. Here is the more modern method.
Edit the template’s tail file:
sudo vim /etc/resolvconf/resolv.conf.d/tail
Add your nameserver lines:
nameserver 208.67.222.222
nameserver 208.67.220.220
nameserver 202.51.5.52
Save the file and then regenerate the resolv.conf file:
sudo /etc/init.d/resolvconf restart
–
Noah
@Noah
Default installation of Ubuntu Server 9.04 does not have this ‘feature’. /etc/resolvconf/ does not exist.
@Jaymes,
No it is available and /etc/resolv.conf file do exits for Ubuntu 9.04. It is part of default Linux C library.
@Noah, you need to setup dhclient to avoid overwriting, see:
How To: Make Sure /etc/resolv.conf Never Get Updated By DHCP Client
how about restarting network? it should or not?
Dear Team,
How do i can assign hostname & IP address in Ubuntu? If By using sudo? then how to install sudo…?
Thanks & Regards,
Satish.
Hello,
It is perhaps silly question but I don’t really understand from where should I take ip addresses which should be added to /etc/resolv.conf.
I am speaking of those:
nameserver 208.67.222.222
nameserver 208.67.220.220
nameserver 202.51.5.52
Shall I ask my network provider about that or there is an easier method?
Thank you for help!
nameserver 208.67.222.222
nameserver 208.67.220.220
nameserver 202.51.5.52
nameserver 208.67.222.222
nameserver 208.67.220.220
nameserver 202.51.5.52
how to set name server in ubuntu.
pls help me………
sudo nano /etc/resolvconf/resolv.conf.d/base
add your nameservers
nameserver 208.67.222.222
nameserver 208.67.220.220
nameserver 202.51.5.52
and restart resolvconf
sudo /etc/init.d/resolvconf restart
this automatically update /etc/resolv.conf file
thanks Noah Spurrier ;)
Hi
I’m on ubuntu 12.04. and I had to edit the head part of resolv deamon
because the resolv.conf did had the first entry inside this:
nameserver 127.0.0.1
it never used the google nameservers that I defined in base or tail part… so what I did:
sudo nano /etc/resolvconf/resolv.conf.d/head
nameserver 8.8.8.8
nameserver 4.4.4.4
sudo /etc/init.d/resolvconf restart
and content of resolv.conf file did have correct order:
nameserver 8.8.8.8
nameserver 4.4.4.4
nameserver 127.0.0.1
and I finaly did have fast new domain that I registered half hour ago ready to test!
thanks to Ivan and others…
@Noah Spurrier: Thanks alot man, after a massive amount of research, I finally found your post. Every page that google turned up for “Setting a Static IP/DNS” involved editing the resolv.conf file… as if it didn’t get over-written. Editing the tail file works flawlessly, thanks a lot man.
Also check out our faq: How To: Make Sure /etc/resolv.conf Never Get Updated By DHCP Client
This no longer applies on 12.10 because /etc/resolv.conf is a symlink to /run/resolv.conf/resolv.conf. /run is a tmpfs.
$ ls -l /etc/resolv.conf
lrwxrwxrwx 1 root root 29 Nov 21 22:49 /etc/resolv.conf -> ../run/resolvconf/resolv.conf