22 lines
320 B
Plaintext
22 lines
320 B
Plaintext
options {
|
|
query-source address 10.53.0.3 port 5300;
|
|
port 5300;
|
|
directory ".";
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.3; };
|
|
recursion yes;
|
|
notify yes;
|
|
};
|
|
|
|
zone "." {
|
|
type hint;
|
|
file "root.hint";
|
|
};
|
|
|
|
zone "example" {
|
|
type slave;
|
|
masters { 10.53.0.2; };
|
|
allow-update { any; };
|
|
file "internal.bk";
|
|
};
|