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

198 AppendixB
BIND 8 Configuration File
};
zone “master.demo.zone” {
type master; // what used to be called “primary”
file “master.demo.zone”;
check-names fail;
allow-update { none; };
allow-transfer { any; };
allow-query { any; };
// notify yes; // send NOTIFY messages for this
// zone? The global option is used
// if “notify” is not specified
// here.
also-notify { }; // don’t notify any nameservers other
// than those on the NS list for this
// zone
};
zone “slave.demo.zone” {
type slave; // what used to be called “secondary”
file “slave.demo.zone”;
masters {
1.2.3.4; // where to zone transfer from
5.6.7.8;
};
check-names warn;
allow-update { none; };
allow-transfer { any; };
allow-query { any; };
max-transfer-time-in 120; // if not set, global option is used.
also-notify { }; // don’t notify any nameservers other
// than those on the NS list for this
// zone
};
zone “stub.demo.zone” {
type stub; // stub zones are like slave zones,
// except that only the NS records
// are transferred.
file “stub.demo.zone”;
masters {
1.2.3.4; // where to zone transfer from
5.6.7.8;
};
check-names warn;
allow-update { none; };
allow-transfer { any; };
allow-query { any; };
max-transfer-time-in 120; // if not set, global option is used.
};
zone “.” {
type hint; // used to be specified w/ “cache”
file “cache.db”;
};