2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-26 12:08:05 +00:00
bind/doc/private/options

41 lines
1.1 KiB
Plaintext
Raw Normal View History

Copyright (C) 2000 Internet Software Consortium.
See COPYRIGHT in the source root or http://isc.org/copyright.html for terms.
2000-08-22 04:53:04 +00:00
options {
...
[ allow-notify { address_match_list }; ]
[ notify-forward yes_or_no; ]
};
view "view_name" [ ( in | hs | hesiod | chaos ) ] {
...
[ allow-notify { address_match_list }; ]
[ notify-forward yes_or_no; ]
};
zone "zone_name" {
type slave;
...
[ allow-notify { address_match_list };]
[ notify-forward yes_or_no; ]
[ max-names integer; ]
2000-08-22 04:53:04 +00:00
};
allow-notify:
Accept notify messages which match this acl in addition to
the zone masters. Zone masters implicitly do not match.
notify-forward:
If 'yes' forward notifies which match 'allow-notify' to zone
masters. If 'no' accept the notify which match 'allow-notify'
as if it came from a master. Default 'no'.
max-names:
The maximum number of names allowed in a slave zone.
If an incoming zone transfer contains more than this
many names, the zone will be unloaded.
Also, the "masters" list for slave zones can contain per-master TSIG keys
using a syntax like "masters { 1.2.3.4 port 5555 key "foo." };".