-
Notifications
You must be signed in to change notification settings - Fork 0
/
named.conf.1
91 lines (81 loc) · 2.62 KB
/
named.conf.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
options {
query-source address 10.53.0.1;
notify-source 10.53.0.1;
transfer-source 10.53.0.1;
port 53;
pid-file "named.pid";
listen-on { 10.53.0.1; };
directory "/var/named1/";
key-directory "keys";
recursion no;
notify no;
serial-update-method date;
};
key rndc_key {
secret "1234abcd8765";
algorithm hmac-sha256;
};
controls {
inet 10.53.0.1 port 953 allow { any; } keys { rndc_key; };
};
dnssec-policy "csk" {
keys {
csk key-directory lifetime unlimited algorithm 13;
};
cdnskey no;
cds-digest-types { };
};
dnssec-policy "ksk-zsk" {
keys {
ksk key-directory lifetime unlimited algorithm 13;
zsk key-directory lifetime unlimited algorithm 13;
};
cdnskey no;
cds-digest-types { };
};
key server1 {
algorithm hmac-sha256;
secret "1234abcd8765";
};
key server2 {
algorithm hmac-sha256;
secret "abcd87651234";
};
key server3 {
algorithm hmac-sha256;
secret "87651234abcd";
};
zone "default.bind9.multisigner.example.nl." {
type primary;
file "db/default.bind9.multisigner.example.nl.db";
dnssec-policy csk;
update-policy {
grant server1. name default.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
grant server2. name default.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
grant server3. name default.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
};
//checkds yes;
};
zone "inline-signing.bind9.multisigner.example.nl." {
type primary;
file "db/inline-signing.bind9.multisigner.example.nl.db";
dnssec-policy csk;
inline-signing yes;
update-policy {
grant server1. name inline-signing.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
grant server2. name inline-signing.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
grant server3. name inline-signing.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
};
//checkds yes;
};
zone "ksk-zsk.bind9.multisigner.example.nl." {
type primary;
file "db/ksk-zsk.bind9.multisigner.example.nl.db";
dnssec-policy ksk-zsk;
update-policy {
grant server1. name ksk-zsk.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
grant server2. name ksk-zsk.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
grant server3. name ksk-zsk.bind9.multisigner.example.nl. DNSKEY CDS CDNSKEY CSYNC NS;
};
//checkds yes;
};