mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 20:29: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}' {} +
14 lines
383 B
Text
14 lines
383 B
Text
acl "transferees" {};
|
|
remote-servers "stealthPrimaries" {127.0.0.1;};
|
|
remote-servers "publicSecondaries" {127.0.0.1;};
|
|
zone "example.net" {
|
|
type secondary;
|
|
key-directory "/var/lib/bind/example.net";
|
|
dnssec-policy default;
|
|
inline-signing no;
|
|
primaries { stealthPrimaries; };
|
|
notify explicit;
|
|
also-notify { publicSecondaries; };
|
|
allow-transfer { localhost; transferees; };
|
|
};
|
|
|