21 lines
284 B
Plaintext
21 lines
284 B
Plaintext
options {
|
|
query-source address 10.53.0.2;
|
|
port 5300;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.2; };
|
|
listen-on-v6 {none;};
|
|
recursion no;
|
|
notify yes;
|
|
};
|
|
|
|
zone "." {
|
|
type hint;
|
|
file "root.hint";
|
|
};
|
|
|
|
zone "example" {
|
|
type master;
|
|
file "example.db";
|
|
allow-update { any; };
|
|
};
|