blob: f399844e71f2d55e74b2560ebaa03289ed8142ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
options {
query-source address 10.53.0.1;
port 5300;
directory ".";
pid-file "named.pid";
listen-on { 10.53.0.1; };
listen-on-v6 {none;};
recursion no;
notify yes;
};
zone "." {
type master;
file "root.db";
};
zone "changing." {
type master;
file "changing.db";
};
include "zones.conf";
|