mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 09:52:27 -04:00
allow "forward" and "forwarders" in static-stub
3363. [bug] Need to allow "forward" and "fowarders" options in static-stub zones; this had been overlooked. [RT #30482]
This commit is contained in:
parent
2a54e4a9bd
commit
85705b4b5a
3 changed files with 15 additions and 2 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,3 +1,7 @@
|
|||
3363. [bug] Need to allow "forward" and "fowarders" options
|
||||
in static-stub zones; this had been overlooked.
|
||||
[RT #30482]
|
||||
|
||||
3362. [bug] Setting some option values to 0 in named.conf
|
||||
could trigger an assertion failure on startup.
|
||||
[RT #27730]
|
||||
|
|
|
|||
|
|
@ -88,6 +88,13 @@ view "second" {
|
|||
file "yyy";
|
||||
update-policy local;
|
||||
};
|
||||
zone "example2" {
|
||||
type static-stub;
|
||||
forward only;
|
||||
forwarders {
|
||||
10.53.0.4;
|
||||
};
|
||||
};
|
||||
dnssec-lookaside "." trust-anchor "dlv.isc.org.";
|
||||
dnssec-validation auto;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1347,8 +1347,10 @@ check_zoneconf(const cfg_obj_t *zconfig, const cfg_obj_t *voptions,
|
|||
{ "also-notify", MASTERZONE | SLAVEZONE },
|
||||
{ "dialup", MASTERZONE | SLAVEZONE | STUBZONE | STREDIRECTZONE },
|
||||
{ "delegation-only", HINTZONE | STUBZONE | DELEGATIONZONE },
|
||||
{ "forward", MASTERZONE | SLAVEZONE | STUBZONE | FORWARDZONE },
|
||||
{ "forwarders", MASTERZONE | SLAVEZONE | STUBZONE | FORWARDZONE },
|
||||
{ "forward", MASTERZONE | SLAVEZONE | STUBZONE |
|
||||
STATICSTUBZONE | FORWARDZONE },
|
||||
{ "forwarders", MASTERZONE | SLAVEZONE | STUBZONE |
|
||||
STATICSTUBZONE | FORWARDZONE },
|
||||
{ "maintain-ixfr-base", MASTERZONE | SLAVEZONE | STREDIRECTZONE },
|
||||
{ "max-ixfr-log-size", MASTERZONE | SLAVEZONE | STREDIRECTZONE },
|
||||
{ "notify-source", MASTERZONE | SLAVEZONE },
|
||||
|
|
|
|||
Loading…
Reference in a new issue