blob: 1f58dacf89caad0a68f8c2662a0a8016ac34eb33 (
plain)
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
|
options {
directory "/var/bind";
pid-file "/var/run/named/named.pid";
};
zone "." IN {
type hint;
file "named.ca";
};
zone "randomdan.homeip.net" IN {
type slave;
masters { 192.168.0.3; };
};
zone "random.lan" IN {
type slave;
masters { 192.168.0.3; };
};
zone "randomdan.lan" IN {
type slave;
masters { 192.168.0.3; };
};
zone "localhost" IN {
type master;
file "pri/localhost.zone";
allow-update { none; };
notify no;
};
zone "0.168.192.in-addr.arpa" IN {
type slave;
masters { 192.168.0.3; };
};
zone "127.in-addr.arpa" IN {
type master;
file "pri/127.zone";
allow-update { none; };
notify no;
};
|