24 lines
400 B
Plaintext
24 lines
400 B
Plaintext
controls { /* empty */ };
|
|
options {
|
|
query-source address 10.53.0.2;
|
|
notify-source 10.53.0.2;
|
|
transfer-source 10.53.0.2;
|
|
port 5300;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.2; };
|
|
listen-on-v6 { none; };
|
|
heartbeat-interval 2;
|
|
recursion no;
|
|
};
|
|
zone "." {
|
|
type hint;
|
|
file "hint";
|
|
};
|
|
zone "example." {
|
|
type stub;
|
|
dialup notify;
|
|
notify no;
|
|
file "example.bk";
|
|
// masters { 10.53.0.1; };
|
|
};
|