TOPIC 9

Date: 4/2/2009
Doman Name Server (DNS)
Linux for Engineering and IT applications


named.conf for Master DNS

options { 
directory "/var/cache/bind"; 
  forwarders { 
    128.6.238.13; 
     }; 
     forward first;
};

include "/etc/bind/rndc.key";
controls {
     inet 127.0.0.1 port 955
     allow { 127.0.0.1; } keys { "rndc-key"; };
};

zone  "." {
        type hint;
        file  "/etc/bind/db.root";
};

zone "localhost" {
	type master;
	file "/etc/bind/localhost.zone";
};

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

zone "linux.class" {
        type master;
	file "pdm/linux.class";
};

zone "5.168.192.in-addr.arpa" {
        type master;
        file "pdm/192.168.5";
};




Take me to the Course Website