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