mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Add a named acl example
This commit is contained in:
parent
a8b55992a8
commit
3dee62cfa5
1 changed files with 5 additions and 1 deletions
|
|
@ -23,6 +23,10 @@ options {
|
|||
minimal-responses no;
|
||||
};
|
||||
|
||||
acl named-acl {
|
||||
any;
|
||||
};
|
||||
|
||||
key rndc_key {
|
||||
secret "1234abcd8765";
|
||||
algorithm hmac-sha256;
|
||||
|
|
@ -67,7 +71,7 @@ zone "max-ttl.nil" {
|
|||
file "max-ttl.db";
|
||||
max-zone-ttl 300;
|
||||
check-integrity no;
|
||||
allow-update { any; };
|
||||
allow-update { named-acl; };
|
||||
allow-transfer { any; };
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue