Configuring DNS for Clients

 < Day Day Up > 

Later in the chapter, we will focus on setup and configuration in order to provide DNS. In this section, we will briefly examine the setup and configuration required for a computer to use DNS services. The important user setup and configuration processes for DNS will likely have been accomplished during the initial installation of Fedora Core. After the initial installation, further DNS configuration can be accomplished by one or more of these methods:

Using Dynamic Host Control Protocol (DHCP) in which case, some system settings are updated by the dhclient command without intervention by a local or remote administrator or user

Using the system-config-network GUI configuration tool

Manually editing the system's /etc/host.conf configuration file to specify the methods and order of name resolution

Manually editing the system's /etc/nsswitch.conf configuration file to specify the methods and order of name resolution

Manually editing the system's /etc/hosts file which lists specific hostnames and IP addresses

Manually editing the system's /etc/resolv.conf configuration file to add nameserver, domain, or search definition entries

Successful DNS lookups depend on the system's networking being enabled and correctly configured. You can learn more about how to accomplish that in Chapter 17, "Network Connectivity."

When an application needs to resolve a hostname, it calls system library functions to do the name resolution. If the GNU C library installed is version 2 or greater, then the /etc/nsswitch.conf configuration file is used. Older versions of the library use /etc/host.conf. Fedora uses the newer GNU C library, but /etc/host.conf is still provided for applications that have been statically linked with other libraries. The two files should be kept in sync.

Understanding the /etc/host.conf File

The file /etc/host.conf, known as the resolver configuration file, specifies which services to use for name resolution and what order they are to be used. This file has been superceded by /etc/nsswitch.conf, but is still provided for applications that use other libraries.

By default with Fedora, this file contains

 order hosts,bind 

The order shown here is to first consult /etc/hosts for a hostname. If the hostname is found in /etc/hosts, use the IP address specified there. If it is not found in /etc/hosts, then try and resolve the name using DNS (BIND).

One other option is available, although not set by default. This is nis, which is Sun's Network Information Service.

Understanding the /etc/nsswitch.conf File

The file /etc/nsswitch.conf is the System Databases and Name Service Switch configuration file. It contains methods for many types of lookups, but here we are concerned with DNS resolution, so the line we are interested in is the hosts line. This line defines the methods to be used for resolving hostnames and the order in which to apply them. The methods used are

db Local database files (*.db)

files Use the local file /etc/hosts

dns Use BIND

nis Use Sun's NIS (Network Information Service)

nisplus Use Sun's NIS+

The default line with Fedora Core is

 hosts: files dns 

With this default, the same methods and order are specified as in the default /etc/host.conf. First, /etc/hosts is searched, and then DNS is used.

Another example would be

 hosts: files dns nisplus nis 

In this example, name searches that fail in /etc/hosts and with DNS will continue to the NIS services (nisplus and nis). NIS included with Fedora Core is the ypserv daemon.

When you are testing your configuration, you may want to halt name searching at a specific point. You can use the entry [NOTFOUND=return]. For example, to stop searching after looking in /etc/hosts, you would use the line

 hosts: files [NOTFOUND=return] dns nisplus nis 

Understanding the /etc/hosts File

The file /etc/hosts contains a table of local hosts (hostnames and IP addresses) used for local DNS-type lookups. The file is used if the keyword hosts is included in the order line of /etc/host.conf.

Using /etc/hosts to provide hostnames and hostname aliases can be effective when used on small networks. For example, a short /etc/hosts might look like this:

 ... 192.168.1.3    wind.maximumhoyt.com    wind webserver #always breaks 192.168.1.4    marvin.maximumhoyt.com    marvin mailserver 192.168.1.5    titan.maximumhoyt.com    titan cvshost 192.168.1.6    hp.maximumhoyt.com    hp ... 

This example shows a short list of hosts. The format of the file is an IP address, a hostname/domain name, and aliases (such as marvin and mailserver). Using this approach, a system administrator would maintain and update a master hosts list, and then replicate the complete /etc/hosts file to every computer on the LAN. Users are then able to access other systems by simply using the hostname alias (such as marvin). The format of /etc/hosts is easy to understand and easy to maintain, and can be used in conjunction with DNS, and in conjunction with a Dynamic Host Configuration Protocol (DHCP) server on the same network.

Two disadvantages of using /etc/hosts become readily apparent on a large network: maintenance and replication. Maintaining huge lists of IP addresses, hostnames, and aliases along with ensuring that changes are regularly updated to every host on the network can be a challenge.

The /etc/hosts file can be edited with a text editor, or by using the system-config-network GUI configuration tool which can be launched from the Network menu item in the System Settings menu. The Hosts tab allows editing the file.

Understanding the /etc/resolv.conf File

The file /etc/resolv.conf specifies how DNS searches are made. The file contains a list of nameservers (DNS servers to connect to) and some options.

For example, a simple, but usable /etc/resolv.conf generally contains at least two nameserver entries, specifying a primary and secondary nameserver. This example uses fictitious internal IP addresses:

 nameserver 192.168.1.1 nameserver 192.168.1.2 search mydomain.com 

The IP addresses listed in the /etc/resolv.conf file are usually assigned by an ISP and represent the remote nameservers. Other optional keywords, such as domain and search, are used to specify a local domain and search list for queries; the two terms are mutually exclusive, however (and we will explain these terms shortly). If you have both, the last one listed will be used.

The information in /etc/resolv.conf can be configured from the system-config-network tool by launching the tool from the Network menu item in the System settings menu. The DNS tab allows you to enter or edit the DNS information, as shown in Figure 26.1.

Figure 26.1. The GUI Network Configuration tool is one of Fedora Core's best-designed GUI tools, permitting extensive network configuration.


Understanding the Changes Made by DHCP

If your system is set to use DHCP, when the DHCP connection is made any existing /etc/resolv.conf is saved as resolv.conf.predhclient and a new /etc/resolv.conf is created with the DNS information supplied by DHCP. When DHCP is released, the saved file is moved back as /etc/resolv.conf.

     < Day Day Up > 


    Red Hat Fedora 4 Unleashed
    Red Hat Fedora 4 Unleashed
    ISBN: 0672327929
    EAN: 2147483647
    Year: 2006
    Pages: 361

    flylib.com © 2008-2017.
    If you may any questions please contact us: flylib@qtcs.net