the test server running in shutdown/resolver was not logging
any debug info, which made it difficult to diagnose test failures.
(cherry picked from commit cc7ceace7d)
35 lines
572 B
Plaintext
35 lines
572 B
Plaintext
logging {
|
|
channel basic {
|
|
file "named.run";
|
|
severity debug 999;
|
|
print-time yes;
|
|
};
|
|
category default { basic; };
|
|
};
|
|
key rndc_key {
|
|
secret "1234abcd8765";
|
|
algorithm hmac-sha256;
|
|
};
|
|
|
|
controls {
|
|
inet 10.53.0.3 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
|
|
};
|
|
|
|
options {
|
|
query-source address 10.53.0.3;
|
|
notify-source 10.53.0.3;
|
|
transfer-source 10.53.0.3;
|
|
port @PORT@;
|
|
listen-on { 10.53.0.3; };
|
|
pid-file "named.pid";
|
|
notify no;
|
|
dnssec-validation no;
|
|
allow-query { any; };
|
|
allow-recursion { any; };
|
|
};
|
|
|
|
zone "." {
|
|
type hint;
|
|
file "root.db";
|
|
};
|