From: Pieter Lexis Date: Wed, 29 Apr 2020 08:06:16 +0000 (+0200) Subject: Report IPSECKEY X-Git-Tag: rec-4.4.0-beta1~52^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d46389522582137e40729fcd9f457fd1d74caab2;p=thirdparty%2Fpdns.git Report IPSECKEY --- diff --git a/docs/upgrading.rst b/docs/upgrading.rst index 1e7d7f84ea..683bdbcd6c 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -8,6 +8,15 @@ Please upgrade to the PowerDNS Authoritative Server 4.0.0 from 3.4.2+. See the `3.X `__ upgrade notes if your version is older than 3.4.2. +4.3.x to 4.4.0 +-------------- + +``IPSECKEY`` change on secondaries +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +The in-database format of the ``IPSECKEY`` has changed from 'generic' format to its specialized format. +It is recommended to re-transfer, using ``pdns_control retrieve ZONE``, all zones that have ``IPSECKEY`` or ``TYPE45`` records. + 4.2.x to 4.3.0 -------------- diff --git a/pdns/dnsrecords.cc b/pdns/dnsrecords.cc index 2f2268bf54..5d85ed1d03 100644 --- a/pdns/dnsrecords.cc +++ b/pdns/dnsrecords.cc @@ -632,6 +632,7 @@ void reportOtherTypes() RRSIGRecordContent::report(); DSRecordContent::report(); CDSRecordContent::report(); + IPSECKEYRecordContent::report(); SSHFPRecordContent::report(); CERTRecordContent::report(); NSECRecordContent::report();