<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.1.7) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-johani-dnsop-delegation-mgmt-via-ddns-06" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="DDNS Updates of Delegation Information">Automating DNS Delegation Management via DDNS</title>

    <author initials="J." surname="Stenstam" fullname="Johan Stenstam">
      <organization>The Swedish Internet Foundation</organization>
      <address>
        <postal>
          <country>Sweden</country>
        </postal>
        <email>johan.stenstam@internetstiftelsen.se</email>
      </address>
    </author>
    <author initials="E." surname="Bergström" fullname="Erik Bergström">
      <organization>The Swedish Internet Foundation</organization>
      <address>
        <postal>
          <country>Sweden</country>
        </postal>
        <email>erik.bergstrom@internetstiftelsen.se</email>
      </address>
    </author>
    <author initials="L." surname="Fernandez" fullname="Leon Fernandez">
      <organization>The Swedish Internet Foundation</organization>
      <address>
        <postal>
          <country>Sweden</country>
        </postal>
        <email>leon.fernandez@internetstiftelsen.se</email>
      </address>
    </author>

    <date />

    <area>Internet</area>
    <workgroup>DNSOP Working Group</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 40?>

<t>Delegation information (i.e. the NS RRset, possible glue, possible DS
records) should always be kept in sync between child zone and parent
zone. However, in practice that is not always the case.</t>

<t>When the delegation information is not in sync the child zone is
usually working fine, but without the amount of redundancy that the
zone owner likely expects to have. Hence, should any further problems
ensue it could have catastropic consequences.</t>

<t>The DNS name space has lived with this problem for decades and it
never goes away. Or, rather, it will never go away until a fully
automated mechanism for how to keep the information in sync
automatically is deployed.</t>

<t>This document proposes such a mechanism.</t>

<t>TO BE REMOVED: This document is being collaborated on in Github at:
<eref target="https://github.com/johanix/draft-johani-dnsop-delegation-mgmt-via-ddns">https://github.com/johanix/draft-johani-dnsop-delegation-mgmt-via-ddns</eref>.
The most recent working version of the document, open issues, etc,
should all be available there.  The authors (gratefully) accept pull
requests.</t>



    </abstract>



  </front>

  <middle>


<?line 64?>

<section anchor="introduction"><name>Introduction</name>

<t>For DNSSEC signed child zones with TLD registries as parents there is 
an emerging trend towards running so-called "CDS scanners" and "CSYNC 
scanners" by the parent.</t>

<t>These scanners detect publication of CDS records (the child signalling
a desire for an update to the DS RRset in the parent) and/or a CSYNC
record (the child signalling a desire for an update to the NS RRset
or, possibly, in-bailiwick glue in the parent).</t>

<t>The scanners have a number of drawbacks, including being inefficient
and slow. They are only applicable to DNSSEC-signed child zones and
they add significant complexity to the parent operations. But given
that, they do work.</t>

<t><xref target="RFC9859"/> proposes a method to alleviate the inefficiency and
slowness of scanners. But the DNSSEC requirement and the complexity
remain.</t>

<t>This document proposes an alternative mechanism to automate the
updating of delegation information in the parent zone for a child
zone based on DNS Dynamic Updates secured with SIG(0) signatures.</t>

<t>This alternative mechanism shares the property of being efficient
and provide rapid convergence (similar to generalized notifications in
conjuction with scanners). Furthermore, it has the advantages of not
requiring any scanners in the parent at all and also not being
dependent on the child (and parent) being DNSSEC-signed.</t>

<t>Knowledge of DNS NOTIFY <xref target="RFC1996"/> and DNS Dynamic Updates
<xref target="RFC2136"/> and <xref target="RFC3007"/> is assumed. DNS SIG(0) transaction
signatures are documented in <xref target="RFC2931"/>. In addition this
Internet-Draft borrows heavily from the thoughts and problem statement
from <xref target="RFC9859"/>.</t>

<section anchor="requirements-notation"><name>Requirements Notation</name>

<t>The key words "<strong>MUST</strong>", "<strong>MUST NOT</strong>", "<strong>REQUIRED</strong>", "<strong>SHALL</strong>",
"<strong>SHALL NOT</strong>", "<strong>SHOULD</strong>", "<strong>SHOULD NOT</strong>", "<strong>RECOMMENDED</strong>",
"<strong>NOT RECOMMENDED</strong>", "<strong>MAY</strong>", and "<strong>OPTIONAL</strong>" in this document
are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>

</section>
</section>
<section anchor="is-there-a-use-case"><name>Is there a Use Case?</name>

<t>Because of the drawbacks of CDS and CSYNC scanners they are unlikely
to be able to fully automate the maintenance of delegation information
in all parent zones. The primary reasons are the hard requirement on
DNSSEC in the child zones and the complexity cost of operating the
scanner infrastructure. In practice, scanners are likely mostly
realistic for parent zones that are operated by well-resourced
registries.</t>

<t>All the parts of the DNS name space where the parent is smaller and
more resource constrained would be able to automate the delegation
management via this mechanism without the requirement of operating
scanners. Also all parts of the name space where there are child zones
that are not DNSSEC-signed would be able to use this.</t>

<t>Obviously, also well-resourced parent zones with DNSSEC-signed child
zones would be able to use this DNS UPDATE-based mechanism, but in
those cases scanners plus generalized notifications would also work.</t>

</section>
<section anchor="dns-notify-versus-dns-update"><name>DNS NOTIFY versus DNS UPDATE</name>

<t>DNS NOTIFY and DNS UPDATE messages share several properties
and are used to address similar issues.</t>

<section anchor="similarities-between-notify-and-update"><name>Similarities between NOTIFY and UPDATE</name>

<t>Both NOTIFY and UPDATE are "push" rather than "pull" messages and
therefore very efficient.</t>

<t>Both NOTIFY and UPDATE are messages, in DNS packet format. They are
used by one party (the sender) to inform another party (the recipient)
that some piece of DNS information has changed and that as a
consequence of this change the recipient of the message may want to
also make a change to its DNS data.</t>

<t>A NOTIFY (as per <xref target="RFC1996"/>) is only a hint and the recipient may
ignore it. But if the recipient does listen to the NOTIFY it should
make its own lookups to verify what has changed and whether that
should trigger any changes in the DNS data provided by the recipient.</t>

</section>
<section anchor="differences-between-notify-and-update"><name>Differences between NOTIFY and UPDATE</name>

<t>The difference between the UPDATE and the NOTIFY is that the UPDATE
contains the exact change that should (in the opinion of the sender)
be applied to the recipients DNS data. Furthermore, for secure Dynamic
Updates, the message also contains proof why the update should be
trusted (in the form of a digital signature by a key that the
recipient trusts).</t>

