1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
|
.. highlight:: none
.. _Migration:
*********
Migration
*********
.. _Upgrade 2.4.x to 2.5.x:
Upgrade 2.4.x to 2.5.x
======================
This chapter describes some steps necessary after upgrading Knot DNS from
version 2.4.x to 2.5.x.
.. _Building changes:
Building changes
----------------
The ``--enable-dnstap`` configure option now enables the dnstap support in
:doc:`kdig<man_kdig>` only! To build the dnstap query module, ``--with-module-dnstap``
have to be used.
Since Knot DNS version 2.5.0 each query module can be configured to be:
- disabled: ``--with-module-``\ MODULE_NAME\ ``=no``
- embedded: ``--with-module-``\ MODULE_NAME\ ``=yes``
- external: ``--with-module-``\ MODULE_NAME\ ``=shared`` (excluding
``dnsproxy`` and ``onlinesign``)
The ``--with-timer-mapsize`` configure option was replaced with the runtime
``template.max-timer-db-size`` configuration option.
.. _KASP DB migration:
KASP DB migration
-----------------
Knot DNS version 2.4.x and earlier uses JSON files to store DNSSEC keys metadata,
one for each zone. 2.5.x versions store those in binary format in a LMDB, all zones
together. The migration is possible with the
`pykeymgr <https://gitlab.nic.cz/knot/knot-dns/blob/2.6/src/utils/pykeymgr/pykeymgr.in>`_
script::
$ pykeymgr -i path/to/keydir
The path to KASP DB directory is configuration-dependent, usually it is the ``keys``
subdirectory in the zone storage.
In rare installations, the JSON files might be spread across more directories. In such
case, it is necessary to put them together into one directory and migrate at once.
.. _Configuration changes 2.5:
Configuration changes
---------------------
It is no longer possible to configure KASP DB per zone or in a non-default
template. Ensure just one common KASP DB configuration in the default
template.
As Knot DNS version 2.5.0 brings dynamically loaded modules, some modules
were renamed for technical reasons. So it is necessary to rename all
occurrences (module section names and references from zones or templates)
of the following module names in the configuration::
mod-online-sign -> mod-onlinesign
mod-synth-record -> mod-synthrecord
.. _Upgrade 2.5.x to 2.6.x:
Upgrade 2.5.x to 2.6.x
======================
Upgrading from Knot DNS version 2.5.x to 2.6.x is almost seamless.
.. _Configuration changes 2.6:
Configuration changes
---------------------
The ``dsa`` and ``dsa-nsec3-sha1`` algorithm values are no longer supported
by the :ref:`policy_algorithm` option.
The ``ixfr-from-differences`` zone/template option was deprecated in favor of
the :ref:`zone_zonefile-load` option.
.. _Upgrade 2.6.x to 2.7.x:
Upgrade 2.6.x to 2.7.x
======================
Upgrading from Knot DNS version 2.6.x to 2.7.x is seamless if no obsolete
configuration or module rosedb is used.
.. _Upgrade 2.7.x to 2.8.x:
Upgrade 2.7.x to 2.8.x
======================
Upgrading from Knot DNS version 2.7.x to 2.8.x is seamless.
However, if the previous version was migrated (possibly indirectly)
from version 2.5.x, the format of the keys stored in
Keys And Signature Policy Database
is no longer compatible and needs to be updated.
The easiest ways to update how keys are stored in KASP DB is to modify
with Keymgr version 2.7.x
some of each key's parameters in an undamaging way, e.g.::
$ keymgr example.com. list
$ keymgr example.com. set <keyTag> created=1
$ keymgr example.com. set <keyTag2> created=1
...
.. _Upgrade 2.8.x to 2.9.x:
Upgrade 2.8.x to 2.9.x
======================
Upgrading from Knot DNS version 2.8.x to 2.9.x is almost seamless but check
the following changes first.
Configuration changes
---------------------
- Imperfect runtime reconfiguration of :ref:`server_udp-workers`,
:ref:`server_tcp-workers`, and :ref:`server_listen`
is no longer supported.
- Replaced options (with backward compatibility):
.. csv-table::
:header: Old section, Old item name, New section, New item name
:widths: 35, 60, 35, 60
:ref:`server<Server section>` , ``tcp-reply-timeout`` [s] , :ref:`server<Server section>` , :ref:`server_tcp-remote-io-timeout` [ms]
:ref:`server<Server section>` , ``max-tcp-clients`` , :ref:`server<Server section>` , :ref:`server_tcp-max-clients`
:ref:`server<Server section>` , ``max-udp-payload`` , :ref:`server<Server section>` , :ref:`server_udp-max-payload`
:ref:`server<Server section>` , ``max-ipv4-udp-payload`` , :ref:`server<Server section>` , :ref:`server_udp-max-payload-ipv4`
:ref:`server<Server section>` , ``max-ipv6-udp-payload`` , :ref:`server<Server section>` , :ref:`server_udp-max-payload-ipv6`
:ref:`template<Template section>` , ``journal-db`` , :ref:`database<Database section>` , :ref:`database_journal-db`
:ref:`template<Template section>` , ``journal-db-mode`` , :ref:`database<Database section>` , :ref:`database_journal-db-mode`
:ref:`template<Template section>` , ``max-journal-db-size`` , :ref:`database<Database section>` , :ref:`database_journal-db-max-size`
:ref:`template<Template section>` , ``kasp-db`` , :ref:`database<Database section>` , :ref:`database_kasp-db`
:ref:`template<Template section>` , ``max-kasp-db-size`` , :ref:`database<Database section>` , :ref:`database_kasp-db-max-size`
:ref:`template<Template section>` , ``timer-db`` , :ref:`database<Database section>` , :ref:`database_timer-db`
:ref:`template<Template section>` , ``max-timer-db-size`` , :ref:`database<Database section>` , :ref:`database_timer-db-max-size`
:ref:`zone<Zone section>` , ``max-journal-usage`` , :ref:`zone<Zone section>` , :ref:`zone_journal-max-usage`
:ref:`zone<Zone section>` , ``max-journal-depth`` , :ref:`zone<Zone section>` , :ref:`zone_journal-max-depth`
:ref:`zone<Zone section>` , ``max-zone-size`` , :ref:`zone<Zone section>` , :ref:`zone_zone-max-size`
:ref:`zone<Zone section>` , ``max-refresh-interval`` , :ref:`zone<Zone section>` , :ref:`zone_refresh-max-interval`
:ref:`zone<Zone section>` , ``min-refresh-interval`` , :ref:`zone<Zone section>` , :ref:`zone_refresh-min-interval`
- Removed options (no backward compatibility):
- ``server.tcp-handshake-timeout``
- ``zone.request-edns-option``
- New default value for:
- :ref:`server_tcp-workers`
- :ref:`server_tcp-max-clients`
- :ref:`server_udp-max-payload`
- :ref:`server_udp-max-payload-ipv4`
- :ref:`server_udp-max-payload-ipv6`
- New DNSSEC policy option :ref:`policy_rrsig-pre-refresh` may affect
configuration validity, which is ``rrsig-refresh + rrsig-pre-refresh < rrsig-lifetime``
Miscellaneous changes
---------------------
- Memory use estimation via ``knotc zone-memstats`` was removed
- Based on `<https://tools.ietf.org/html/draft-ietf-dnsop-server-cookies>`_
the module :ref:`DNS Cookies<mod-cookies>` was updated to be interoperable
- Number of open files limit is set to 1048576 in upstream packages
.. _Upgrade 2.9.x to 3.0.x:
Upgrade 2.9.x to 3.0.x
======================
Knot DNS version 3.0.x is functionally compatible with 2.9.x with the following
exceptions.
ACL
---
Configuration option :ref:`acl_update-owner-name` is newly FQDN-sensitive.
It means that values ``a.example.com`` and ``a.example.com.`` are not equivalent.
Module synthrecord
------------------
:ref:`Reverse IPv6 address shortening<mod-synthrecord_reverse-short>` is enabled by default.
For example, the module generates::
dynamic-2620-0-b61-100--1.test. 400 IN AAAA 2620:0:b61:100::1
instead of::
dynamic-2620-0000-0b61-0100-0000-0000-0000-0001.test. 400 IN AAAA 2620:0:b61:100::1
Query module API change
-----------------------
The following functions require additional parameter (thread id – ``qdata->params->thread_id``)
on the second position::
knotd_mod_stats_incr()
knotd_mod_stats_decr()
knotd_mod_stats_store()
Building notes
--------------
- The embedded library *LMDB* is no longer part of the source code. Almost every
modern operating system has a sufficient version of this library.
- DoH support in kdig requires optional library *libnghttp2*.
- XDP support on Linux requires optional library *libbpf >= 0.0.6*. If not available,
an embedded library can be used via ``--enable-xdp=yes`` configure option.
.. _Upgrade 3.0.x to 3.1.x:
Upgrade 3.0.x to 3.1.x
======================
Knot DNS version 3.1.x is functionally compatible with 3.0.x with the following
exceptions.
Configuration changes
---------------------
- Automatic SOA serial incrementation (``zonefile-load: difference-no-serial``)
requires having full zone stored in the journal (``journal-content: all``).
This change is necessary for reliable operation.
- Replaced options (with backward compatibility):
.. csv-table::
:header: Old section, Old item name, New section, New item name
:widths: 40, 60, 40, 60
:ref:`server<Server section>`, ``listen-xdp``, :ref:`xdp<XDP section>`, :ref:`xdp_listen`
- Ignored obsolete options (with a notice log):
- ``server.max-ipv4-udp-payload``
- ``server.max-ipv6-udp-payload``
- ``server.max-udp-payload``
- ``server.max-tcp-clients``
- ``server.tcp-reply-timeout``
- ``zone.max-journal-depth``
- ``zone.max-journal-usage``
- ``zone.max-refresh-interval``
- ``zone.min-refresh-interval``
- ``zone.max-zone-size``
- ``template.journal-db``
- ``template.kasp-db``
- ``template.timer-db``
- ``template.max-journal-db-size``
- ``template.max-timer-db-size``
- ``template.max-kasp-db-size``
- ``template.journal-db-mode``
- Silently ignored obsolete options:
- ``server.tcp-handshake-timeout``
- ``zone.disable-any``
Zone backup and restore
-----------------------
The online backup format has changed slightly since 3.0 version. For zone-restore
from backups in the previous format, it's necessary to set the *-f* option.
Offline restore procedure of zone files from online backups is different than
what it was before. The details are described in :ref:`Data and metadata backup`.
Building notes
--------------
- The configure option ``--enable-xdp=yes`` has slightly changed its semantics.
It first tries to find an external library *libbpf*. If it's not detected,
the embedded one is used instead.
- The kxdpgun tool also depends on library *libmnl*.
Packaging
---------
Users who use module :ref:`geoip<mod-geoip>` or :ref:`dnstap<mod-dnstap>` might
need installing an additional package with the module.
.. _Upgrade 3.1.x to 3.2.x:
Upgrade 3.1.x to 3.2.x
======================
Knot DNS version 3.2.x is functionally compatible with 3.1.x with the following
exceptions.
Configuration changes
---------------------
- Default value for:
- :ref:`zone_journal-max-depth` was lowered to 20.
This change may trigger journal history merging.
- :ref:`policy_nsec3-iterations` was lowered to 0.
This change may trigger complete NSEC3 chain reconstruction!
- :ref:`policy_rrsig-refresh` is set to :ref:`policy_propagation-delay` + "zone maximum TTL".
This change affects effective RRSIG lifetime!
- New checks:
- :ref:`policy_rrsig-refresh` must be high enough to ensure all RRSIGs are
refreshed before their expiration.
- A notice log message is emitted if :ref:`policy_algorithm` is deprecated.
- Ignored obsolete option (with a notice log):
- ``server.listen-xdp``
Utilities:
----------
- :doc:`knotc<man_knotc>` prints simplified zones status by default. Use ``-e``
for full output.
- :doc:`keymgr<man_keymgr>` uses the brief key listing mode by default. Use ``-e``
for full output.
- :doc:`keymgr<man_keymgr>` parameter ``-d`` was renamed to ``-D``.
- :doc:`kjournalprint<man_kjournalprint>` parameter ``-c`` was renamed to ``-H``.
Packaging
---------
- Linux distributions Debian 9 and Ubuntu 16.04 are no longer supported.
- Packages for CentOS 7 are stored in a separate COPR repository
``cznic/knot-dns-latest-centos7``.
- Utilities :doc:`kzonecheck<man_kzonecheck>`, :doc:`kzonesign<man_kzonesign>`,
and :doc:`knsec3hash<man_knsec3hash>` are located in a new ``knot-dnssecutils``
package.
Python
------
- Compatibility with Python 2 was removed.
.. _Upgrade 3.2.x to 3.3.x:
Upgrade 3.2.x to 3.3.x
======================
There are some changes between Knot DNS versions 3.3.x and 3.2.x that should be
taken into consideration before upgrading.
Configuration changes
---------------------
- The configuration option ``xdp_quic-log`` has been replaced with a more general
logging option :ref:`log_quic`, which applies to both conventional QUIC and
QUIC over XDP.
Functionality
-------------
- Responses to forwarded DDNS requests are signed with the local TSIG key instead
of the remote one if the TSIG secret is known. To forward DDNS requests
signed with a locally unknown key, an ACL rule for the action ``update`` without
a key must be configured for the zone.
- Addresses for the remote which is considered the source of the NOTIFY are tried
in the order they are specified in the remote configuration, regardless of which
address the NOTIFY came from.
- Semantic checks don't allow DS record at non-delegation point.
- The ``Version:`` prefix has been removed from the ``status version`` control output.
- DNS over QUIC requires ``doq`` ALPN. The previous versions ``doq-i03`` and
``doq-i11`` are no longer supported.
XDP
---
The embedded library ``libbpf`` has been removed from the project, and an external
one is required for the XDP support. If ``libbpf`` is version 1.0 or higher,
an additional library ``libxdp`` is also required.
Query module API change
-----------------------
The function ``knotd_qdata_local_addr()`` only takes one parameter.
.. _Upgrade 3.3.x to 3.4.x:
Upgrade 3.3.x to 3.4.x
======================
There are the following changes between Knot DNS versions 3.4.x and 3.3.x.
DNSSEC
------
- DNSSEC validation fails if the remaining RRSIG validity is shorter than
the corresponding :ref:`policy_rrsig-refresh` value.
- SKR verification fails if the end of a DNSKEY RRSIG validity period doesn't
cover the next DNSKEY snapshot.
- If DNSSEC signing is enabled, the outbound request's EDNS expire value is
lowered to the earliest RRSIG expiration if it is higher.
Semantic checks
---------------
- Just one SOA record is required.
- Unified DNAME and CNAME semantic checks (see :ref:`Handling CNAME and DNAME-related updates`).
Configuration changes
---------------------
- The server no longer allows concurrent control zone and configuration transactions.
- The server no longer allows opening a zone transaction when a blocking command is running.
- Removed already ignored obsolete options:
- ``server.max-ipv4-udp-payload``
- ``server.max-ipv6-udp-payload``
- ``server.max-udp-payload``
- ``server.max-tcp-clients``
- ``server.tcp-handshake-timeout``
- ``server.tcp-reply-timeout``
- ``server.listen-xdp``
- ``xdp.quic-log``
- ``zone.max-journal-depth``
- ``zone.max-journal-usage``
- ``zone.max-refresh-interval``
- ``zone.min-refresh-interval``
- ``zone.max-zone-size``
- ``zone.disable-any``
- ``template.journal-db``
- ``template.kasp-db``
- ``template.timer-db``
- ``template.max-journal-db-size``
- ``template.max-timer-db-size``
- ``template.max-kasp-db-size``
- ``template.journal-db-mode``
Utilities
---------
- Changed defaults:
- :doc:`kdig<man_kdig>`: enabled ``+edns`` and ``+bufsize=1232``
- Removed legacy parameters:
- :doc:`keymgr<man_keymgr>`: ``--brief``
- :doc:`kjournalprint<man_kjournalprint>`: ``--no-color``
- :doc:`kjournalprint<man_kjournalprint>`: database specification without ``--dir``
- :doc:`kjournalprint<man_kcatalogprint>`: database specification without ``--dir``
Documentation
-------------
- Info pages are no longer supported.
Building notes
--------------
- A GCC or LLVM Clang compiler with C11 support is required.
- Minimum required *GnuTLS* version is 3.6.10.
- *Libidn* version 1 is no longer supported.
- *Liburcu* must be available via pkg-config.
- Linux distributions CentOS 7, Debian 10, and Ubuntu 18.04 are no longer supported.
.. _Upgrade 3.4.x to 3.5.x:
Upgrade 3.4.x to 3.5.x
======================
There are the following changes between Knot DNS versions 3.5.x and 3.4.x.
DNSSEC
------
- The default value of :ref:`policy_nsec3-salt-length` was lowered to 0,
which means no extra SHA-1 iterations are used. If the option value is not
explicitly set, zones that rely on the default will be re-signed upon upgrade.
Utilities
---------
- :doc:`kzonecheck<man_kzonecheck>`'s zone origin auto-detection now uses the owner
name of the first SOA record from the checked zone file. If the owner isn't
a FQDN, the zone file name (without possible **.zone** suffix) is used as
the initial zone origin.
- `knot-exporter`: the following metrics, labes, or units have been changed:
.. csv-table::
:header: Old metric (old labels), New metric (new labels), New unit
:delim: ;
``knot_memory_usage(section, type)``; ``knot_memory_usage(pid)``; ``bytes``
``knot_*(section, type)``; ``knot_stats_*(module, type)``;
``knot_*(section)``; ``knot_stats_*(module, type="")``;
``knot_*(zone, section, type)``; ``knot_zone_stats_*(zone, module, type)``;
``knot_*(zone, section)``; ``knot_zone_stats_*(zone, module, type="")``;
``knot_zone_stats_*(zone)``; ``knot_zone_status_*(zone)``;
``knot_zone_refresh(zone)``; ``knot_zone_refresh(zone)``; ``seconds``
``knot_zone_retry(zone)``; ``knot_zone_retry(zone)``; ``seconds``
``knot_zone_expiration(zone)``; ``knot_zone_expiration(zone)``; ``seconds``
.. _Knot DNS for BIND users:
Knot DNS for BIND users
=======================
.. _Automatic DNSSEC signing:
Automatic DNSSEC signing
------------------------
Migrating automatically signed zones from BIND to Knot DNS requires copying
up-to-date zone files from BIND, importing existing private keys, and updating
server configuration:
1. To obtain current content of the zone which is being migrated,
request BIND to flush the zone into the zone file: ``rndc sync
example.com``.
.. NOTE::
If dynamic updates (DDNS) are enabled for the given zone, you
might need to freeze the zone before flushing it. That can be done
similarly::
$ rndc freeze example.com
2. Copy the fresh zone file into the zones :ref:`storage<zone_storage>`
directory of Knot DNS.
3. Import all existing zone keys into the KASP database. Make sure that all
the keys were imported correctly::
$ keymgr example.com. import-bind path/to/Kexample.com.+013+11111
$ keymgr example.com. import-bind path/to/Kexample.com.+013+22222
$ ...
$ keymgr example.com. list
.. NOTE::
If the server configuration file or database is not at the default location,
add a configuration parameter (-c or -C). See :doc:`keymgr<man_keymgr>`
for more info about required access rights to the key files.
4. Follow :ref:`Automatic DNSSEC signing` steps to configure DNSSEC signing.
|