Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
2c1f606
Add limited initial IXFR out support (AXFR fallback only) and a minim…
ximon18 Apr 28, 2026
5dd79aa
PoC IXFR-out.
ximon18 Apr 28, 2026
fd6c2f3
Merge branch 'main' into ixfr-out
ximon18 Apr 30, 2026
9421203
Clippy.
ximon18 Apr 30, 2026
5345a2b
De-clutter ixfr-out system test output.
ximon18 Apr 30, 2026
39b0b20
Save last serial and key tags in zone state.
Philip-NLnetLabs May 6, 2026
5c3c6cf
Switch to apex_remove and apex_extra.
Philip-NLnetLabs May 6, 2026
ce23145
Fmt.
Philip-NLnetLabs May 6, 2026
3987494
Merge branch 'main' into ixfr-out
ximon18 May 7, 2026
538cc28
Review feedback: Remove outdated TODO comment.
ximon18 May 7, 2026
ddfdc2e
Review feedback: Better log message.
ximon18 May 7, 2026
941bf19
Review feedback: Remove unnecessary braces.
ximon18 May 7, 2026
92da4ff
Review feedback: Log at wrong level.
ximon18 May 7, 2026
54de825
Review feedback: Errant period in comment.
ximon18 May 7, 2026
a7120d2
Review feedback: Added some fn RustDocs.
ximon18 May 7, 2026
87ff6a7
Extend IXFR-out system test to use TSIG too.
ximon18 May 7, 2026
c2d1a7b
FIX: system-test should pass the `with-tsig` input correctly to the i…
ximon18 May 8, 2026
cd989d1
(WIP) Extend the ixfr-out test to actually verify produced output.
ximon18 May 8, 2026
c733215
Add more logging of request handling w.r.t. ACL processing.
ximon18 May 8, 2026
4e48270
FIX: include loaded RRs in the IXFR out, not just signed RRs.
ximon18 May 8, 2026
570415c
Review feedback.
Philip-NLnetLabs May 8, 2026
f0f9ebb
Merge branch 'main' into ixfr-out
ximon18 May 8, 2026
d399f1d
Adjust test condition.
ximon18 May 8, 2026
cfd91be
Review feedback: signal upgrade to TCP on UDP IXFR request.
ximon18 May 8, 2026
01fac00
Review feedback: Duplicate spawn comment.
ximon18 May 8, 2026
7905990
Review feedback: Note the potential to use flat_map() to avoid a vec …
ximon18 May 8, 2026
02efdfc
Review feedback: Remove irrelevant comment.
ximon18 May 8, 2026
baf4c64
Verify more XFR outputs against expectations.
ximon18 May 8, 2026
8f95fd4
Review feedback: Move IXFR diff logging from TRACE to DEBUG level.
ximon18 May 11, 2026
3781eae
FIX: Also store signed-only diffs.
ximon18 May 11, 2026
8b52b2b
Ignore NOTIFY if the zone was sourced from a file.
ximon18 May 11, 2026
35b8d5b
Serve diffs from the loaded reviewer server too.
ximon18 May 11, 2026
4ed1029
Merge loaded-review and signed-review IXFR out RR selection code.
ximon18 May 11, 2026
8312b8b
Remove unnecessary Options.
ximon18 May 11, 2026
c877ffc
Add an incremental signing based IXFR-out system test.
ximon18 May 11, 2026
d2ec91f
Merge branch 'main' into ixfr-out
ximon18 May 12, 2026
06d4bf0
Add IXFR out review server tests, and fix a bug that was found.
ximon18 May 12, 2026
393fb4d
Typo correction.
ximon18 May 12, 2026
0c692c6
Remove system tests, they will be moved to a separate PR.
ximon18 May 12, 2026
c2fcd2f
Revert "Remove system tests, they will be moved to a separate PR."
ximon18 May 12, 2026
394b534
Review feedback: Return SERVFAIL instead of NOTAUTH for empty zone.
ximon18 May 12, 2026
1a3885b
Merge branch 'main' into ixfr-out
ximon18 May 12, 2026
b7ce437
Merge branch 'ixfr-out' into ixfr-out-system-tests
ximon18 May 12, 2026
1f47a28
Really remove the system tests.
ximon18 May 12, 2026
cb936e5
Remove change related to now removed system tests.
ximon18 May 12, 2026
7195745
I can't type...
ximon18 May 12, 2026
6f5f566
Review feedback: remove unnecessary step / temporary variable.
ximon18 May 12, 2026
10b717d
Enforce ACLs only on the publication server. (fixes #648)
ximon18 May 12, 2026
7bdc3ee
Query the transient diff at review servers. (fixes #652)
ximon18 May 12, 2026
cd14c9b
Remove unwanted changes in this branch.
ximon18 May 12, 2026
36eb372
Merge branch 'ixfr-out' into ixfr-out-system-tests
ximon18 May 12, 2026
8c31649
Merge branch 'main' into ixfr-out-system-tests
ximon18 May 12, 2026
586c4a9
Add missing test files.
ximon18 May 12, 2026
3305ff5
Add missing NSD config change.
ximon18 May 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Setup incremental signing to produce predictable outputs so that we can
# easily compare the generated zone against expected output.
#
# Enable sending of NOTIFY messages to the NSD secondary.
version = "v1"

[signer.denial]
type = "nsec"

[signer]
serial-policy = "counter"
signature-inception-offset = 0
signature-lifetime = 100
signature-remain-time = 90
signature-refresh-interval = 1

[key-manager.records]
dnskey.signature-inception-offset = 0
cds.signature-inception-offset = 0
dnskey.signature-lifetime = 10
cds.signature-lifetime = 10

[server.outbound]
# NSD secondary listens on port 1054.
send-notify-to = ["127.0.0.1:1054"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
example.test. 3600 IN SOA NS.example.test. mail.example.test. 1 60 60 3600 5
NEZU.example.test. 3600 IN A 133.69.136.5
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2 60 60 3600 5
JAIN-BB.example.test. 3600 IN A 133.69.136.4
JAIN-BB.example.test. 3600 IN A 192.41.197.2
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2 60 60 3600 5
JAIN-BB.example.test. 3600 IN A 133.69.136.4
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
JAIN-BB.example.test. 3600 IN A 133.69.136.3
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2 60 60 3600 5
JAIN-BB.example.test. 3600 IN A 133.69.136.4
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
JAIN-BB.example.test. 3600 IN A 133.69.136.3
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051202 60 60 3600 5
example.test. 3600 IN SOA NS.example.test. mail.example.test. 2026051200 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20200927122640 20200912122640 580 example.test. 0pT73Y+9z9QOkhX9UjRncbR6KyXgSqfxoCviwNhyN8BijAf3oJLVueZR zFNCkNkwg+goMKF9acAmRasdHmA/Dw==
example.test. 5 IN NSEC NEZU.example.test. NS SOA RRSIG NSEC DNSKEY
example.test. 5 IN RRSIG NSEC 15 2 5 20200927122640 20200912122640 580 example.test. ijL6SFOFQhPOfSQsTtV9I39aKWkJo6orbMXKcUQ6Woa/Ze+4q5oNK2R7 t8kgL8GTUySY3h3ljlA3SMp+zPjuBg==
NEZU.example.test. 3600 IN A 133.69.136.5
NEZU.example.test. 3600 IN RRSIG A 15 3 3600 20200927122640 20200912122640 580 example.test. eP6CmrELzTgLGgki4TDyqAjNzl535SfnIVNYkjlXV/sDh9iJcNg9QCl8 Na8LR4HRM6RIEe3pw4aZCZg0SqCFDw==
NEZU.example.test. 5 IN NSEC NS.example.test. A RRSIG NSEC
NEZU.example.test. 5 IN RRSIG NSEC 15 3 5 20200927122640 20200912122640 580 example.test. moXs8yosAlQXN+OQborKKgMp0wBmPVN/9nM0lx61ZK2FTRdXSbRi349q CIuQ6bi2SmOD8pfmgSFRSVOiFTmPDg==
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051201 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20200927122640 20200912122640 580 example.test. h7+N8Sk54Vq/GBLi4TaoLkkjgfXpNHJJ+otwK/0twaKXcywWJEHQKVge R7kBOu89QcWJTY5yUYTdoVCPw7aOCg==
example.test. 5 IN NSEC JAIN-BB.example.test. NS SOA RRSIG NSEC DNSKEY
example.test. 5 IN RRSIG NSEC 15 2 5 20200927122640 20200912122640 580 example.test. XUPmDdnhSI7IFMQWMJPewxEN6dqhwj2b/Q/ah74BCvS5GCv4p5Tu2HlY lkDVRE93xZW4mdvb+P8CMcBPLDeBBQ==
JAIN-BB.example.test. 3600 IN A 133.69.136.4
JAIN-BB.example.test. 3600 IN A 192.41.197.2
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20200927122640 20200912122640 580 example.test. SzU26WJGMDBev8rx6KcOrUreSX4hVp2jwbTKNWaHxvbzrdd0nDn52dw5 k1HTZsL2+aPuHBxGDYnUJYWlM1ZNDQ==
JAIN-BB.example.test. 5 IN NSEC NS.example.test. A RRSIG NSEC
JAIN-BB.example.test. 5 IN RRSIG NSEC 15 3 5 20200927122640 20200912122640 580 example.test. bjeFIBVSXyNxaGnWElV61PhoVo0/C7ztRmk/WLJ4R84tmBbIbSLN1bo0 1EkRvlbHJj/HNKHtUNZkGhDUe8SgAA==
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051201 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20200927122640 20200912122640 580 example.test. h7+N8Sk54Vq/GBLi4TaoLkkjgfXpNHJJ+otwK/0twaKXcywWJEHQKVge R7kBOu89QcWJTY5yUYTdoVCPw7aOCg==
JAIN-BB.example.test. 3600 IN A 133.69.136.4
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20200927122640 20200912122640 580 example.test. SzU26WJGMDBev8rx6KcOrUreSX4hVp2jwbTKNWaHxvbzrdd0nDn52dw5 k1HTZsL2+aPuHBxGDYnUJYWlM1ZNDQ==
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051202 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20200927122640 20200912122640 580 example.test. lw2qqnFjRO9k0FmtLHgcJPvzLPQidUMUW8Cx7l03eA6SxVVvfBr3nn5w sIfP4yw09HvKazQl10Xc47SfJNMKCw==
JAIN-BB.example.test. 3600 IN A 133.69.136.3
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20200927122640 20200912122640 580 example.test. xTVteJjlrzkL8U1vqPTE7mfOXjUrsnbdOiLOvjVJFeH20wV18HEjnHl8 PWsDtSVhvf9PemqDbjmjlP7HnPIjAA==
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051202 60 60 3600 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051202 60 60 3600 5
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051201 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20200927122640 20200912122640 580 example.test. h7+N8Sk54Vq/GBLi4TaoLkkjgfXpNHJJ+otwK/0twaKXcywWJEHQKVge R7kBOu89QcWJTY5yUYTdoVCPw7aOCg==
JAIN-BB.example.test. 3600 IN A 133.69.136.4
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20200927122640 20200912122640 580 example.test. SzU26WJGMDBev8rx6KcOrUreSX4hVp2jwbTKNWaHxvbzrdd0nDn52dw5 k1HTZsL2+aPuHBxGDYnUJYWlM1ZNDQ==
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051202 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20200927122640 20200912122640 580 example.test. lw2qqnFjRO9k0FmtLHgcJPvzLPQidUMUW8Cx7l03eA6SxVVvfBr3nn5w sIfP4yw09HvKazQl10Xc47SfJNMKCw==
JAIN-BB.example.test. 3600 IN A 133.69.136.3
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20200927122640 20200912122640 580 example.test. xTVteJjlrzkL8U1vqPTE7mfOXjUrsnbdOiLOvjVJFeH20wV18HEjnHl8 PWsDtSVhvf9PemqDbjmjlP7HnPIjAA==
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051202 60 60 3600 5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2026051202 60 60 3600 5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
example.test. IN DNSKEY 256 3 15 u7Tg6xf6Xgt0y+yUT8CQi1Nyy+tRopVHnZOFQz0zQ5A=
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Private-key-format: v1.2
Algorithm: 15 (ED25519)
PrivateKey: qCwt/EY9s1vGn0uj+4dlMQ5waOuFfIYpZZVrX43jdcc=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
notify-and-xfr-tsig.test. IN DNSKEY 256 3 15 0efFuDXcYUyhaTUWgir/RaWrzAJWAa58VuEF+391Taw=
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Private-key-format: v1.2
Algorithm: 15 (ED25519)
PrivateKey: Nx9EHQ1RBhngQMCRQUxMsiD2ybaWRCiEdcDlW5isKoo=
32 changes: 32 additions & 0 deletions integration-tests/ixfr-out/policies/with-tsig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Setup incremental signing to produce predictable outputs so that we can
# easily compare the generated zone against expected output.
#
# Enable sending of NOTIFY messages using TSIG authentication to the NSD
# secondary.
version = "v1"

[signer.denial]
type = "nsec"

[signer]
serial-policy = "keep"
signature-inception-offset = 0
signature-lifetime = 100000000

[key-manager.records]
dnskey.signature-inception-offset = 0
cds.signature-inception-offset = 0
dnskey.signature-lifetime = 100000000
cds.signature-lifetime = 100000000

[server.outbound]
# NSD secondary listens on port 1054.
send-notify-to = ["127.0.0.1:1054^tsig-key"]

# Require that the XFR request from the NSD secondary be signed with the
# specified TSIG key. Without this, a TSIG signed XFR request with a known
# key will still be accepted, but an XFR request that is NOT TSIG signed
# would also be accepted. In the test we verify that TSIG is required by
# Cascade by attempting a dig without the required TSIG key and showing
# that it fails.
accept-xfr-from = ["127.0.0.1^tsig-key"]
23 changes: 23 additions & 0 deletions integration-tests/ixfr-out/policies/without-tsig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Setup incremental signing to produce predictable outputs so that we can
# easily compare the generated zone against expected output.
#
# Enable sending of NOTIFY messages to the NSD secondary.
version = "v1"

[signer.denial]
type = "nsec"

[signer]
serial-policy = "keep"
signature-inception-offset = 0
signature-lifetime = 100000000

[key-manager.records]
dnskey.signature-inception-offset = 0
cds.signature-inception-offset = 0
dnskey.signature-lifetime = 100000000
cds.signature-lifetime = 100000000

[server.outbound]
# NSD secondary listens on port 1054.
send-notify-to = ["127.0.0.1:1054"]
17 changes: 17 additions & 0 deletions integration-tests/ixfr-out/reference-output/example.test.axfr
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20231114221320 20200913122640 580 example.test. iVSTY7uTaal9mRd44phalz9+oHlQtNDGPrQb4rvx3SkdTMT21l9PDCVL BxomZOiC51WhuQX+8FxSiLQcN+sfAw==
example.test. 3600 IN NS NS.example.test.
example.test. 3600 IN RRSIG NS 15 2 3600 20231114221320 20200913122640 580 example.test. hUD4MZwiVtXmHs+VueFIIrTUKYzWfOiNWm2nTR1gtsHTYnGjRrVEH/ic 3XeWDtKK0EedUE5iOKIEfQyYpaTLAg==
example.test. 3600 IN DNSKEY 256 3 15 u7Tg6xf6Xgt0y+yUT8CQi1Nyy+tRopVHnZOFQz0zQ5A=
example.test. 3600 IN RRSIG DNSKEY 15 2 3600 20231114221320 20200913122640 580 example.test. xGC6Pj6iN7tOjmhnLxmw4yQt7CCxCVouXvdB1P3lsQwN0iFfxgamkU7j EqIQcPpl20erYZ4XoWwtOdoeaXwtAg==
example.test. 5 IN NSEC JAIN-BB.example.test. NS SOA RRSIG NSEC DNSKEY
example.test. 5 IN RRSIG NSEC 15 2 5 20231114221320 20200913122640 580 example.test. P/YK6hlW/FOz43gKHqT4zoxRBdKFinx8GktOFDKuM+CWNyfBkjUZEI04 e3pa5/GUNcLKwRYAyWlNQnONPuusCQ==
NS.example.test. 3600 IN A 133.69.136.1
NS.example.test. 3600 IN RRSIG A 15 3 3600 20231114221320 20200913122640 580 example.test. EsKLrDOszkF8dHi6K8XYed5EbqU9fSlNO2+25pBO/qZk1nZm1RyDO15X KWoCf1jUUNsTR4sZkiu3OGV7oazcAA==
NS.example.test. 5 IN NSEC example.test. A RRSIG NSEC
NS.example.test. 5 IN RRSIG NSEC 15 3 5 20231114221320 20200913122640 580 example.test. hO9nn4+rxV08CFGkyXYzqGrRYNVOptJXZOaQLp6OSCMtte2iSQCq7UxJ p2KK2Q7aegqYKm6nNFoABmEYjZNlDQ==
JAIN-BB.example.test. 3600 IN A 133.69.136.3
JAIN-BB.example.test. 3600 IN A 192.41.197.2
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20231114221320 20200913122640 580 example.test. gPZnGC1IeAz1VtEvYEV9jMLw7kFhwPKX9kMtH32/xC7zyYNOfmcWqffZ xbobEY8c/oS9z4WIiK8k4uFi90rQCA==
JAIN-BB.example.test. 5 IN NSEC NS.example.test. A RRSIG NSEC
JAIN-BB.example.test. 5 IN RRSIG NSEC 15 3 5 20231114221320 20200913122640 580 example.test. /S/FZGh/OBQjwaVRPXJChDNkraEeD7qtVvIAa8db4bYmylI4KWOsH991 XDjye2aOv1+qPZxXIfzuX/3ER8JUBA==
73 changes: 73 additions & 0 deletions integration-tests/ixfr-out/reference-output/example.test.ixfr-1-3
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
; The input zone was based on RFC 1995 section 7. This diff should look
; similar to "the following incremental message" from that section, but with
; DNSSEC changes present as well. Our zone name differs to that of the example
; in RFC 1995 as we have to match the zone name configured in our secondary NSD
; instance.

; === Start of IXFR
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5

; [DIFF 1]: "NEZU.JAIN.AD.JP. is removed and JAIN-BB.JAIN.AD.JP. is added."
; [DIFF 1]: Records from serial 1 to be removed.

; Changing the SOA serial requires that we regenerate the RRSIG, so the old
; RRSIG has to be removed.
example.test. 3600 IN SOA NS.example.test. mail.example.test. 1 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20231114221320 20200913122640 580 example.test. TlLDWFfpydqCQjy1oDPBXugGWraoyvvk83KdTsiq441t0/hYKmL2mFEH 2nwJ6fcuZT2hLpvl9gwk3bJCXrNdAQ==

; Remove the A record and its associated RRSIG.
NEZU.example.test. 3600 IN A 133.69.136.5
NEZU.example.test. 3600 IN RRSIG A 15 3 3600 20231114221320 20200913122640 580 example.test. k232/sABO752SeaFp3jHkIJMUGlDA0NG+iQh1gpGVsi07XqDce+JzNX4 NiWmz06kVu+SKu1HFHNvGJ3enh5/DQ==

; Remove the A record from the NSEC type bitmap too, and also remove NSEC
; RRSIG as a new one will be added to replace it.
NEZU.example.test. 5 IN RRSIG NSEC 15 3 5 20231114221320 20200913122640 580 example.test. BCpvhGfe+GW4GnyJBBiqjMpiVZhCXv9ZMdh+RF7qf07V3jIePWJThAy2 yV5O4I7NhKgl6rqpOyv2+aSoW8tVDw==
NEZU.example.test. 5 IN NSEC NS.example.test. A RRSIG NSEC

; As the entire NEZU.example.test. label was removed this also requires the
; next owner name in the NSEC chain to be changed so we have to remove the
; current NSEC on the previous owner and its associated RRSIG, new ones will
; be added.
example.test. 5 IN NSEC NEZU.example.test. NS SOA RRSIG NSEC DNSKEY
example.test. 5 IN RRSIG NSEC 15 2 5 20231114221320 20200913122640 580 example.test. Hyrs5CKpXfCCNC9OK9+07Ei5qhRjQ9EQZK3up84BCwlflhOCGQppddzM eHK0Klgl0ywKaD7dfV2w3SWvP7vTDA==

; [DIFF 1]: Records to be added for serial 2.

; The new SOA with the updated SERIAL and its associated RRSIG.
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20231114221320 20200913122640 580 example.test. fYRpxmxV5HQl7wIPmuN+lrYQJalFuxi9iI0DX2/mM4kdh7q9GGutFTOZ kbdY4D+AZf25s08CZR1CPpd9o2Q3Dg==

; A changed NSEC and associated RRSIG due to changes in the NSEC chain.
example.test. 5 IN NSEC JAIN-BB.example.test. NS SOA RRSIG NSEC DNSKEY
example.test. 5 IN RRSIG NSEC 15 2 5 20231114221320 20200913122640 580 example.test. P/YK6hlW/FOz43gKHqT4zoxRBdKFinx8GktOFDKuM+CWNyfBkjUZEI04 e3pa5/GUNcLKwRYAyWlNQnONPuusCQ==

; Add new label JAIN-BB.example.test with two A records, associated NSEC and RRSIGs.
JAIN-BB.example.test. 3600 IN A 133.69.136.4
JAIN-BB.example.test. 3600 IN A 192.41.197.2
JAIN-BB.example.test. 5 IN NSEC NS.example.test. A RRSIG NSEC
JAIN-BB.example.test. 5 IN RRSIG NSEC 15 3 5 20231114221320 20200913122640 580 example.test. /S/FZGh/OBQjwaVRPXJChDNkraEeD7qtVvIAa8db4bYmylI4KWOsH991 XDjye2aOv1+qPZxXIfzuX/3ER8JUBA==
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20231114221320 20200913122640 580 example.test. XLFJlxjJDzmdwqF2BgxWN7Swfty8HD3ILb6Mo7fHKrfYt6x3uxXIUIjO JFVwFBhavLTrOlOcXdBGoNTvceqTDg==

; [DIFF 2]: "One of the IP addresses of JAIN-BB.JAIN.AD.JP. is changed."
; [DIFF 2]: Records from serial 2 to be removed.

; The old SOA and associated RRSIG.
example.test. 3600 IN SOA ns.example.test. mail.example.test. 2 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20231114221320 20200913122640 580 example.test. fYRpxmxV5HQl7wIPmuN+lrYQJalFuxi9iI0DX2/mM4kdh7q9GGutFTOZ kbdY4D+AZf25s08CZR1CPpd9o2Q3Dg==

; The old A record and associated RRSIG.
JAIN-BB.example.test. 3600 IN A 133.69.136.4
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20231114221320 20200913122640 580 example.test. XLFJlxjJDzmdwqF2BgxWN7Swfty8HD3ILb6Mo7fHKrfYt6x3uxXIUIjO JFVwFBhavLTrOlOcXdBGoNTvceqTDg==

; [DIFF 2]: Records to be added for serial 3.

; The new SOA and associated RRSIG.
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
example.test. 3600 IN RRSIG SOA 15 2 3600 20231114221320 20200913122640 580 example.test. iVSTY7uTaal9mRd44phalz9+oHlQtNDGPrQb4rvx3SkdTMT21l9PDCVL BxomZOiC51WhuQX+8FxSiLQcN+sfAw==

; The updated A record and associated RRSIG.
JAIN-BB.example.test. 3600 IN A 133.69.136.3
JAIN-BB.example.test. 3600 IN RRSIG A 15 3 3600 20231114221320 20200913122640 580 example.test. gPZnGC1IeAz1VtEvYEV9jMLw7kFhwPKX9kMtH32/xC7zyYNOfmcWqffZ xbobEY8c/oS9z4WIiK8k4uFi90rQCA==

; End of IXFR
example.test. 3600 IN SOA ns.example.test. mail.example.test. 3 60 60 3600 5
Loading