<t>In this document the term "Dynamic Update" or "DNS UPDATE" implies
secure dynamic update. Furthermore this document implies that the
signature algorithms are always based on asymmetric crypto keys, using
the same algorithms as are being used for DNSSEC. I.e. by using the
right algorithm the resulting signatures will be as strong as
DNSSEC-signatures.</t>

<t>DNS UPDATEs can be used to update any information in a zone (subject
to the policy of the recipient). But in the special case where the
data that is updated is the delegation information for a child zone
and it is sent across a zone cut (i.e. the child sends it to the
parent), it acts as a glorified generalized NOTIFY.</t>

<t>The DNS UPDATE in this case is essentially a message that says:</t>

<figure><artwork><![CDATA[
"the delegation information for this child zone has changed; here
is the exact change; here is the proof that the change is
authentic, please verify this signature"
]]></artwork></figure>

</section>
</section>
<section anchor="terminology"><name>Terminology</name>

<dl>
  <dt>SIG(0)</dt>
  <dd>
    <t>An assymmetric signing algorithm that allows the recipient to only
need to know the public key to verify a signature created by the
senders private key.</t>
  </dd>
</dl>

</section>
<section anchor="updating-delegation-information-via-dns-updates"><name>Updating Delegation Information via DNS UPDATEs.</name>

<t>This is not a new idea. There is lots of prior art and prior
documents, including the expired
I-D.andrews-dnsop-update-parent-zones-04.</t>

<t>The functionality to update delegation information in the parent zone
via DNS UPDATE has been available for years in a least one DNS
implementation (BIND9). However, while DNS UPDATE is used extensively
inside organisations it has not seen much use across organisational
boundaries. And zone cuts, almost by definition, usually cuts across
such boundaries.</t>

<t>When sending a DNS UPDATE it is necessary to know where to send
it. Inside an organisation this information is usually readily
available. But outside the organisation it is not. And even if the
sender would know where to send the update, it is not at all clear
that the destination is reachable to the sender (the parent primary is
likely to be protected by firewalls and other measures).</t>

<t>This constitutes a problem for using DNS UPDATES across zone cuts.</t>

<t>Another concern is that traditionally DNS UPDATEs are sent to a
primary nameserver, and if the update signture verifies the update is
automatically applied to the DNS zone. This is often not an acceptable
mechanism. The recipient may, for good reason, require additional
policy checks and likely an audit trail. Finally, the change should in
many cases not be applied to the running zone but rather to some sort
of provisioning system or a database.</t>

<t>This creates another problem for using DNS UPDATEs for managing
delegation information.</t>

<t>Both problems are addressed by the proposed mechanism for locating the
recipient of a generalized NOTIFY.</t>

</section>
<section anchor="locating-the-target-for-a-generalized-notify-andor-dns-update"><name>Locating the Target for a generalized NOTIFY and/or DNS UPDATE.</name>

<t>Section 3 of <xref target="RFC9859"/> defines a new RR type, DSYNC, that has the
following format:</t>

<figure><artwork><![CDATA[
{qname}   IN  DSYNC  {RRtype} {scheme} {port} {target}
]]></artwork></figure>

<t>where {target} is the domain name of the recipient of the NOTIFY
message. {RRtype} is typically "CDS" or "CSYNC" in the case where
delegation information should be updated (there are also other uses of
generalized notifications).</t>

<t>Finally, {scheme} is an 8 bit unsigned integer to indicate the type of
notification mechanism to use. Scheme=1 is defined as "NOTIFY" (and
the presentation format is also "NOTIFY"), as in "send a generalized
NOTIFY to {target} on port {port}".</t>

<t>This document proposes the definition of a new {scheme} for the same
record that is used for generalized NOTIFY. Scheme=TBD is here defined
as "UPDATE", as in "send a DNS UPDATE to {target} on port {port}".
When parsing or presenting DNS zone data the 8 bit unsigned integer
TBD should be replaced by the string "UPDATE", as in the examples
below.</t>

<t>Apart from defining a new scheme to specify the mechanism "UPDATE"
(rather than the mechanism "NOTIFY") this document does not say
anything about what Qname to look up or what RR type. The UPDATE
mechanism should use exactly the same method of locating the target of
the UPDATE as is used for generalized NOTIFY.</t>

<t>This lookup addresses the first issue with using DNS UPDATE across
organizational boundaries.</t>

<t>Example 1: a parent zone announces support for DNS UPDATE as a
mechanism for delegation synchronization for all child zones:</t>

<figure><artwork><![CDATA[
_dsync.parent.  IN DSYNC ANY UPDATE 5302 ddns-receiver.parent. 
]]></artwork></figure>

<t>Example 2: a parent zone announces support for different DNS UPDATE
targets on a per-child basis:</t>

<figure><artwork><![CDATA[
childA._dsync.parent.  IN DSYNC ANY UPDATE 5302 ddns-receiver.registrar1.
childB._dsync.parent.  IN DSYNC ANY UPDATE 5302 ddns-receiver.registrar3.
childC._dsync.parent.  IN DSYNC ANY UPDATE 5302 ddns-receiver.registrar2.
]]></artwork></figure>

<t>The DSYNC RRset is looked up, typically by the child primary name
server or by a separate agent for the child, at the time that the
delegation information for the child zone changes in some way that
would prompt an update in the parent zone. When the {scheme} is
"UPDATE" (i.e. the number 2 in the wire protocol) the interpretation
is:</t>

<t><spanx style="verb">Send a DNS UPDATE to the IP address for the name {target} on port
5302, where {target} is the domain name in the right-hand side of the
DSYNC record that matches the qname in the DNS query.</spanx></t>

</section>
<section anchor="limitation-of-scope-for-the-proposed-mechanism"><name>Limitation of Scope for the Proposed Mechanism</name>

<t>DNS UPDATE is in wide use all over the world, for all sorts of
purposes. It is not in wide use across organizational boundaries. This
document only address the specific case of a child zone that makes a
change in its DNS delegation information that will require an update
of the corresponding information in the parent zone. This includes:</t>

<t><list style="symbols">
  <t>changes to the NS RRset</t>
  <t>changes to glue (if any)</t>
  <t>changes to the DS RRset (if any)</t>
  <t>changes to the KEY RRset (only used for validation of UPDATE
messages)</t>
</list></t>

<t>Only for those specific cases is the described mechanism proposed.</t>

</section>
<section anchor="the-dns-update-receiver"><name>The DNS UPDATE Receiver</name>

