-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnamed.conf
60 lines (57 loc) · 1.34 KB
/
named.conf
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
options {
directory "/var/cache/bind";
listen-on { any; };
listen-on-v6 { any; };
allow-recursion {
none;
};
allow-transfer {
none;
};
allow-update {
none;
};
};
# generated with rndc-confgen
key octodns.exxampled.com. {
algorithm hmac-sha256;
secret "vZew5TtZLTZKTCl00xliGt+1zzsuLWQWFz48bRbPnZU=";
};
zone "exxampled.com." {
type master;
file "/var/lib/bind/db.exxampled.com";
notify explicit;
allow-transfer { key octodns.exxampled.com.; };
allow-update { key octodns.exxampled.com.; };
};
# logging
logging {
channel stdout {
stderr;
severity info;
print-category no;
print-severity no;
print-time yes;
};
category security { stdout; };
category dnssec { stdout; };
category default { stdout; };
category queries { stdout; };
category client { stdout; };
category config { stdout; };
category database { stdout; };
category default { stdout; };
category dispatch { stdout; };
category dnssec { stdout; };
category general { stdout; };
category lame-servers { stdout; };
category network { stdout; };
category notify { stdout; };
category queries { stdout; };
category resolver { stdout; };
category security { stdout; };
category unmatched { stdout; };
category update { stdout; };
category xfer-in { stdout; };
category xfer-out { stdout; };
};