mainly alerting improvements
[distro-setup] / machine_specific / vps / filesystem / etc / bind / named.conf.local
1 //
2 // Do any local configuration here
3 //
4
5 // Consider adding the 1918 zones here, if they are not used in your
6 // organization
7 // ian: ok. uncommented. 1918 zones are private ip ranges.
8 include "/etc/bind/zones.rfc1918";
9
10 # based on random internet tutorials, then reading
11 # file:///usr/share/doc/bind9-doc/arm/Bv9ARM.ch06.html#dynamic_update_policies
12 zone "b8.nz" {
13 type master;
14 file "/var/lib/bind/db.b8.nz";
15 key-directory "/var/lib/bind";
16 auto-dnssec maintain;
17 inline-signing yes;
18 update-policy {
19 // allow updating almost anything in the zone or subdomains.
20 grant b8.nz. subdomain b8.nz.;
21 };
22 };
23 # for dynamic ip updates
24 include "/etc/bind/key.b8.nz";
25
26 zone "iankelling.org" {
27 type master;
28 file "/var/lib/bind/db.iankelling.org.signed";
29 };
30
31 zone "zroe.org" {
32 type master;
33 file "/var/lib/bind/db.zroe.org.signed";
34 };
35
36 zone "expertpathologyreview.com" {
37 type master;
38 file "/var/lib/bind/db.expertpathologyreview.com.signed";
39 };
40
41 zone "amnimal.ninja" {
42 type master;
43 file "/var/lib/bind/db.amnimal.ninja.signed";
44 };
45
46 zone "9.c.0.f.1.f.1.0.8.a.b.0.1.0.0.2.ip6.arpa" {
47 type master;
48 file "/var/lib/bind/db.9.c.0.f.1.f.1.0.8.a.b.0.1.0.0.2.ip6.arpa";
49 };
50
51 zone "d.9.0.f.1.f.1.0.8.a.b.0.1.0.0.2.ip6.arpa" {
52 type master;
53 file "/var/lib/bind/db.d.9.0.f.1.f.1.0.8.a.b.0.1.0.0.2.ip6.arpa";
54 };