Debian Clusters for Education and Research: The Missing Manual

3 IP Ranges Cluster named.conf.local

From Debian Clusters

Revision as of 21:46, 2 July 2007 by Kristina (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This is an example of /etc/bind/named.conf.local file from a nameserver on a cluster running over three different internal networks whose domain names are gig1.loc, gig2.loc, and fe0.loc.

This is part of the Name Service: DNS and BIND page.

zone "gig1.loc" {
        type master;
        file "/etc/bind/db.gig1.loc";
};


zone "gig2.loc" {
        type master;
        file "/etc/bind/db.gig2.loc";
};

zone "fe0.loc" {
        type master;
        file "/etc/bind/db.fe0.loc";
};

zone "0.16.172.in-addr.arpa" {
        type master;
        file "/etc/bind/db.0.16.172";
};

zone "0.0.10.in-addr.arpa" {
        type master;
        file "/etc/bind/db.0.0.10";
};

zone "10.168.192.in-addr.arpa" {
        type master;
        file "/etc/bind/db.10.168.192";
};
Personal tools