DNS Configuration and Management Manual (G06.27+, H06.05+, J06.03+)
DNS Server Configuration
HP DNS Configuration and Management Manual—529432-003
B-3
Master Server Configuration File
The fields used in this sample named.conf are (lines beginning with double slashes (//)
are comments):
directory
indicates the directory where data files are located.
zone
defines the zone for that domain.
type
defines the zone type.
Example B-2. named.conf Sample File
// type domain source file
//
//
option {
directory "/etc/dns-secure/named.data";
};
zone "0.0.127.IN.ADDR.ARPA" {
type master;
file "db.127.0.0";
};
zone "div.inc.com" {
type master;
file "db.div";
};
zone "8.19.15.IN.ADDR.ARPA" {
type master;
file "db.15.19.8";
};
zone "." {
type master;
file "db.root";
};










