mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-06 23:40:25 -05: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.
(cherry picked from commit b324576858)
11 lines
490 B
Text
11 lines
490 B
Text
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 { <quoted_string>; ... };
|
|
zone-statistics ( full | terse | none | <boolean> );
|
|
};
|