<t>While the simplest design is to send the DNS UPDATEs to the primary
name server of the parent it will in most cases be more interesting to
send them to a separate UPDATE Receiver. To separate the primary name
server from the UPDATE Receiver, use a {target} with addresses
separate from the addresses of the primary name server.</t>

<section anchor="processing-the-update-in-the-dns-update-receiver"><name>Processing the UPDATE in the DNS UPDATE Receiver</name>

<t>The receiver of the DNS UPDATE messages should implement a suitably 
strict policy for what updates are accepted (typically only allowing 
updates to the NS RRset, glue and DS RRset).</t>

<t>Furthermore, it is strongly recommended that the policy is further
tightened by only allowing updates to the delegation information of a
child zone with the exact same name as the name of the SIG(0) key the
signed the UPDATE request. I.e. an UPDATE request for the delegation
information for the zone <spanx style="verb">child.parent.</spanx> should only be processed if
it is signed by a SIG(0) key with the name <spanx style="verb">child.parent.</spanx> and the
signature verifies correctly.</t>

<t>Once the DNS UPDATE message has been verified to be correctly signed
by a known and trusted key with the correct name and also adhere to
the update policy it should be subjected to the same set of
correctness tests as CDS/CSYNC scanner would have performed. If these
requirements are also fulfilled the change may be applied to the
parent zone in whatever manner the parent zone is maintained (as a
text file, data in a database, via and API, etc).</t>

</section>
</section>
<section anchor="interpretation-of-the-response-to-the-dns-update"><name>Interpretation of the response to the DNS UPDATE.</name>

<t>All DNS transactions are designed as a pair of messages and this is
true also for DNS UPDATE. The interpretation of the different
responses to DNS UPDATE are fully documented in <xref target="RFC2136"/>, section
2.2.</t>

<section anchor="rcode-noerror"><name>RCODE NOERROR</name>

<t>A response with rcode=0 ("NOERROR") should be interpreted as a
confirmation that the DNS UPDATE has been received and
accepted. I.e. the change to the parent DNS data should be expected to
be published in the parent zone at some future time.</t>

</section>
<section anchor="rcode-refused"><name>RCODE REFUSED</name>

<t>A response with rcode=5 ("REFUSED") should be interpreted as a
permanent signal that DNS UPDATEs are not supported by the
receiver. This would indicate a parent misconfiguration, as the UPDATE
should not be sent unless the parent has announced support for DNS
UPDATE via publication of an appropriate target location record.</t>

</section>
<section anchor="rcode-badkey"><name>RCODE BADKEY</name>

<t>A response with rcode=17 ("BADKEY") should be interpreted as a
definitive statement that the DNS UPDATE Receiver does not have access
to the public SIG(0) key needed for signature verification. In this
case the child should fall back to bootstrap of the SIG(0) public key
into the DNS UPDATE Receiver, see below.</t>

</section>
<section anchor="no-response-to-a-dns-update"><name>No response to a DNS UPDATE</name>

<t>The case of no response is more complex, as it is not possible to know
whether the DNS UPDATE actually reached the receiver (or was lost in
transit) or the response was not sent (or lost in transit).</t>

<t>For this reason it is suggested that a lack of response is left as
implementation dependent. That way the implementation has sufficient
freedom do chose a sensible approach. Eg. if the sender of the DNS
UPDATE message (perhaps the primary name server of the child zone) only
serves a single child, then resending the DNS UPDATE once or twice may
be ok (to ensure that the lack of response is not due to packets being
lost in transit). On the other hand, if the sender serves a large
number of child zones below the same parent zone, then it may already
know that the receiver for the DNS UPDATEs is not responding for any
of the child zones, and then resending the update immediately is
likely pointless.</t>

</section>
</section>
<section anchor="management-of-sig0-public-keys"><name>Management of SIG(0) Public Keys</name>

<t>Only the child should have access to the SIG(0) private key. The
corresponding SIG(0) public key should preferably be published in DNS,
but it doesn't have have to be. The SIG(0) public key only needs to be
available to the parent DNS UPDATE Receiver. Keeping all the public
SIG(0) keys for different child zones in some sort of database is
perfectly fine.</t>

<section anchor="bootstrapping-the-sig0-public-key-into-the-dns-update-receiver"><name>Bootstrapping the SIG(0) Public Key Into the DNS UPDATE Receiver</name>

<t>Bootstrap of the child public SIG(0) key to be trusted by the UPDATE
Receiver may be done either manually or automatically. Manually
may in various cases be the preferred method, especially in the case
of non-registry parents with a small number of child delegations.</t>

<t>If the UPDATE Receiver only supports manual bootstrap, then that is
what will happen (apart from informing the child about this
policy). If the child wants to enforce manual bootstrap it needs to
request this from the UPDATE Receiver.</t>

<t>In those cases there is by definition some mechanism in place to
communicate information from the child to the parent, be it email, a
web form, pieces of paper or something else. The same mechanism can be
extended to also be used to communicate the initial SIG(0) public key
from the child to the parent.</t>

<t>Regardless of whether manual bootstrap or automatic bootstrap is to be
used (subject to the UPDATE Receiver policy), the bootstrap must be
initiated. This is done by the child issuing a self-signed DNS UPDATE
to the parent containing:</t>

<figure><artwork><![CDATA[
DEL child.parent. {ttl} ANY KEY 
ADD child.parent. {ttl} IN  KEY ... 
]]></artwork></figure>

<t>The first record is an instruction to delete any previous keys for 
this child (CLASS=ANY in a DNS UPDATE is a request to delete an entire
RRset). The second is an instruction to add the new key.</t>

<t>When receiving such a message (where the self-signature validates) the
parent UPDATE Reciever SHOULD mark that key as "known" (but not yet
trusted) and then either put that key into a queue for later look up
and validation of the corresponding KEY record (if supporting
automatic bootstrap) or put that key into a queue for subsequent
manual validation and verification.</t>

<section anchor="automatic-bootstrap-of-the-sig0-public-key"><name>Automatic Bootstrap of the SIG(0) Public Key</name>

<t>Automated bootstrapping is also possible, subject to the policy of the
UPDATE Receiver. The basic idea is to publish the public SIG(0) key as
a KEY record either at the child apex or at a special name below the
name of an authoritative nameserver for the zone located in a DNSSEC-
signed zone. This publication must occur prior to the initial key
upload. Then the UPDATE Receiver (or an agent) may look that KEY up
for subsequent validation.</t>

</section>
<section anchor="automatic-bootstrap-when-child-zone-is-dnssec-signed"><name>Automatic Bootstrap When Child Zone Is DNSSEC-signed</name>

