Configuring and Managing MPE/iX Internet Services (MPE/iX 6.5)

124 Chapter8
DNS BIND/iX
Server Configuration File named.conf
Advanced users may need to refer to Appendix B , “BIND 8
Configuration File,” for a complete list of directives that can be
configured for BIND 8. The following is the template
/BIND/PUB/etc/named.conf file:
options {
directory “/BIND/PUB/etc”;
// The following is the IP address of the MPE/iX system that is running
NAMED.
// YOU MUST CHANGE THIS TO BE YOUR OWN IP ADDRESS!
listen-on { nnn.nnn.nnn.nnn; ];
};
/*** List any servers here that you communicate with that are also running
BIND 8.1 or greater. Replace ALL OF THESE with your own servers, if any. ***/
server nnn.nnn.nnn.nnn {
transfer-format many-answers;
};
// Defines the root. From ftp://rs/internic.net/domain/named.root.
zone “.” {
type master;
file “zone.hint”
};
// DNS optimiation tricks for “special” addresses. You will need to
// edit all of these files to specify the hostname of your own
nameserver
// and the e-mail address of the DNS maintainer.
zone “0.0.127.in-addr.arpa” {
type master;
file “zone.127.0.0”;
};
zone “0.in-addr.arpa” {
type master;
file “zone.bogus.0”;
};
zone “255.in-addr.arpa” {
type master;
file “zone .bogus.255”;
};
// A master zone. Substitute one of your own zones here.
// Slave zones. Replace ALL OF THESE with your own.
zone “csy.hp.com” {
type slave;
file “zone.slave”;
master { nnn.nnn.nnn.nnn; nnn.nnn.nnn.nnn; }