System Administration: Another Step toward the BIND - II

July 23rd, 2006 by Tom Adelstein

Your rating: None

Yesterday, we looked at a named.conf file for a single domain we called example.org. Rather than send you back to the earlier article, we'll reproduce the file contents below:

options {
     pid-file "/var/run/bind/run/named.pid";
     directory "/etc/bind";
     // query-source address * port 53; };
//
// a master nameserver config
//
zone "." {
     type hint;
     file "db.root";
};

zone "0.0.127.in-addr.arpa" {
     type master;
     file "db.local";
};

zone "158.253.70.in-addr.arpa" {
     type master;
     file "pri.253.158.70.in-addr.arpa";
};

zone "example.org" {
     type master;
     file "pri.example.org";
};

The file refers to the four other configuration files: db.root, db.local, pri.253.158.70.in-addr.arpa and pri.example.org.

The zone file allow BIND to do its work. But before the daemon can get to the zones, it needs to consult the file above. So, let's look at named.conf and see what it does.

To give you a sort of context, notice that third line from the top lists the directory we've already mentioned previously. If you recall, we said that the configuration file on Debian lived in /etc/bind. The third line from the top of named.conf let's you know where you can find named.conf. That's important because different distributions of Linux put named.conf in different places.

Above the third line, you can see that the file actually starts with what we call the options statement. It contains two lines. The first shows the location of named.pid, which simply contains the process ID of the running named daemon. That may seem like an odd snippet of information to store, but it's very useful for utilities or applications that have to kill and/or restart named.

More significantly, the options statement also defines the directory containing named and files related to its running.

The zone statement identifies the location of several files containing configuration information. (The first two typically do not need altering and appear when you install BIND). You will have to add the reverse and primary zone files, the later of which contains the domain database. named.conf needs the following files designated:

Hints file

This file contains the names and addresses of the root servers on the Internet. The root servers know where the authoritative servers for your domain reside. The first points to the Top Level Domain (com, net, org, etc.) and the next is the authoritative server for your domain.

Local host file

Name servers are the masters of their own loopback domain (127.0.0.1). The point of creating local zone files for each aspect of your localhost is to reduce traffic and allow the same software to work on your system as it does on the network. Reverse zone file

This file maps IP addresses to hosts. It's a reverse image of the zone master or primary zone file. You can recognize a reverse zone file because it has the extension in-addr.arpa.

Primary Zone file

This file, sometimes called the domain database, defines most of the information needed to resolve queries about the domain you administer. It does not come pre-configured when you install BIND. Usually, you have to write this file from scratch or use one of the files accompanying BIND as a template.

The primary zone file maps names to IP addresses and provides information about the services offered by your computers to the Internet, including your web and FTP servers, email, name servers, etc.

Zone files use record classes so that other computers on the Internet can identify your domain and how it points to various resources. The main record classes include:

      SOA (start of authority)
       NS (name server)
        A (host name to address mapping)
      PTR (pointer, which maps addresses to names)
       MX (mail exchanger, which identifies a mail server in the domain) 
    CNAME (canonical name, which defines an alias for a host name in an A record)

It's not necessary to try to memorize or understand these record types at this point. We'll have an opportunity to use them as we begin to write example primary and reverse zone files.

Tomorrow, we'll start with a primary zone file and dissect it so that you can see how these records work. Just remember that BIND runs a daemon called named or NAME-DEE and it has a configuration file called named.conf. In turn, named.conf points to configuration files that named uses to do its job. Our job will consist of making sure we format the records coherently.
__________________________


Special Magazine Offer -- Free Gift with Subscription
Receive a free digital copy of Linux Journal's System Administration Special Edition as well as instant online access to current and past issues. CLICK HERE for offer

Linux Journal: delivering readers the advice and inspiration they need to get the most out of their Linux systems since 1994.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
Anonymous's picture

this is the best article

On July 24th, 2006 Anonymous (not verified) says:

this is the best article explaining from the start of BIND and if any one want to manage BIND using BIND Web interface or GUI tools it is very easy for everyone to restart or configuring zone files

Laszlo molnar's picture

The article tells: "The

On July 26th, 2006 Laszlo molnar (not verified) says:

The article tells: "The third line from the top of named.conf let's you know where you can find named.conf."

According to the manual:
directory
The working directory of the server. Any non-absolute
pathnames in the configuration file will be taken as
relative to this directory. ...

"named.conf" is not neccessarily is in the folder where "directory" points to. What matters is how you start the daemon. You should check with the command "ps" whether it is started with an alternate configuration file.

Laszlo Molnar

Anonymous's picture

indeed

On July 25th, 2006 Anonymous (not verified) says:

indeed good article to basic questions,

but like he said to register a domain you need nameserver

lets say i want to register foo.com
to what nameservers i will point since i want to control dns

Anonymous's picture

You will point to your own

On July 25th, 2006 Anonymous (not verified) says:

You will point to your own nameservers. you do this through your domain registrar. Typically they have a form that asks for your server names and IPs:

ns1.foo.com 12.34.56.78
ns2.foo.com 12.34.56.79

Anonymous's picture

He is right, most domain

On August 14th, 2007 Anonymous (not verified) says:

He is right, most domain registrars have it in their cp panel to access and point your name servers to different entities. This should work in getting BIND up and running

Anonymous's picture

can nameservers be VH

On July 25th, 2006 Anonymous (not verified) says:

can named servers be virtual host.

on your response, i would have to configure my dns before registering?
correct?

Post new comment

Please note that comments may not appear immediately, so there is no need to repost your comment.
The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <pre> <ul> <ol> <li> <dl> <dt> <dd> <i> <b>
  • Lines and paragraphs break automatically.

More information about formatting options

Newsletter

Each week Linux Journal editors will tell you what's hot in the world of Linux. You will receive late breaking news, technical tips and tricks, and links to in-depth stories featured on www.linuxjournal.com.
Sign up for our Email Newsletter

Tech Tip Videos

From the Magazine

August 2009, #184

If you're a culinary type you've probably heard of Pickled Capers. This month, we present you with an even tastier treat: Kerneled Kapers. That's right Linux so good that you can eat it for dinner. We've got two articles about kernel scheduling: one about real time scheduling and the other about the Completely Fair Scheduler which appeared in Linux 2.6.23. We also have an article on the new Ksplice technology that appeared on the scene just recently. Also in this issue: find out how to make root unprivileged.


And if Kapers aren't your cup of tea we have our usual buffet of articles: eyeOS which allows you to create your own cloud based desktops, using fixtures and factories with Rails, more on secure Squids, a review of the long awaited KOffice 2.0, Longomatch, and Kanatest.


But don't leave before we serve up the "piece de resistance": Point/Counterpoint on Twitter.


Apologies to Chef Marcel for borrowing his shtick.





Read this issue