What is the difference between /etc/hosts and /etc/resolv.conf? Also, is there a good documentation that explain all these configuration files.

Thank you. Bala

link|improve this question

25% accept rate
feedback

2 Answers

up vote 6 down vote accepted

resolv.conf specifies the nameservers for resolver lookups, where it will actual use the DNS protocol for resolving the hostnames. Typically the hosts file is used for administrative purposes such as backend and internal functions, which is substantially more isolated in scope, as only the local server will reference it it.

/etc/nsswitch.conf specifies the lookup order with the hosts entry.

If this does not answer your question, please clarify further.

Look at the following manpages:

HOSTS(5)
RESOLVER(5)

link|improve this answer
feedback

resolv.conf specifies nameservers in order of search preference.

hosts overrides all nameservers by mapping urls/shortnames to IPs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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