From: Evan Hunt Date: Wed, 3 Oct 2018 22:32:25 +0000 (-0700) Subject: CHANGES, release notes X-Git-Tag: v9.15.1~9^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a363455b587789d6a75acae04403490d7eb6f4ad;p=thirdparty%2Fbind9.git CHANGES, release notes --- diff --git a/CHANGES b/CHANGES index c2eaf28334e..d9f060c3e27 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,20 @@ +5248. [func] To clarify the configuration of DNSSEC keys, + the "managed-keys" and "trusted-keys" options + have both been deprecated. The new "dnssec-keys" + statement can now be used for all trust anchors, + with the keywords "iniital-key" or "static-key" + to indicate whether the configured trust anchor + should be used for initialization of RFC 5011 key + management, or as a permanent trust anchor. + + The "static-key" keyword will generate a warning if + used for the root zone. + + Configurations using "trusted-keys" or "managed-keys" + will continue to work with no changes, but will + generate warnings in the log. In a future release, + these options will be marked obsolete. [GL #6] + 5247. [cleanup] The 'cleaning-interval' option has been removed. [GL !1731] diff --git a/doc/arm/notes.xml b/doc/arm/notes.xml index 28da1f77534..7bd9f039158 100644 --- a/doc/arm/notes.xml +++ b/doc/arm/notes.xml @@ -138,9 +138,29 @@ - When trusted-keys and - managed-keys were both configured for the - same name, or when trusted-keys was used to + The new dnssec-keys statement can now be + used to configure all DNSSEC trust anchors. The older + managed-keys statement is a synonym for + dnssec-keys, retained for backward + compatibility. Both statements can now use the + keyword static-key in place of + initial-key if it is necessary to + configure trusted keys for which RFC 5011 trust anchor + maintenance is not to be used. [GL #6] + + + + + named will now log a warning if + a static key is configured for the root zone, or if + any key is configured for "dlv.isc.org", which has been shut + down. [GL #6] + + + + + When static and managed DNSSEC keys were both configured for the + same name, or when a static key was used to configure a trust anchor for the root zone and dnssec-validation was set to the default value of auto, automatic RFC 5011 key @@ -180,6 +200,33 @@ +
Removed Features + + + + In order to clarify the configuration of DNSSEC keys, + the trusted-keys and + managed-keys statement has been + deprecated. The new dnssec-keys should + be used for both types of keys. + + + When used with the keyword initial-key, + dnssec-keys has the same behavior as + managed-keys, i.e., it configures + a trust anchor that is to be maintained via RFC 5011. + + + When used with the new keyword static-key, it + has the same behavior as trusted-keys, + configuring a permanent trust anchor that will not automatically + be updated. This usage is not recommended for the root key. + [GL #6] + + + +
+
Bug Fixes