<t>If the child zone is DNSSEC-signed (including a signed delegation via
a DS record), then the KEY record containing the SIG(0) public key
located at the zone apex can be looked up and validated by the DNS
UPDATE Receiver.</t>

<figure><artwork><![CDATA[
child.parent. IN KEY ...
child.parent. IN RRSIG KEY ...
]]></artwork></figure>

<t>In case of validation success the key SHOULD be promoted to "trusted"
by the UPDATE Receiver. At this point any old keys should be deleted.</t>

<t>In case of validation failure (or absence of a DNSSEC signature) the
SIG(0) SHOULD NOT be promoted to the set of keys that the UPDATE
Receiver trusts and any old keys MUST be kept.</t>

</section>
<section anchor="automatic-bootstrap-when-child-nameserver-is-in-a-dnssec-signed-zone"><name>Automatic Bootstrap When Child Nameserver Is In A DNSSEC-signed Zone</name>

<t>If the child zone is unsigned but at least one of the authoritative
nameservers for the zone is located in a DNSSEC-signed zone (including
a signed delegation via a DS record), then the KEY record containing
the SIG(0) public key can be looked up and validated by the DNS UPDATE
Receiver.</t>

<t>Example: assume that the unsigned child zone "child.parent." has
two nameservers:</t>

<figure><artwork><![CDATA[
child.parent.  IN NS ns.child.parent.
child.parent.  IN NS ns.provider.example.
]]></artwork></figure>

<t>ns.child.parent. is located in the unsigned zone child.parent. and a
KEY record located under that name can not be DNSSEC-validated.
ns.provider.example. on the other hand is located in a DNSSEC signed
zone.  In this case the KEY record containing the public SIG(0) key
for child.parent.  may be located at the special label
"_sig0key.{child}._signal.{nameserver}":</t>

<figure><artwork><![CDATA[
_sig0key.child.parent._signal.ns.provider.example. IN KEY ...
_sig0key.child.parent._signal.ns.provider.example. IN RRSIG KEY ...
]]></artwork></figure>

<t>In case of validation success the key SHOULD be promoted to "trusted"
by the UPDATE Receiver. At this point any old keys should be deleted.</t>

<t>In case of validation failure (or absence of a DNSSEC signature) the
SIG(0) SHOULD NOT be promoted to the set of keys that the UPDATE
Receiver trusts and any old keys MUST be kept.</t>

<t>This bootstrap mechanism is identical to the method used for DNSSEC
bootstrap as described in <xref target="RFC9615"/>. As the proof of the SIG(0) key
being authentic is based on a clear DNSSEC signature chain this method
is as secure as if the child zone had been signed.</t>

</section>
<section anchor="automatic-bootstrap-when-child-zone-is-unsigned"><name>Automatic Bootstrap When Child Zone Is Unsigned</name>

<t>Hence, to bootstrap the public SIG(0) key for a child zone it is
possible for the parent use a "bootstrap policy" a la:</t>

<t><list style="symbols">
  <t>Look up the KEY RRset in the child zone. Compare to the child KEY
received in the self-signed DNS UPDATE.</t>
  <t>To mitigate a possible on-path attacker, do the look up of the child
KEY RRset, using TCP transport, from multiple vantage points, at
multiple times. The child KEY RRset must be consistent over time and
space.</t>
  <t>Make on-path attacks even more difficult by adding a requirement to,
in addition to TCP, also use a more secure transport, like DoT, DoH
or DoQ once those become more generally available for DNS queries to
authoritative servers. The child KEY RRset must be consistent over
all tested transports.</t>
  <t>If the received KEY RRset is consistent from multiple vantage points
and multiple times then it is considered authentic and promoted by
the parent's UPDATE Receiver from "known" to "trusted" SIG(0) key
for the child. At this point any old SIG(0) public keys for the
child should be deleted.</t>
</list></t>

<t>Should a "registry" parent want to support this mechanism (as a
service to its unsigned children) then a likely model is that the
target of the DNS UPDATE is operated by the registrar (or possibly
that the DNS UPDATE is forwarded to the registrar). The registrar
performs its normal verifications of a change and then transforms the
update into an EPP <xref target="RFC5730"/> transaction to communicate it to the
registry.</t>

<t>This bootstrap mechanism for the case of an unsigned child is
essentially identical to the "automatic DNSSEC Bootstrap via CDS"
service a la <xref target="RFC8078"/> that multiple TLD registries provide
today. It does not provide the provable authenticity of the two
previous methods but it is possible to make on-path attacks
arbitrarily difficult by using a larger number of repeated queries
from a larger number of vantage points.</t>

</section>
<section anchor="publishing-supported-bootstrap-methods"><name>Publishing Supported Bootstrap Methods</name>

<t>As there are multiple possible methods to bootstrap the initial SIG(0)
public key to become trusted by the parent it becomes important for
child zone operators to be able to find out which method to use. One
alternative would be to send this information inside the KeyState
EDNS(0) option that is already needed to inquire state for specific
keys. This does have the drawback of being less visible and
potentially more difficult to use operationally.</t>

<t>Another method is to utilize the same mechanism as used in
<xref target="I-D.berra-dnsop-announce-scanner"/> to announce details about CDS and
CSYNC scanner capabilities. This mechanism uses an SVCB record located
at the target of the DSYNC record to announce capabilities. For the
UPDATE Receiver the important capabilites are primarily supported
bootstrap methods.</t>

<section anchor="svcb-key-bootstrap"><name>SVCB Key "bootstrap"</name>

<t>The "bootstrap" key is used to signal what mechanisms are supported for
upgrading an unsigned delegation to a signed delegation. Three mechanisms
are currently identified:</t>

<t><list style="symbols">
  <t>"at-apex": This is an indication that the UPDATE Receiver supports
           automatic bootstrap of the SIG(0) public key for signed
           child zones by the child publishing the DNSSEC-signed
           KEY record at the child zone apex.  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
child.parent.  IN KEY ... 
child.parent.  IN RRSIG KEY ... 
]]></artwork></figure>
  <vspace blankLines='1'/>
See <xref target="automatic-bootstrap-when-child-zone-is-dnssec-signed">Automatic Bootstrap When Child Zone Is DNSSEC-signed</xref></t>
  <t>"at-ns":   This is an indication that the UPDATE Receiver supports
           automatic bootstrap of the SIG(0) public key by publishing
           the DNSSEC-signed KEY record both at the zone apex AND at
           the special name "_sig0key.{child}._signal.{nameserver}."
           below the name of an authoritative nameserver located in a
           signed zone. This mechanism is similar to what is described
           in <xref target="RFC9615"/> for CDS bootstrap:  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
