Can you explain me what I need to add in my hosts file for no dns look up

link|improve this question

80% accept rate
4  
Please specify your OS. This question is highly OS-specific. – sleske Mar 24 '10 at 14:00
feedback

closed as not a real question by splattne May 24 '11 at 7:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

Can you explain me what I need to add in my hosts file for no dns look up

That is the wrong question to ask. The hosts file does not control whether or not DNS lookups are performed; it just provides a way to obtain IP addresses w/o DNS.

To control lookup behaviour, you need to modify /etc/nsswitch.conf (at least on Linux).

link|improve this answer
feedback

The file you need is host.conf, this configures the DNS resolver for the system. To disable external DNS lookups and to use only the hosts file use:

order hosts

In addition, depending on the distribution, you may need to edit nsswitch.conf as well.

link|improve this answer
feedback

You probably want to just create an empty /etc/resolv.conf if you want to stop DNS lookups from working.

link|improve this answer
feedback

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