User guide

dhcpd Files DNS Configuration File
AlliedView NMS Administration Guide (Appendices)
13-18
13.2.3 DNS Configuration File
options {
allow-transfer { 10.3.0.5; };
directory "/etc/named.d/";
/* 10.3.0.5 is the redundant DNS (slave)
* 10.4.0.5 is the primary DNS
* 10.3.0.2 and 166.163.128.5 are two DHCP servers
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
# Use with the following in named.conf, adjusting the allow list as needed:
key "rndc-key" {
algorithm hmac-md5;
secret "VBd+VWbItNu5ZtKJbRKgqQ==";
};
controls {
inet 0.0.0.0 port 953
allow {127.0.0.1;} keys{"rndc-key";};
};
acl dhcp-srvr {10.3.0.2;166.163.128.5 ;
logging {
channel normal_logs {
severity info; // level 3 debugging to file
file "/var/log/named"; // /var/adm/named
print-time yes; // timestamp log entries
print-category yes; // print category name
print-severity yes; // print severity level
};
category default \{ normal_logs; };
};
/**/
/*DDNS STUFF*/
/**/
/*VOICE REVERSE LOOKUP DDNS*/
zone "0.48.10.in-addr.arpa." {
type master;
allow-update { dhcp-srvr; };
file "ddns/10.48.0.ndb";
};
zone 1.85.10/.in-addr.arpa." {
type master;
allow-update { dhcp-srvr; };
file "ddns/10.85.1.ndb";
};
zone "1.48.10.in-addr.arpa." {
type master;
allow-update { dhcp-srvr; };
file "ddns/10.48.1.ndb";
};
zone "2.48.10.in-addr.arpa." {
type master;
allow-update { dhcp-srvr; };
file "ddns/10.48.2.ndb";
};
zone "3.48.10.in-addr.arpa." {
type master;
allow-update { dhcp-srvr; };
file "ddns/10.48.3.ndb";
};
zone "4.48.10.in-addr.arpa." {
type master;
allow-update { dhcp-srvr; };
file "ddns/10.48.4.ndb";
};
zone "5.48.10.in-addr.arpa." {
type master;
allow-update { dhcp-srvr; };
file "ddns/10.48.5.ndb";
};