mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 07:49:59 -04:00
The removal was done with the following commands:
find bin/tests/system/ -type f -name "*.conf" -exec sed -i '1,12d; 13{/^$/d}' {} +
find bin/tests/system/ -type f -name "*.conf.*" -exec sed -i '1,12d; 13{/^$/d}' {} +
24 lines
419 B
Django/Jinja
24 lines
419 B
Django/Jinja
key rndc_key {
|
|
secret "1234abcd8765";
|
|
algorithm @DEFAULT_HMAC@;
|
|
};
|
|
|
|
controls {
|
|
inet 10.53.0.2 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
|
|
};
|
|
|
|
options {
|
|
port @PORT@;
|
|
pid-file "named.pid";
|
|
listen-on { 10.53.0.2; };
|
|
listen-on-v6 { fd92:7065:b8e:ffff::2; };
|
|
recursion yes;
|
|
dnssec-validation no;
|
|
query-source none;
|
|
query-source-v6 fd92:7065:b8e:ffff::2;
|
|
};
|
|
|
|
zone "." {
|
|
type hint;
|
|
file "root.hint";
|
|
};
|