0cd02aa18f
- fix bug 181730: fix creation of named user & gid - fix bug 177595: handle case where $ROOTDIR is a link in initscript - fix bug 177001: bind-config creates symlinks OK now - fix bug 176388: named.conf is now never replaced by any RPM - fix bug 176246: remove unecessary creation of rpmsave links - fix bug 174925: no replacement of named.conf - fix bug 173963: existing named.conf never modified - major .spec file cleanup
49 lines
871 B
Plaintext
49 lines
871 B
Plaintext
// named.rfc1912.zones:
|
|
//
|
|
// Provided by Red Hat bind-config package
|
|
//
|
|
// ISC BIND named zone configuration for zones recommended by
|
|
// RFC 1912 section 4.1 : localhost TLDs and address zones
|
|
//
|
|
|
|
zone "." IN {
|
|
type hint;
|
|
file "named.ca";
|
|
};
|
|
|
|
zone "localdomain" IN {
|
|
type master;
|
|
file "localdomain.zone";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "localhost" IN {
|
|
type master;
|
|
file "localhost.zone";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "0.0.127.in-addr.arpa" IN {
|
|
type master;
|
|
file "named.local";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {
|
|
type master;
|
|
file "named.ip6.local";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "255.in-addr.arpa" IN {
|
|
type master;
|
|
file "named.broadcast";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "0.in-addr.arpa" IN {
|
|
type master;
|
|
file "named.zero";
|
|
allow-update { none; };
|
|
};
|