child.parent.     IN NS ns.provider.com.
child.parent.     IN KEY ... 
_sig0key.{child}._signal.ns.provider.com.  IN KEY ... 
_sig0key.{child}._signal.ns.provider.com.  IN RRSIG KEY ... 
]]></artwork></figure>
  <vspace blankLines='1'/>
See <xref target="automatic-bootstrap-when-child-nameserver-is-in-a-dnssec-signed-zone">Automatic Bootstrap When Child Nameserver Is In A DNSSEC-signed Zone</xref></t>
  <t>"unsigned": This method is similar to what <xref target="RFC8078"/> describes
            for CDS bootstrapping.  <vspace blankLines='1'/>
    <figure><artwork><![CDATA[
child.parent.     IN KEY ... 
]]></artwork></figure>
  <vspace blankLines='1'/>
See <xref target="automatic-bootstrap-when-child-zone-is-unsigned">Automatic Bootstrap When Child Zone Is Unsigned</xref></t>
  <t>"manual":  This is an indication that the UPDATE Receiver supports some other
           mechanism for bootstrap of the SIG(0) public key.</t>
</list></t>

<t>The value of the "bootstrap" key is a string with one or more of the defined
mechanisms, separated by ",". The mechanisms may occur in arbitrary order.</t>

<t>New mechanisms are likely to be defined in the future.</t>

</section>
<section anchor="complete-example"><name>Complete Example</name>

<t>Example for a parent that operates an UPDATE Receiver that only
support the secure automatic bootstrap methods "at-apex" and
"at-ns". Otherwise manual bootstrap is needed.</t>

<figure><artwork><![CDATA[
_dsync.parent.example.   IN  DSYNC ANY UPDATE 0 updater.parent.example.
updater.parent.example.  IN  SVCB 0 . (bootstrap="at-apex,at-ns,manual")
]]></artwork></figure>

<t>I.e. this UPDATE Receiver does not support the "unsigned" method based
on <xref target="RFC8078"/>.</t>

</section>
</section>
</section>
<section anchor="rolling-the-sig0-key"><name>Rolling the SIG(0) Key</name>

<t>Once the parent (or registrar) DNS UPDATE Receiver has the key, the
child can update it via a DNS UPDATE just like updating the NS RRset,
the DS RRset or the glue in the parent zone (assuming a suitable DNS
UPDATE policy in the parent). I.e. only the initial bootstrapping of
the key is an issue.</t>

<t>Note, however, that the alternative of re-bootstrapping (by whatever
bootstrapping mechanism was used) in case of a key compromise may be a
better alternative to the parent supporting key rollover for child
SIG(0) keys. The decision of whether to allow SIG(0) key rollover via
DNS UPDATE is left as parent-side policy.</t>

</section>
<section anchor="re-bootstrapping-in-case-of-errors"><name>Re-bootstrapping In Case of Errors</name>

<t>Sometimes things get out of sync in spite of all efforts. It could be
an operator error in the parent end losing the child public key or it
could be an error in the child end losing the private key. Another
possibility could be a key rollover that for some reason didn't sync
correctly.</t>

<t>If <xref target="I-D.berra-dnsop-keystate"/> is supported then the child can
inquire with the UPDATE Receiver about the KeyState of the SIG(0) key
it would use in an UPDATE request.</t>

<t>In all such cases, as soon as the child becomes aware of the problem
it should simply re-bootstrap by the same mechanism as used
initially. The self-signed DNS UPDATE that starts the bootstrapping
process contains a</t>

<figure><artwork><![CDATA[
DEL child.parent. {ttl} ANY KEY
]]></artwork></figure>

<t>and that is an instruction to the parent UPDATE Receiver to delete any
SIG(0) public keys for this child (and after that start the process to
validate the new key).</t>

<t>Note that when receiving such a self-signed DNS UPDATE the parent MUST
NOT delete any old keys until the new key has been validated and
therefore promoted to "trusted". This is needed and important to avoid
the potential attack vector of an adversary causing a parent to
invalidate the child key by just sending a self-signed bootstrap
UPDATE (which will not validate, but if the old key is deleted then
the harm would already be done).</t>

</section>
</section>
<section anchor="communication-between-child-and-parent-update-receiver"><name>Communication Between Child and Parent UPDATE Receiver</name>

<t>There are two cases where communication between child and parent
UPDATE Receiver would benefit greatly from some additional
information.</t>

<section anchor="communication-in-case-of-errors"><name>Communication in Case of Errors</name>

<t>An error response from the parent UPDATE Receiver would be improved by
more detail provided via a set of new Extended DNS Error Codes
<xref target="RFC8914"/>. In particular, it would be useful to be able to express
the following "states":</t>

<t><list style="symbols">
  <t>"SIG(0) key is known, but not yet trusted": indicating that
bootstrap of the key is not yet complete. Waiting may resolve the
issue.</t>
  <t>"SIG(0) key is known, but validation failed": indicating that
bootstrap has failed and waiting will not resolve the issue.</t>
  <t>"Automatic bootstrap of SIG(0) keys not supported; manual bootstrap
required": indicating that while the parent does support delegation
sychronization via DNS UPDATE, it does only support manual
bootstrap.</t>
</list></t>

</section>
<section anchor="communication-to-inquire-state"><name>Communication To Inquire State</name>

<t>Extended DNS Errors <xref target="RFC8914"/> provides an excellent mechanism
for adding more detail to error responses. However it is,
intentionally, limited to:</t>

<t><list style="symbols">
  <t>returning extra information from the receiver to the original
sender. It is not possible to "send" information, only "return"
information.</t>
  <t>no information except the actual error code is meant for automatic
processing. it is therefore not possible to communicate things like,
eg. a KeyId via EDE.</t>
</list></t>

<t>The communication between child and parent would gain from the
addition of the ability to also send inquiries to the parent:</t>

<t><list style="symbols">
  <t>For the child to be able to inquire about the state of the
parent. I.e. "I operate under the assumption that the key {key} is
known and trusted by you (the parent). Is this correct?"</t>
  <t>For the child to inquire about things: "Do you (parent) support
automatic bootstrapping or not?"</t>
</list></t>

<t><xref target="I-D.berra-dnsop-keystate"/> is proposed as a mechanism to improve
the communication between child and parent, both in the error case and
in the inquiry case. If that draft is supported then all of the above
examples would travel as a new "KeyState codes" in a KeyState OPT as
specified in <xref target="I-D.berra-dnsop-keystate"/>.</t>

</section>
<section anchor="mutual-authentication"><name>Mutual Authentication</name>

