mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-25 11:38:29 +00:00
Contrary to what the documentation states, the "server-addresses" static-stub zone option does not accept custom port numbers. Fix the configuration type used by the "server-addresses" option to ensure documentation matches source code. Remove a check_zoneconf() test which is unnecessary with this fix in place.
12 lines
483 B
Plaintext
12 lines
483 B
Plaintext
zone <string> [ <class> ] {
|
|
type static-stub;
|
|
allow-query { <address_match_element>; ... };
|
|
allow-query-on { <address_match_element>; ... };
|
|
forward ( first | only );
|
|
forwarders [ port <integer> ] [ dscp <integer> ] { ( <ipv4_address> | <ipv6_address> ) [ port <integer> ] [ dscp <integer> ]; ... };
|
|
max-records <integer>;
|
|
server-addresses { ( <ipv4_address> | <ipv6_address> ); ... };
|
|
server-names { <string>; ... };
|
|
zone-statistics ( full | terse | none | <boolean> );
|
|
};
|