/etc/resolv.conf: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 41: Line 41:
==OpenShift Example==
==OpenShift Example==


All (/etc/sysconfig/network-scripts/ifcfg-eth0, /etc/sysconfig/network-scripts/ifcfg-eth1):
All (<tt>/etc/sysconfig/network-scripts/ifcfg-eth0</tt>, <tt>/etc/sysconfig/network-scripts/ifcfg-eth1</tt>):


{{{
<pre>
...
...
# DNS resolver
# DNS resolver
Line 50: Line 50:
NM_CONTROLLED=no
NM_CONTROLLED=no
DNS1=172.20.2.10
DNS1=172.20.2.10
}}}
</pre>


/etc/resolv.conf
<tt>/etc/resolv.conf</tt>


{{{
<pre>
# Manual 09/21/15
# Manual 09/21/15
domain openshift.local
domain openshift.local
search openshift.local
search openshift.local
nameserver 172.20.2.10
nameserver 172.20.2.10
}}}
</pre>


!!!Content
=Content=


{{/etc/resolv.conf}} contains
<tt>/etc/resolv.conf</tt> contains:


!!Nameservers
==Nameservers==


The {{nameserver}} is the DNS server IPv4 or IPv6 address.  
The <tt>nameserver</tt> is the DNS server IPv4 or IPv6 address.  


Up to {{MAXNS}} (currently 3, specified in {{resolv.h}}) name servers may be listed, one per keyword.
Up to <tt>MAXNS</tt> (currently 3, specified in <tt>resolv.h</tt>) name servers may be listed, one per keyword.


If multiple servers are listed, they are queried in order.  
If multiple servers are listed, they are queried in order.  


If no {{name server}} is specified, the default is to use the name server on the local machine.
If no <tt>name server</tt> is specified, the default is to use the name server on the local machine.


Example:
Example:


{{{
<pre>
nameserver 206.13.28.12
nameserver 206.13.28.12
nameserver 206.13.28.13
nameserver 206.13.28.13
nameserver 206.13.28.14
nameserver 206.13.28.14
}}}
</pre>


!!Domain
==Domain==


The {{domain}} keyword specifies the local domain name.  
The <tt>domain</tt> keyword specifies the local domain name.  


If no {{domain}} entry is present, the domain is determined from the local hostname returned by {{gethostname}} by taking everything after the first ".". If the hostname does not contain a domain part, the root domain is assumed.
If no <tt>domain</tt> entry is present, the domain is determined from the local hostname returned by <tt>gethostname</tt> by taking everything after the first ".". If the hostname does not contain a domain part, the root domain is assumed.


Example
Example:


{{{
<pre>
domain openshift.local
domain openshift.local
}}}
</pre>


 
==Search==
!!Search


The search list of host name lookup. Strings added to non-canonical host names when those non-canonical host names are resolved to IP addresses.  
The search list of host name lookup. Strings added to non-canonical host names when those non-canonical host names are resolved to IP addresses.  
Line 102: Line 101:
The search list is normally determined from the local domain name, and by default it contains only the local domain name.
The search list is normally determined from the local domain name, and by default it contains only the local domain name.


This may be changed by listing the desired domain search path following the {{search}} keyword. It is used as follows: resolver queries having fewer than 1 dot will be attempted using each component of the search path in turn until a match is found.
This may be changed by listing the desired domain search path following the <tt>search</tt> keyword. It is used as follows: resolver queries having fewer than 1 dot will be attempted using each component of the search path in turn until a match is found.


 
<pre>
{{{
search novaordis.com
search novaordis.com
}}}
</pre>
 
 
 
 
 
 
__Referenced by:__\\
[{INSERT com.ecyrd.jspwiki.plugin.ReferringPagesPlugin WHERE max=20, maxwidth=50}]

Revision as of 23:10, 3 April 2017

External

Internal

Overview

/etc/resolv.conf is the name of the file that configures the DNS resolver. The DNS resolver is a set of routines in the C library that provide access to DNS. Among other things, /etc/resolv.conf configures the default search domains and the nameserver IP addresses.

Who Writes It?

Network configuration scripts or Network Manager write /etc/resolv.conf when configured to do so (see PEERDNS=yes), or not, in which case you will need to edit it manually.

Configure DNS via /etc/sysconfig/network-scripts

The following settings should be specified in /etc/sysconfig/network-scripts/ifcfg-ethX:

To configure the DNS resolver with a specific DNS server and NOT the DNS server that comes with DHCP configuration, set:

PEERDNS=no
IPV6_PEERDNS=no

Note that setting only one is not sufficient, both need to be set.

Then specify the DNS IP address with:

DNS1=8.8.8.8
DNS2=8.8.4.4

The network configuration scripts will write this into /etc/resolv.conf. Actually, if I set PEERDNS=no, nothing is written, I need to write it manually. Return to this.

Also see NM_CONTROLLED.

OpenShift Example

All (/etc/sysconfig/network-scripts/ifcfg-eth0, /etc/sysconfig/network-scripts/ifcfg-eth1):

...
# DNS resolver
IPV6_PEERDNS=no
PEERDNS=no
NM_CONTROLLED=no
DNS1=172.20.2.10

/etc/resolv.conf

# Manual 09/21/15
domain openshift.local
search openshift.local
nameserver 172.20.2.10

Content

/etc/resolv.conf contains:

Nameservers

The nameserver is the DNS server IPv4 or IPv6 address.

Up to MAXNS (currently 3, specified in resolv.h) name servers may be listed, one per keyword.

If multiple servers are listed, they are queried in order.

If no name server is specified, the default is to use the name server on the local machine.

Example:

nameserver 206.13.28.12
nameserver 206.13.28.13
nameserver 206.13.28.14

Domain

The domain keyword specifies the local domain name.

If no domain entry is present, the domain is determined from the local hostname returned by gethostname by taking everything after the first ".". If the hostname does not contain a domain part, the root domain is assumed.

Example:

domain openshift.local

Search

The search list of host name lookup. Strings added to non-canonical host names when those non-canonical host names are resolved to IP addresses.

The search list is normally determined from the local domain name, and by default it contains only the local domain name.

This may be changed by listing the desired domain search path following the search keyword. It is used as follows: resolver queries having fewer than 1 dot will be attempted using each component of the search path in turn until a match is found.

search novaordis.com