<t>In a traditional DNS UPDATE only the sender (i.e. the child in this
case) of the UPDATE is providing information. The receiver is only a
consumer of the information (assuming that the receiver able to
validate the SIG(0) signature of the sender, and that the UPDATE
adheres to policy, etc).</t>

<t>However, in the proposed mechanism with the new KeyState OPT the
UPDATE Receiver can also send information back to the sender (the
child). One example is details about the SIG(0) key bootstrap policy
of the parent.  This opens up the possibility for an adversary to
potentially cause disruption by sending forged responses to the child.</t>

<t>For this reason the current proposal is that the UPDATE Receiver also
maintains a SIG(0) key pair, including publication of the public key
in DNS. This key is then used to sign responses to the child. This
requires that the child goes though a similar bootstrap process to get
the public key of the UPDATE Receiver as the parent does.</t>

<t>Once such bootstrap is complete the child can use the public key of
the UPDATE Receiver to verify the authenticity of responses from the
UPDATE Receiver, thereby making the mutual authentication complete.</t>

</section>
</section>
<section anchor="scalability-considerations"><name>Scalability Considerations</name>

<t>The primary existing mechanism for automatic synchronization of DNS
delegation information is based on parent-side "scanning" of the child
zones for CDS and/or CSYNC RRsets, performing DNSSEC validation on the
result and then, in the CSYNC case, based on the result, issue and
validate a potentially large number of additional DNS queries, all of
which must be DNSSEC validated. This makes a CDS/CSYNC scanner for a
parent with a significant number of delegations a complex and resource
consuming service. Among the issues are rate-limiting by large DNS
operators and inherent difficulties in issuing millions of recursive
DNS queries where all received data must be validated.</t>

<t>By comparision, the DNS UPDATE based mechanism for automatic
synchronization shifts most of the effort to the child side. It is the
child that is responsible for detecting the need to update the
delegation information in the parent zone (which makes sense as it is
the child that has made a change and therefore, in many cases, already
"knows"). It is the child rather than the parent that computes what
records should be added or removed. All of this is good for
scalability.</t>

<t>Furthermore, the information collection and validation effort for the
UPDATE Receiver is restricted to validation of a single DNS message,
using a SIG(0) key that the UPDATE Receiver already has.</t>

<t>Hence, as the data collection and validation is much simplified the
task of the UPDATE Receiver is mostly focused on the policy issues of
whether to approve the UPDATE or not (i.e. the same process that a CDS
and/or CSYNC scanner follows).</t>

</section>
<section anchor="security-considerations"><name>Security Considerations.</name>

<t>Any fully automatic mechanism to update the contents of a DNS zone
opens up a potential vulnerability should the mechanism not be
implemented correctly.</t>

<t>In this case the definition of "correct" is a question for the
receiver of the DNS UPDATE. The receiver should verify the
authenticity of the DNS UPDATE and then do the same checks and
verifications as a CDS or CSYNC scanner does. The difference from the
scanner is only in the validation: single SIG(0) signature by a key
that the UPDATE Receiver trusts vs DNSSEC signatures that chain back
to a DNSSEC trust anchor that the validator trusts.</t>

<t>Another issue of concern is whether a parent-side service that
provides support for changes to child delegation information via DNS
UPDATE is open for potential denial-of-service attacks. The answer is
likely no, as it is possible to have a very strict rate-limiting
policy based on the observation that no child zone should have a
legitimate need to change its delegation information frequently.</t>

<t>Furthermore, as the location of the UPDATE Receiver can be separated
from any parent name server even in the worst case the only service
that can be subject to an attack is the UPDATE Receiver itself, which
is a service that previously did not exist.</t>

</section>
<section anchor="iana-considerations"><name>IANA Considerations.</name>

<t>IANA is requested to assign a new "scheme" value to the registry for
"DSYNC Location of Synchronization Endpoints" as follows:</t>

<dl>
  <dt>Reference</dt>
  <dd>
    <t>(this document)</t>
  </dd>
</dl>

<texttable>
      <ttcol align='left'>RRtype</ttcol>
      <ttcol align='left'>Scheme</ttcol>
      <ttcol align='left'>Purpose</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>ANY</c>
      <c>TBD</c>
      <c>Delegation management</c>
      <c>(this document)</c>
</texttable>

<t><vspace blankLines='999' /></t>

</section>
<section anchor="acknowledgements"><name>Acknowledgements.</name>

<t><list style="symbols">
  <t>Peter Thomassen and I together came up with the location mechanism
for the generalized notifications, which this draft relies upon.</t>
  <t>Mark Andrews provided the initial inspiration for writing some code
to experiment with the combination of the location mechanism from
the generalised notifications with DNS UPDATEs across zone cuts.</t>
  <t>Stefan Ubbink helped me realize the need to also cater for the case
of re-bootstrapping if or when things got out of sync for some
reason.</t>
</list></t>

</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">



<reference anchor="RFC9859">
  <front>
    <title>Generalized DNS Notifications</title>
    <author fullname="J. Stenstam" initials="J." surname="Stenstam"/>
    <author fullname="P. Thomassen" initials="P." surname="Thomassen"/>
    <author fullname="J. Levine" initials="J." surname="Levine"/>
    <date month="September" year="2025"/>
    <abstract>
      <t>This document generalizes and extends the use of DNS NOTIFY (RFC 1996) beyond conventional zone transfer hints to allow other types of actions that were previously lacking a trigger mechanism to be triggered via the DNS. Notifications merely nudge the receiver to initiate a predefined action promptly (instead of on a schedule); they do not alter the action itself (including any security checks it might employ).</t>
      <t>To enable this functionality, a method for discovering the receiver endpoint for such notification messages is introduced, via the new DSYNC record type. Notification types are recorded in a new registry, with initial support for parental NS and DS record updates including DNSSEC bootstrapping.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9859"/>
  <seriesInfo name="DOI" value="10.17487/RFC9859"/>
</reference>
<reference anchor="RFC1996">
  <front>
    <title>A Mechanism for Prompt Notification of Zone Changes (DNS NOTIFY)</title>
    <author fullname="P. Vixie" initials="P." surname="Vixie"/>
    <date month="August" year="1996"/>
    <abstract>
      <t>This memo describes the NOTIFY opcode for DNS, by which a master server advises a set of slave servers that the master's data has been changed and that a query should be initiated to discover the new data. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="1996"/>
  <seriesInfo name="DOI" value="10.17487/RFC1996"/>
