Files
provisioning/roles/ns.xai-corp.net/templates/named.conf.default-zones.j2
richard c26a0e2d21 update requirements.yml and ansible.config
start home.xai-corp.net and home02.xai-corp.net playbooks
2016-12-12 07:23:37 -05:00

31 lines
667 B
Django/Jinja

// prime the server with knowledge of the root servers
view "defaults" {
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
zone "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};
};