Is it possible to configure a Linux server not to use the dns-servers it receives from the ISP? If it is, how can it be done?

Cheers

AC

link|improve this question
feedback

1 Answer

up vote 8 down vote accepted

Just add your desired servers to /etc/resolv.conf:

nameserver 8.8.8.8
nameserver 8.8.4.4

If your resolv.conf is being overwritten by the information your dhcp client is getting from the ISP, there are usually ways to prevent that, but we'd need more info about what linux distro you're running and what dhcp client you're using.

link|improve this answer
1  
+1 for recommending Google DNS servers. The world domination plan is proceeding on schedule. – Steven Monday Oct 29 '10 at 19:05
I didn't intentionally pick google's servers - those two were just the first two public DNS servers I could remember at the time. – ErikA Oct 29 '10 at 19:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.