</reference>
<reference anchor="RFC2136">
  <front>
    <title>Dynamic Updates in the Domain Name System (DNS UPDATE)</title>
    <author fullname="P. Vixie" initials="P." role="editor" surname="Vixie"/>
    <author fullname="S. Thomson" initials="S." surname="Thomson"/>
    <author fullname="Y. Rekhter" initials="Y." surname="Rekhter"/>
    <author fullname="J. Bound" initials="J." surname="Bound"/>
    <date month="April" year="1997"/>
    <abstract>
      <t>Using this specification of the UPDATE opcode, it is possible to add or delete RRs or RRsets from a specified zone. Prerequisites are specified separately from update operations, and can specify a dependency upon either the previous existence or nonexistence of an RRset, or the existence of a single RR. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2136"/>
  <seriesInfo name="DOI" value="10.17487/RFC2136"/>
</reference>
<reference anchor="RFC3007">
  <front>
    <title>Secure Domain Name System (DNS) Dynamic Update</title>
    <author fullname="B. Wellington" initials="B." surname="Wellington"/>
    <date month="November" year="2000"/>
    <abstract>
      <t>This document proposes a method for performing secure Domain Name System (DNS) dynamic updates. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="3007"/>
  <seriesInfo name="DOI" value="10.17487/RFC3007"/>
</reference>
<reference anchor="RFC2931">
  <front>
    <title>DNS Request and Transaction Signatures ( SIG(0)s )</title>
    <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
    <date month="September" year="2000"/>
    <abstract>
      <t>This document describes the minor but non-interoperable changes in Request and Transaction signature resource records ( SIG(0)s ) that implementation experience has deemed necessary. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="2931"/>
  <seriesInfo name="DOI" value="10.17487/RFC2931"/>
</reference>
<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <date month="March" year="1997"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>
<reference anchor="RFC8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <date month="May" year="2017"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>
<reference anchor="RFC9615">
  <front>
    <title>Automatic DNSSEC Bootstrapping Using Authenticated Signals from the Zone's Operator</title>
    <author fullname="P. Thomassen" initials="P." surname="Thomassen"/>
    <author fullname="N. Wisiol" initials="N." surname="Wisiol"/>
    <date month="July" year="2024"/>
    <abstract>
      <t>This document introduces an in-band method for DNS operators to publish arbitrary information about the zones for which they are authoritative, in an authenticated fashion and on a per-zone basis. The mechanism allows managed DNS operators to securely announce DNSSEC key parameters for zones under their management, including for zones that are not currently securely delegated.</t>
      <t>Whenever DS records are absent for a zone's delegation, this signal enables the parent's registry or registrar to cryptographically validate the CDS/CDNSKEY records found at the child's apex. The parent can then provision DS records for the delegation without resorting to out-of-band validation or weaker types of cross-checks such as "Accept after Delay".</t>
      <t>This document establishes the DS enrollment method described in Section 4 of this document as the preferred method over those from Section 3 of RFC 8078. It also updates RFC 7344.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9615"/>
  <seriesInfo name="DOI" value="10.17487/RFC9615"/>
</reference>
<reference anchor="RFC5730">
  <front>
    <title>Extensible Provisioning Protocol (EPP)</title>
    <author fullname="S. Hollenbeck" initials="S." surname="Hollenbeck"/>
    <date month="August" year="2009"/>
    <abstract>
      <t>This document describes an application-layer client-server protocol for the provisioning and management of objects stored in a shared central repository. Specified in XML, the protocol defines generic object management operations and an extensible framework that maps protocol operations to objects. This document includes a protocol specification, an object mapping template, and an XML media type registration. This document obsoletes RFC 4930. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="69"/>
  <seriesInfo name="RFC" value="5730"/>
  <seriesInfo name="DOI" value="10.17487/RFC5730"/>
</reference>
<reference anchor="RFC8078">
  <front>
    <title>Managing DS Records from the Parent via CDS/CDNSKEY</title>
    <author fullname="O. Gudmundsson" initials="O." surname="Gudmundsson"/>
    <author fullname="P. Wouters" initials="P." surname="Wouters"/>
    <date month="March" year="2017"/>
    <abstract>
      <t>RFC 7344 specifies how DNS trust can be maintained across key rollovers in-band between parent and child. This document elevates RFC 7344 from Informational to Standards Track. It also adds a method for initial trust setup and removal of a secure entry point.</t>
      <t>Changing a domain's DNSSEC status can be a complicated matter involving multiple unrelated parties. Some of these parties, such as the DNS operator, might not even be known by all the organizations involved. The inability to disable DNSSEC via in-band signaling is seen as a problem or liability that prevents some DNSSEC adoption at a large scale. This document adds a method for in-band signaling of these DNSSEC status changes.</t>
      <t>This document describes reasonable policies to ease deployment of the initial acceptance of new secure entry points (DS records).</t>
      <t>It is preferable that operators collaborate on the transfer or move of a domain. The best method is to perform a Key Signing Key (KSK) plus Zone Signing Key (ZSK) rollover. If that is not possible, the method using an unsigned intermediate state described in this document can be used to move the domain between two parties. This leaves the domain temporarily unsigned and vulnerable to DNS spoofing, but that is preferred over the alternative of validation failures due to a mismatched DS and DNSKEY record.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8078"/>
  <seriesInfo name="DOI" value="10.17487/RFC8078"/>
</reference>
<reference anchor="RFC8914">
  <front>
    <title>Extended DNS Errors</title>
    <author fullname="W. Kumari" initials="W." surname="Kumari"/>
    <author fullname="E. Hunt" initials="E." surname="Hunt"/>
    <author fullname="R. Arends" initials="R." surname="Arends"/>
    <author fullname="W. Hardaker" initials="W." surname="Hardaker"/>
    <author fullname="D. Lawrence" initials="D." surname="Lawrence"/>
    <date month="October" year="2020"/>
    <abstract>
      <t>This document defines an extensible method to return additional information about the cause of DNS errors. Though created primarily to extend SERVFAIL to provide additional information about the cause of DNS and DNSSEC failures, the Extended DNS Errors option defined in this document allows all response types to contain extended error information. Extended DNS Error information does not change the processing of RCODEs.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8914"/>
  <seriesInfo name="DOI" value="10.17487/RFC8914"/>
</reference>



    </references>

    <references title='Informative References' anchor="sec-informative-references">




<reference anchor="I-D.berra-dnsop-announce-scanner">
   <front>
      <title>Announce Existence of Parent CDS/CSYNC Scanner</title>
      <author fullname="Erik Bergström" initials="E." surname="Bergström">
         <organization>The Swedish Internet Foundation</organization>
      </author>
      <author fullname="Johan Stenstam" initials="J." surname="Stenstam">
         <organization>The Swedish Internet Foundation</organization>
      </author>
      <author fullname="Leon Fernandez" initials="L." surname="Fernandez">
         <organization>The Swedish Internet Foundation</organization>
      </author>
      <date day="10" month="October" year="2025"/>
      <abstract>
	 <t>   In DNS operations, automated scanners are commonly employed by the
   operator of a parent zone to detect the presence of specific records,
   such as CDS or CSYNC, in child zones, indicating a desire for
   delegation updates.  However, the presence and periodicity of these
   scanners are typically implicit and undocumented, leading to
   inefficiencies and uncertainties.

   This document proposes an extension to the semantics of the DSYNC
   resource record, as defined in [RFC9859], allowing parent zones to
   explicitly signal the presence and scanning interval of such
   automated scanners.  This enhancement aims to improve transparency
   and coordination between child and parent zones.

   TO BE REMOVED: This document is being collaborated on in Github at:
   https://github.com/johanix/draft-berra-dnsop-announce-scanner
   (https://github.com/johanix/draft-berra-dnsop-announce-scanner).  The
   most recent working version of the document, open issues, etc, should
   all be available there.  The authors (gratefully) accept pull
   requests.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-berra-dnsop-announce-scanner-02"/>
   
</reference>

<reference anchor="I-D.berra-dnsop-keystate">
   <front>
      <title>Signalling Key State Via DNS EDNS(0) OPT</title>
      <author fullname="Erik Bergström" initials="E." surname="Bergström">
         <organization>The Swedish Internet Foundation</organization>
      </author>
      <author fullname="Leon Fernandez" initials="L." surname="Fernandez">
         <organization>The Swedish Internet Foundation</organization>
      </author>
      <author fullname="Johan Stenstam" initials="J." surname="Stenstam">
         <organization>The Swedish Internet Foundation</organization>
      </author>
      <date day="7" month="February" year="2025"/>
      <abstract>
	 <t>   This document introduces the KeyState EDNS(0) option code, to enable
   the exchange of SIG(0) key state information between DNS entities via
   the DNS protocol.  The KeyState option allows DNS clients and servers
   to include key state data in both queries and responses, facilitating
   mutual awareness of SIG(0) key status between child and parent zones.
   This mechanism addresses the challenges of maintaining
   synchronization of SIG(0) keys used for securing DNS UPDATE messages,
   thereby enhancing the efficiency and reliability of DNS operations
   that require coordinated key management.

   This document proposes such a mechanism.

   TO BE REMOVED: This document is being collaborated on in Github at:
   https://github.com/johanix/draft-berra-dnsop-opt-transaction-state
   (https://github.com/johanix/draft-berra-dnsop-transaction-state-00).
   The most recent working version of the document, open issues, etc,
   should all be available there.  The authors (gratefully) accept pull
   requests.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-berra-dnsop-keystate-01"/>
   
</reference>



    </references>

</references>


<?line 805?>

<section anchor="change-history-to-be-removed-before-publication"><name>Change History (to be removed before publication)</name>

<t><list style="symbols">
  <t>draft-johani-dnsop-delegation-mgmt-via-ddns-06</t>
</list></t>

<ul empty="true"><li>
  <t>Added the more secure bootstrap of the SIG(0) public key based on
RFC9615 in addition to the original mechanism based on RFC8078.</t>
</li></ul>

<ul empty="true"><li>
  <t>Replaced references to the draft on generalized notifications with
a reference to RFC9859.</t>
</li></ul>

<t><list style="symbols">
  <t>draft-johani-dnsop-delegation-mgmt-via-ddns-05</t>
</list></t>

<ul empty="true"><li>
  <t>Fixed typos in the KeyState OPT section.</t>
</li></ul>

<ul empty="true"><li>
  <t>Added a section on mutual authentication.</t>
</li></ul>

<ul empty="true"><li>
  <t>Fixed spelling errors.</t>
</li></ul>

<t><list style="symbols">
  <t>draft-johani-dnsop-delegation-mgmt-via-ddns-04</t>
</list></t>

<ul empty="true"><li>
  <t>Reworked the section on automatic bootstrapping a la RFC8078.</t>
</li></ul>

<ul empty="true"><li>
  <t>Added a section on re-bootstrapping the SIG(0) key with the parent
after problems.</t>
</li></ul>

<ul empty="true"><li>
  <t>Added text on the importance of augmenting error responses using EDE
(RFC8914).</t>
</li></ul>

<ul empty="true"><li>
  <t>Added text on the insufficiency of RFC8914 for child-to-parent
communication and a reference to the (upcoming) draft on a new OPT
code to alleviate this.</t>
</li></ul>

<t><list style="symbols">
  <t>draft-johani-dnsop-delegation-mgmt-via-ddns-03</t>
</list></t>

<ul empty="true"><li>
  <t>Update the draft based on the excellent dnsdir review of 
draft-ietf-dnsop-generalized-notify-01 by Patrick Mevsek.</t>
</li></ul>

<ul empty="true"><li>
  <t>Expand the section on alternatives for initial bootstrap
to suggest a mechanism similar to what is used for automatic
bootstrap of DNSSEC signed delegations via multiple queries
for child the CDS RRset.</t>
</li></ul>

<ul empty="true"><li>
  <t>Added a section on scalability considerations.</t>
</li></ul>

<ul empty="true"><li>
  <t>Expanded the Security Considerations section with a paragraph on
the potential for DDOS attacks aimed at the UPDATE Receiver.</t>
</li></ul>

<t><list style="symbols">
  <t>draft-johani-dnsop-delegation-mgmt-via-ddns-02</t>
</list></t>

<ul empty="true"><li>
  <t>Update the references to the (updated) I-D for generalized
notifications.</t>
</li></ul>

<ul empty="true"><li>
  <t>Remove duplicated descriptions between the two drafts. It is
sufficient that the generalized notification draft describes the
mechanics.</t>
</li></ul>

<t><list style="symbols">
  <t>draft-johani-dnsop-delegation-mgmt-via-ddns-01</t>
</list></t>

<ul empty="true"><li>
  <t>Change the RRtype from the original "NOTIFY" to the proposed "DSYNC"</t>
</li></ul>

<ul empty="true"><li>
  <t>Expand the description of how to interpret different RCODE responses
to the UPDATE. Expand the description of bootstrapping
alternatives. Change the mnemonic of the RR type used from "NOTIFY"
to "DSYNC" in the examples.</t>
</li></ul>

<t><list style="symbols">
  <t>draft-johani-dnsop-delegation-mgmt-via-ddns-00</t>
</list></t>

<ul empty="true"><li>
  <t>Initial public draft.</t>
</li></ul>

</section>


  </back>

<!-- ##markdown-source:
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

-->

</rfc>

