<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.39 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-deleg-09" category="std" consensus="true" submissionType="IETF" updates="1034, 1035, 4035, 6672, 6840" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.33.0 -->
  <front>
    <title abbrev="DELEG">Extensible Delegation for DNS</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-deleg-09"/>
    <author initials="P." surname="Špaček" fullname="Petr Špaček">
      <organization>ISC</organization>
      <address>
        <email>pspacek@isc.org</email>
      </address>
    </author>
    <author initials="R." surname="Weber" fullname="Ralf Weber">
      <organization>Akamai Technologies</organization>
      <address>
        <email>rweber@akamai.com</email>
      </address>
    </author>
    <author initials="D." surname="Lawrence" fullname="David C Lawrence">
      <organization>Salesforce</organization>
      <address>
        <email>tale@dd.org</email>
      </address>
    </author>
    <date year="2026" month="June" day="04"/>
    <area>Internet</area>
    <workgroup>deleg</workgroup>
    <keyword>Internet-Draft</keyword>
    <keyword>DNS</keyword>
    <keyword>delegation</keyword>
    <abstract>
      <?line 46?>
<t>This document proposes a new extensible method for the delegation of authority for a domain in the Domain Name System (DNS) using DELEG and DELEGPARAM records.</t>
      <t>A delegation in the DNS enables efficient and distributed management of the DNS namespace.
The traditional DNS delegation is based on NS records which contain only hostnames of servers and no other parameters.
The new delegation records are extensible, can be secured with DNSSEC, and eliminate the problem of having two sources of truth for delegation information.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://github.com/ietf-wg-deleg/draft-ietf-deleg-base/tree/gh-pages"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-deleg/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        deleg Working Group mailing list (<eref target="mailto:dd@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/dd/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/dd/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-deleg/draft-ietf-deleg-base/"/>.</t>
    </note>
  </front>
  <middle>
    <?line 53?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>In the Domain Name System, responsibility for each subdomain within the domain name hierarchy can be delegated to different servers, which makes them authoritative for their portion of the namespace.</t>
      <t>The original DNS record that does this, called an NS record, contains only the hostname of a single name server and no other parameters.
The resolver needs to resolve these names into usable addresses and infer other required parameters, such as the transport protocol and any other protocol features.
Moreover, the NS record set exists in two places--one at the delegation point, and the other at the apex of the delegated zone, which might not match the NS records at the delegation.
The DNS Security Extensions (DNSSEC) protect only one copy, those in the apex.</t>
      <t>These properties of NS records limit resolvers to unencrypted messages on UDP and TCP port 53, and this initial contact cannot be protected with DNSSEC.
These limitations are a barrier for the efficient introduction of new DNS technology.</t>
      <t>The proposed DELEG and DELEGPARAM resource record (RR) types remedy this problem by providing extensible parameters to indicate authoritative name server capabilities and additional information, such as other transport protocols that a resolver may use.</t>
      <t>The DELEG record creates a new delegation.
It is authoritative at the delegation point and thus can be signed with DNSSEC.
This makes it possible to validate all delegation parameters, including those of future extensions.</t>
      <t>The DELEGPARAM record is an auxiliary record which does not create a delegation provides an optional layer of indirection.
It can be used to share the same delegation information across any number of zones, simplifying operations management by reducing the number of situations for which the delegation information for a domain would need to be changed at the delegation point.
For example, if the customers of a DNS operator point their delegations to a DELEGPARAM record managed by the DNS operator, then the operator can make changes without requiring the customers to have to update the delegation point.</t>
      <t>The DELEG record can be used alongside, or even instead of, an NS record to create a delegation.
The combination of DELEG+NS is fully compatible with old resolvers, facilitating the incremental rollout of this new method.</t>
      <t>Future documents can use the extensibility mechanism for more advanced features, like connecting to a name server with an encrypted transport.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in <br/>
BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in
all capitals, as shown here.</t>
        <t>Terminology regarding the Domain Name System comes from <xref target="BCP219"/>, with additional terms defined here:</t>
        <ul spacing="normal">
          <li>
            <t>legacy delegation: A delegation that is done with an NS RRset</t>
          </li>
          <li>
            <t>DELEG-aware: A DNS software that follows the protocol defined in this document</t>
          </li>
          <li>
            <t>DELEG-unaware: A DNS software that does not follow the protocol defined in this document</t>
          </li>
          <li>
            <t>non-DELEG specifications: DNS protocols that predate this protocol, or are written after this protocol is published but are not related to this protocol</t>
          </li>
          <li>
            <t>Delegation NS RRset: An NS RRset that delegates authority of subdomain to a set of authoritative servers</t>
          </li>
          <li>
            <t>Authoritative NS RRset: An NS RRset at the apex of a zone.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>This section is a brief overview of the protocol.
It is meant for people who want to understand the protocol before they dive deeper into the specifics.</t>
      <t>When a DELEG-aware resolver sends queries, it sets the DE bit in the EDNS0 header to 1 in queries to authoritative servers, as a signal that it is DELEG-aware (<xref target="de-bit"/>).</t>
      <t>DELEG-unaware authoritative servers intrinsically ignore this signal.</t>
      <t>A DELEG-aware authoritative server uses that signal to determine the type of response it will send.
If the response is not a referral, the authoritative server doesn't change anything about how it responds (<xref target="ns-no-deleg"/>).
If the response is a referral, the authoritative server checks if there is a DELEG RRset for the queried zone. If so, it returns the DELEG RRset instead of any NS RRset in the response (<xref target="aware-referral"/>).</t>
      <t>Records in the DELEG RRset for a zone describe how to find name servers for that zone (<xref target="deleg-delegparam"/>).
The RDATA for DELEG records has key=value pairs (<xref target="nameserver-info"/>).</t>
      <ul spacing="normal">
        <li>
          <t>"server-ipv4" and "server-ipv6" keys contain one or more IP addresses for the delegated name servers</t>
        </li>
        <li>
          <t>"server-name" key contains one or more hostnames for the delegated name servers; the addresses must be fetched separately</t>
        </li>
        <li>
          <t>"include-delegparam" key contains one or more domain names which in turn have more information about the delegation</t>
        </li>
        <li>
          <t>"mandatory" key contains a list of other keys which must be present in the same record, and which the resolver must understand in order to use that record</t>
        </li>
      </ul>
      <t>The DELEG-aware resolver uses the information in the DELEG RRset to form the list of best servers to ask about the original zone (<xref target="finding-best"/>).
If the DELEG RRset contains "include-delegparam", the resolver queries those hostnames for DELEGPARAM RRsets.
DELEGPARAM records have the same format as DELEG records; thus, they can have the same key=value pairs.</t>
      <t>The DELEG protocol changes how zones are signed (<xref target="signers"/>) and validated (<xref target="dnssec-validators"/>).
The changes are primarily because DELEG RRsets are authoritative at the delegation point and thus are signed and validated as authoritative data, similar to DS records.</t>
      <t>A zone might be delegated with only DELEG records but no NS records.
Such a zone would be invisible to DELEG-unaware resolvers.</t>
      <t>In order to protect validators from downgrade attacks, this document introduces a new DNSKEY flag called ADT (Authoritative Delegation Types), described in <xref target="validator-downgrade-protection"/>.</t>
      <t>There are many parts of the DELEG protocol that are not included in this brief overview.
For example, DELEG-aware authoritative servers have choices to make depending both on the request and the contents of the zone file.
For those readers who learn better from examples than the definitive text, see <xref target="examples"/>.</t>
    </section>
    <section anchor="deleg-delegparam">
      <name>DELEG and DELEGPARAM Resource Record Types</name>
      <t>The DELEG record, RR type TBD, and the DELEGPARAM record, RR type TBD2 (different from that of DELEG), have the same wire and presentation formats,
but their semantics are different as described in a following section.
These records are defined for the IN class.</t>
      <t>The record format is based on the extensible key=value list that was originally defined as "SvcParams" for the SVCB record type <xref target="RFC9460"/>.
Unlike SVCB, the DELEG protocol does not have "SvcPriority" and "TargetName" fields.
The keys in the DELEG protocol are also different than those used in SVCB.
To avoid confusion between the two protocols, the list of key=value parameters used by the DELEG protocol are called DelegInfos and are tracked in their own IANA registry for Delegation Information.</t>
      <t>The following rules are adapted from SVCB, but with changed names:</t>
      <ul spacing="normal">
        <li>
          <t>The whole RDATA consists of a single list called "DelegInfos".</t>
        </li>
        <li>
          <t>DelegInfos consists of individual DelegInfo key=value pairs.</t>
        </li>
        <li>
          <t>Each DelegInfo pair has a DelegInfoKey and a possibly optional DelegInfoValue.</t>
        </li>
        <li>
          <t>Each DelegInfo has a specified presentation format and wire encoding.</t>
        </li>
        <li>
          <t>Each DelegInfoKey has a presentation name and a registered key number.</t>
        </li>
        <li>
          <t>Each DelegInfoValue is in a format specific to its DelegInfoKey.</t>
        </li>
      </ul>
      <t>Implementations can reuse the same code to parse SvcParams and DelegInfos and only plug in a different list of key=value pairs for the SVCB/HTTPS and DELEG/DELEGPARAM record families.</t>
      <t>The initial set of DelegInfoKeys and their formats are defined in <xref target="nameserver-info"/>.</t>
      <section anchor="presentation-format">
        <name>Presentation Format</name>
        <t>The RDATA presentation format of the DELEG and DELEGPARAM resource records consists of a single list, DelegInfos.</t>
        <t>The DelegInfos presentation format is defined exactly the same as SvcParams in Section 2.1 of <xref target="RFC9460"/>. The following rules are adapted from SVCB, but with changed names:</t>
        <ul spacing="normal">
          <li>
            <t>DelegInfos is a whitespace-separated list with each DelegInfo consisting of a DelegInfoKey=DelegInfoValue pair, or a standalone DelegInfoKey.</t>
          </li>
          <li>
            <t>Individual element definitions are the same as <xref target="RFC9460"/>:
            </t>
            <ul spacing="normal">
              <li>
                <t>The DelegInfo syntax is the same as SvcParam, but it references DelegInfo elements instead of SvcParam elements.</t>
              </li>
              <li>
                <t>The DelegInfoKey syntax is the same as SvcParamKey.</t>
              </li>
              <li>
                <t>The syntax for unknown keys in Section 2.1 of <xref target="RFC9460"/> applies.</t>
              </li>
              <li>
                <t>The DelegInfoValue syntax is the same as SvcParamValue.</t>
              </li>
              <li>
                <t>The rules from Appendix A of <xref target="RFC9460"/> apply.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>All the requirements in Section 2.1 of <xref target="RFC9460"/> apply.</t>
          </li>
        </ul>
        <t>DelegInfos MAY be zero-length; this is similar to what is allowed in SVCB records.</t>
      </section>
      <section anchor="rdata-wire-format">
        <name>RDATA Wire Format</name>
        <t>The RDATA portion of the DELEG and DELEGPARAM resource record is variable length and entirely consists of a single "DelegInfos" element:</t>
        <artwork><![CDATA[
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/                         DelegInfos                            /
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        <t>The format of the DelegInfos element is identical to the format of the SvcParams element defined in <xref target="RFC9460"/> Section 2.2,
including the requirements for strictly increasing numeric order to keys and no key duplication allowed.</t>
        <t>All the requirements in Section 2.2 of <xref target="RFC9460"/> apply.</t>
        <t>The DelegInfos element is a sequence of individual DelegInfo elements and MAY be empty.
The wire format of an individual DelegInfo element is the same as for a SvcParam element,
but it references DelegInfo elements instead of SvcParam elements.</t>
        <artwork><![CDATA[
                +0 (MSB)                            +1 (LSB)
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
0:  |                          DelegInfoKey                         |
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2:  |                length of DelegInfoValue                       |
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
4:  /                          DelegInfoValue ...                   /
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        <t>The permissible lengths depend on the DelegInfoKey value.
Some future keys may have no DelegInfoValue, which would be indicated with an explicit 0 length.</t>
      </section>
      <section anchor="semantics">
        <name>Semantics</name>
        <t>The following is a brief summary of semantic differences between the DELEG and DELEGPARAM types.</t>
        <ul spacing="normal">
          <li>
            <t>DELEG creates a delegation for its owner name, similar to the NS RR type.</t>
          </li>
          <li>
            <t>DELEG and NS RR types can coexist at the same owner name.</t>
          </li>
          <li>
            <t>DELEG is authoritative at the delegation point, similar to the DS RR type, and unlike the NS RR type.</t>
          </li>
          <li>
            <t>DELEG is signed when using DNSSEC, similar to the DS RR type, and unlike the NS RR type.</t>
          </li>
          <li>
            <t>DELEG cannot be present at the apex of the delegated zone, similar to the DS RR type, and unlike the NS RR type.</t>
          </li>
          <li>
            <t>DELEG has special processing for being included in answers.</t>
          </li>
        </ul>
        <t>Conversely,</t>
        <ul spacing="normal">
          <li>
            <t>DELEGPARAM is an ordinary RR and doesn't require any special processing.</t>
          </li>
          <li>
            <t>DELEGPARAM does not create a delegation for its owner name.</t>
          </li>
          <li>
            <t>DELEGPARAM cannot exist at a delegation point.</t>
          </li>
          <li>
            <t>DELEGPARAM DNSSEC-signing and record-placement rules are the same as for any ordinary RR type.</t>
          </li>
          <li>
            <t>DELEGPARAM is used as the target of the DELEG protocol's "include-delegparam" mechanism, as described in section <xref target="slist"/>.</t>
          </li>
        </ul>
        <t>Note that neither DELEG nor DELEGPARAM trigger Additional Section processing like NS does.
The significance of this difference is addressed more in the next section.</t>
      </section>
      <section anchor="nameserver-info">
        <name>Name Server Information for Delegation</name>
        <t>The DELEG and DELEGPARAM records have four keys that describe information about name servers.
The purpose of this information is to populate the SLIST (see <xref target="slist"/>) with IP addresses of the name servers for a zone.</t>
        <t>The types of information defined in this document are:</t>
        <ul spacing="normal">
          <li>
            <t>server-ipv4: an unordered collection of IPv4 addresses for name servers</t>
          </li>
          <li>
            <t>server-ipv6: an unordered collection of IPv6 addresses for name servers</t>
          </li>
          <li>
            <t>server-name: an unordered collection of hostnames of name servers; the addresses must be fetched separately</t>
          </li>
          <li>
            <t>include-delegparam: an unordered collection of domain names that point to DELEGPARAM RRsets, which in turn have more information about the delegation</t>
          </li>
        </ul>
        <t>These keys MUST have a non-empty DelegInfoValue.</t>
        <t>The presentation values for server-ipv4 and server-ipv6 are comma-separated lists of one or more IP addresses of the appropriate family in standard textual format <xref target="RFC5952"/> <xref target="RFC4001"/>.
The wire formats for server-ipv4 and server-ipv6 are a sequence of IP addresses, in network byte order, for the respective address family.</t>
        <t>The presentation values for server-name and include-delegparam are an unordered collection of fully-qualified domain names and relative domain names, separated by commas.
Relative names in the presentation format are interpreted according to the origin rules in Section 5.1 of <xref target="RFC1035"/>.
Parsing the comma-separated list is specified in Section A.1 of <xref target="RFC9460"/>.</t>
        <t>The DELEG protocol allows the use of all valid domain names, as defined in <xref target="RFC1035"/> and Section 11 of <xref target="RFC2181"/>.
The presentation format for names with special characters requires both double-escaping by applying rules of Section 5.1 of <xref target="RFC1034"/> together with the escaping rules from Section A.1 of <xref target="RFC9460"/>.</t>
        <t>TODO: add an example that requires this escaping.</t>
        <t>The wire format for server-name and include-delegparam are each a concatenated unordered collection of wire-format domain names, where the root label provides the separation between names:</t>
        <artwork><![CDATA[
+-+-+-+-+-+-+-+-+-+-+-+-+-+-
| name | name | name | ... |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-
]]></artwork>
        <t>The names in the wire format MUST NOT be compressed, per <xref target="RFC3597"/>.</t>
        <t>For interoperability with the resolver algorithm defined in section <xref target="slist"/>,
a DELEG or DELEGPARAM record that has a non-empty DelegInfos MUST have one, and only one, set of server information keys, chosen from the following:</t>
        <ul spacing="normal">
          <li>
            <t>one server-ipv4 key</t>
          </li>
          <li>
            <t>one server-ipv6 key</t>
          </li>
          <li>
            <t>a pair consisting of one server-ipv4 key and one server-ipv6 key</t>
          </li>
          <li>
            <t>one server-name key</t>
          </li>
          <li>
            <t>one include-delegparam key</t>
          </li>
        </ul>
        <t>This restriction only applies to a single DELEG or DELEGPARAM record; a DELEG or DELEGPARAM RRset can have records with different server information keys.
Authoritative servers MAY refuse to load zones which have a disallowed combination of keys in a single record.</t>
        <t>When using server-name or include-delegparam, the addresses for the names in the set must be fetched as if they were referenced by NS records.
Because of the lack of Additional Section processing, there are no "glue" records provided for these names, so they cannot be for names inside the delegated domain.</t>
        <t>With this initial DELEG specification, servers are still expected to be reached on the standard DNS port for both UDP and TCP, 53.  While a future specification is expected to address other transports using other ports, its eventual semantics are not covered here.</t>
      </section>
      <section anchor="mandatory">
        <name>Metadata keys</name>
        <t>This specification defines a key which serves as a protocol extensibility mechanism, but is not directly used for contacting DNS servers.</t>
        <t>Any DELEG or DELEGPARAM record can have key named "mandatory" which is similar to the key of the same name in <xref target="RFC9460"/>.</t>
        <t>The presentation format for the value MUST be a comma-separated list of one or more valid DelegInfoKeys, either by their registered name or in the unknown-key format.</t>
        <t>The wire format for the value is a sequence of DelegInfoKey numeric values in network byte order, concatenated, in strictly increasing numeric order.</t>
        <t>The "mandatory" key is optional, but when it is present, the RR in which it appears MUST also contain all of the DelegInfoKeys referenced in its DelegInfoValue.
Resolvers MUST handle non-compliant RRs as specified in <xref target="slist"/>.</t>
        <t>A resolver MUST NOT use an RR with a "mandatory" key in the resolution process unless all of the DelegInfoKeys referenced by the "mandatory" DelegInfoValue are supported in the resolver's implementation.
See <xref target="slist"/>.</t>
      </section>
    </section>
    <section anchor="de-bit">
      <name>Signaling DELEG Support</name>
      <t>This document defines a new EDNS flag to signal that an initiator and responder are DELEG-aware.</t>
      <t>This flag is referred to as the "DELEG" (DE) bit, expected to be assigned by IANA as Bit 2 in the EDNS Header Flags registry.
It is part of OPT RR TTL as described in <xref target="RFC6891"/>, as follows:</t>
      <artwork><![CDATA[
            +0 (MSB)                +1 (LSB)
     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
  0: |   EXTENDED-RCODE      |       VERSION         |
     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
  2: |DO|CO|DE|              Z                       |
     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
]]></artwork>
      <t>If a query has the DE bit set to 1, and the responder is DELEG-aware, the responder MUST set the DE bit in the response to 1, independent of whether the response includes any DELEG or DELEGPARAM records.</t>
    </section>
    <section anchor="use-of-deleg-records">
      <name>Use of DELEG Records</name>
      <t>The DELEG RRset MAY contain multiple records.
A DELEG RRset MAY be present with or without NS or DS RRsets at the delegation point, though without NS records then DELEG-unaware software will not be able to resolve records in the the delegated zone.</t>
      <t>DELEG RRsets MUST NOT appear at a zone's apex.
The erroneous inclusion of DELEG RRset at zone's apex will cause DNSSEC validation failures.
Servers MAY refuse to load such an invalid zone, similar to the DS RR type.</t>
      <t>Both the DELEG protocol and legacy delegations (that is, NS records) will be used for delegation for a long time.
Both legacy delegations and the DELEG protocol enable recursive resolution.
A DELEG-aware resolver therefore does not need the NS records or glue information in a DELEG referral response, and MUST NOT get them; see <xref target="downgrade-attacks"/>.</t>
      <section anchor="resolvers">
        <name>Resolvers</name>
        <t>A resolver that is DELEG-aware MUST signal in queries that it supports the DELEG protocol by setting the DE bit to 1 in (see <xref target="de-bit"/>).
This indicates that the resolver understands the DELEG semantics and does not need NS records to follow a referral.</t>
        <t>The DE bit set to 0 indicates the resolver is not DELEG-aware, and therefore can only be served referrals with NS records and other data according to non-DELEG specifications.
Other special scenarios with DE=0 queries to DELEG-aware authorities are addressed in <xref target="authoritative-servers"/>.</t>
        <section anchor="referral">
          <name>Referral</name>
          <t>The DELEG record creates a delegation point similar to the NS record.</t>
          <t>If one or more DELEG records exist at a given delegation point, a DELEG-aware resolver MUST treat the name servers from those DELEG records as authoritative for the delegated zone.
In such a case, a DELEG-aware resolver MUST NOT use NS records for the zone if they are learned, even if resolution using DELEG records has failed.
Such fallback from DELEG to NS would invalidate the security guarantees of the DELEG protocol; see <xref target="downgrade-attacks"/>.</t>
          <t>If no DELEG record exists at a given delegation point, DELEG-aware resolvers MUST use NS records as specified by <xref target="RFC1034"/>.</t>
        </section>
        <section anchor="delegation-point-types-qtypedeleg">
          <name>Delegation point types, QTYPE=DELEG</name>
          <t>Record types defined as authoritative at a delegation point, currently the DS and DELEG types, retain the same special handling as described in Section 2.6 of <xref target="RFC4035"/>.</t>
          <t>DELEG-unaware resolvers can get different types of answers for QTYPE=DELEG queries based on the configuration of the server, such as whether it is DELEG-aware and whether it also is authoritative for subdomains.
For example, a DELEG-unaware authoritative name server which has loaded DELEG records via the <xref target="RFC3597"/> unknown types mechanism would answer with them only if there were no NS records at the owner name, and answer with an NS delegation otherwise.
See <xref target="de0-deleg"/> for more information.</t>
        </section>
        <section anchor="finding-best">
          <name>Algorithm for "Finding the Best Servers to Ask"</name>
          <t>This document updates instructions for finding the best servers to ask.
It was covered in Section 5.3.3 of <xref target="RFC1034"/> and Section 3.4.1 of <xref target="RFC6672"/> with the text "2. Find the best servers to ask.".
These instructions were informally updated by section 4.2 of <xref target="RFC4035"/> for the DS RR type but the algorithm change was not made explicit.
This document simply extends this existing behavior from the DS RR type to the DELEG RR type as well, and makes this special case explicit.</t>
          <t>When a DELEG RRset exists for a delegation in a zone, DELEG-aware resolvers ignore any NS RRset for the delegated zone, whether from the delegation point or from the apex of the delegated zone.</t>
          <t>Each delegation level can have a mixture of DELEG and NS RR types, and DELEG-aware resolvers MUST be able to follow chains of delegations which combines both types in arbitrary ways.</t>
          <t>An example of a valid delegation tree:</t>
          <artwork><![CDATA[
; root zone with NS-only delegations
. SOA ...
test. NS ...

; test. zone with NS+DELEG delegations
test. SOA ...
sld.test. NS ...
sld.test. DELEG ...

; sld.test. zone with NS-only delegation
sld.test. SOA ...
nssub.sld.test. NS ...

; nssub.sld.test. zone with DELEG-only delegation
delegsub.sub.sld.test. DELEG ...
]]></artwork>
          <t>TODO: after the text below, refer back to this figure and show the order that a DELEG-aware resolver would take when there is a failure to find any good DELEG addresses at sub.sld.test, then any usable name servers at sub.sld.test, and then maybe a good DELEG record at test.</t>
          <t>The terms SNAME and SLIST used here are defined in Section 5.3.2 of <xref target="RFC1034"/>. Quote:</t>
          <ul spacing="normal">
            <li>
              <t>SNAME is the domain name we are searching for.</t>
            </li>
            <li>
              <t>SLIST is a structure which describes the name servers and the zone which the resolver is currently trying to query.</t>
            </li>
          </ul>
          <t>This document defines SLIST to be a set. Each individual value MUST be represented only once in the final SLIST even if it was encountered multiple times during SLIST construction.</t>
          <t>Neither <xref target="RFC1034"/> nor this document define how a resolver uses SLIST; they only define how to populate it.</t>
          <t>A DELEG-aware SLIST needs to be able to hold two types of information, delegations defined by NS records and delegations defined by DELEG records.
DELEG and NS delegations can create cyclic dependencies and/or lead to duplicate entries which point to the same server.
Resolvers SHOULD enforce suitable limits to prevent runaway processing even if someone has incorrectly configured some of the data used to create an SLIST;
this is the same recommendation to bound the amount of work as is made in Section 5.3.3 of <xref target="RFC1034"/>.</t>
          <t>Step 2 of Section 5.3.3 of <xref target="RFC1034"/> is just "2. Find the best servers to ask."
For DELEG-aware resolvers, this description becomes:</t>
          <t>=====</t>
          <t>2. Find the best servers to ask:</t>
          <t>2.1. Determine deepest possible zone cut which can potentially hold the answer for a given (query name, type, class) combination:</t>
          <t>2.1.1. Start with SNAME equal to QNAME.</t>
          <t>2.1.2. If QTYPE is a type that is authoritative at the delegation point (currently, DS or DELEG), remove the leftmost label from SNAME.
For example, if the QNAME is "test.example." and the QTYPE is DELEG or DS, set SNAME to "example.".</t>
          <t>2.2. Look for locally-available DELEG and NS RRsets, starting at current SNAME.</t>
          <t>2.2.1. For a given SNAME, check for the existence of a DELEG RRset.
If it exists, the resolver MUST use its content to populate SLIST.
However, if the DELEG RRset is known to exist but is unusable (for example, if it is found in DNSSEC BAD cache, or content of individual RRs is unusable for any reason), the resolver MUST NOT instead use an NS RRset; instead, the resolver MUST treat this case as if SLIST is populated with unreachable servers.</t>
          <t>2.2.2. If a given SNAME is proven to not have a DELEG RRset but does have an NS RRset, the resolver MUST copy the NS RRset into SLIST.</t>
          <t>2.2.3. If SLIST is now populated, stop walking up the DNS tree.</t>
          <t>2.2.4. However, if SLIST is not populated, remove the leftmost label from SNAME and go back to step 2.2, using the newly shortened SNAME.</t>
          <t>=====</t>
          <t>The rest of Step 2's description in Section 5.3.3 of <xref target="RFC1034"/> is not affected by this document.</t>
          <t>Resolvers MUST respond to "QNAME=. / QTYPE=DELEG" queries in the same fashion as they respond to "QNAME=. / QTYPE=DS" queries.</t>
        </section>
        <section anchor="slist">
          <name>Populating the SLIST from DELEG and DELEGPARAM Records</name>
          <t>Each individual DELEG record inside a DELEG RRset, or each individual DELEGPARAM record in a DELEGPARAM RRset, can cause the addition of zero or more entries to SLIST.</t>
          <t>A resolver processes each individual DELEG record within a DELEG RRset, or each individual DELEGPARAM record in a DELEGPARAM RRset, using the following steps:</t>
          <ol spacing="normal" type="1"><li>
              <t>Discard all DelegInfo elements with DelegInfoKey values that are not supported by the resolver implementation.
If no DelegInfo elements remain after this filtering, stop processing the record.
Otherwise, continue using only the supported DelegInfo elements.</t>
            </li>
            <li>
              <t>If a DelegInfo element with the "mandatory" DelegInfoKey is present, check its DelegInfoValue.
The DelegInfoValue is a list of keys which MUST have corresponding DelegInfo elements in the record after the filtering in the previous steps.
If any of the listed DelegInfo elements is not present, stop processing this record.</t>
            </li>
            <li>
              <t>If a record has more than one type of server information key (excluding the IPv4/IPv6 case, see <xref target="nameserver-info"/>), or if it has multiple server information keys of the same type, that record is malformed.
Stop processing this record.</t>
            </li>
            <li>
              <t>If any DNS name referenced by server-name key or the include-delegparam key is equal to or is a subdomain of the delegated domain (i.e. the DELEG record owner), that record is malformed.
Stop processing this record.  </t>
              <t>
This check MUST be performed against the original owner name of the DELEG record even if the currently-processed record is a DELEGPARAM record that was included by the original DELEG record. The purpose of this check is to ensure deterministic behavior. Not performing this check would allow delegations to be reachable only with certain cache content and/or a specific algorithm for server selection from SLIST.</t>
            </li>
            <li>
              <t>If server-ipv4 and/or server-ipv6 keys are present inside the record, copy all of the address values into SLIST.
Stop processing this record.</t>
            </li>
            <li>
              <t>If a server-name key is present in the record, resolve each name in the value into IPv4 and/or IPv6 addresses.
Copy these addresses into SLIST.
Stop processing this record.</t>
            </li>
            <li>
              <t>If an include-delegparam key is present in the record, resolve each name in the value using the DELEGPARAM RR type.
Recursively apply the algorithm described in this section, after checking that the maximum loop count described in <xref target="too-much-work"/> has not been reached.</t>
            </li>
            <li>
              <t>If none of the above applies, SLIST is not modified by this particular record.</t>
            </li>
          </ol>
          <t>A DELEG-aware resolver MAY implement lazy filling of SLIST, such as by deferring processing of remaining records, or even individual names or query types, if SLIST already has what the resolver considers a sufficiently large pool of addresses to contact.</t>
          <t>The order in which to try the servers in the final SLIST is outside the scope of this document.</t>
        </section>
      </section>
      <section anchor="authoritative-servers">
        <name>Authoritative Servers</name>
        <t>The DELEG RR type defines a zone cut in similar way as the NS RR type.
Behavior defined for zone cuts in existing non-DELEG specifications apply to zone cuts created by the DELEG record.
A notable example of this is that the occlusion (usually accidentally) created by delegation NS records would also be created by DELEG records at a delegation point (see <xref target="occluded-example"/>).
Rules for setting Authoritative Answer (AA) bit in answers also remain unchanged: the DELEG RR type has the same special treatment as DS RR type.</t>
        <t>DELEG-aware authoritative servers act differently when handling queries from DELEG-unaware clients (those with DE=0) than from DELEG-aware clients (those with DE=1).
See <xref target="de-bit"/> and <xref target="resolvers"/>.</t>
        <section anchor="aware-referral">
          <name>DELEG-aware Clients</name>
          <t>When the client indicates that it is DELEG-aware by setting DE=1 in the query, DELEG-aware authoritative servers treat DELEG records as delegations, and the servers are authoritative.
This new zone cut has priority over a legacy delegation.</t>
          <section anchor="deleg-aware-clients-requesting-qtypedeleg">
            <name>DELEG-aware Clients Requesting QTYPE=DELEG</name>
            <t>An explicit query for the DELEG RR type at a delegation point behaves much like a query for the DS RR type: the server answers authoritatively from the delegating zone.
All non-DELEG specifications for the special handling of queries with QTYPE=DS apply equally to QTYPE=DELEG.
In summary, the server either provides an authoritative DELEG RRset or declares its non-existence, with relevant DNSSEC proofs when requested and available.</t>
          </section>
          <section anchor="delegation-with-deleg">
            <name>Delegation with DELEG</name>
            <t>If the delegation has a DELEG RRset, the authoritative server MUST put the DELEG RRset into the Authority section of the referral.
In this case, the server MUST NOT include the NS RRset in the Authority section.</t>
            <t>Non-DELEG DNSSEC specifications for RRSIG inclusion in answers with authoritative RRsets ({!RFC4035} section 3.1.1) MUST be followed.
Similarly, rules for DS RRset inclusion in referrals apply as specified by the DNSSEC protocol.</t>
          </section>
          <section anchor="ns-no-deleg">
            <name>DELEG-aware Clients with NS RRs Present but No DELEG RRs</name>
            <t>If the delegation does not have a DELEG RRset, the authoritative server MUST put the NS RRset into the authority section of the referral.
The absence of the DELEG RRset MUST be proven as specified by the DNSSEC protocol for authoritative data.</t>
            <t>Similarly, rules for DS RRset inclusion into referrals apply as specified by the DNSSEC protocol.
Please note, in practice the same process and records are used to prove the non-existence of both DELEG and DS RRsets.</t>
          </section>
        </section>
        <section anchor="deleg-unaware-clients">
          <name>DELEG-unaware Clients</name>
          <t>A general principle for DELEG-aware authoritative servers is that they respond to a DELEG-unaware client by following non-DELEG specifications.</t>
          <t>DELEG-unaware clients do not recognize DELEG records as a delegation point and are not aware of the special handling rules for DELEG records.
They understand a DELEG RRset as an ordinary unknown RR type.</t>
          <t>In summary, DELEG records are not returned in referral responses to DELEG-unaware clients,
and DELEG-unaware clients do not consider DELEG records authoritative at a delegation point.</t>
          <t>An authoritative server responding to DELEG-unaware clients has to handle three distinct situations:</t>
          <ul spacing="normal">
            <li>
              <t>No DELEG RRset is present. In this case, the authoritative server follows the non-DELEG specifications.</t>
            </li>
            <li>
              <t>An NS RRset and a DELEG RRset are both present. In this case, the authoritative server uses the NS RRset when constructing referral responses, following the non-DELEG specifications. See also <xref target="signers"/> and <xref target="examples"/>.</t>
            </li>
            <li>
              <t>A DELEG RRset is present, but an NS RRset is not.  This is addressed in the next section.</t>
            </li>
          </ul>
          <section anchor="no-ns">
            <name>DELEG-unaware Clients with DELEG RRs Present but No NS RRs</name>
            <t>Authoritative servers may receive requests from DELEG-unaware clients for which the child zone is authoritative and is delegated with DELEG RRs only (that is, without any NS RRs).
Such a zone is, by definition, not resolvable for DELEG-unaware clients.
From the perspective of a DELEG-unaware client, the zone cut created by the DELEG RRs is invisible.
The authoritative server should respond in a way that makes sense to DELEG-unaware clients.</t>
            <t>The current, primary use case for zone owners that have zones to have DELEG records but no NS records is that they want resolution of those zones only if the resolver uses future features of the DELEG protocol, such as encrypted DNS transports.</t>
            <t>The authoritative server is RECOMMENDED to supplement its responses to DELEG-unaware resolvers with an <xref target="RFC8914"/> Extended DNS Error using the (IANA-TBD) value "New Delegation Only" from the Extended DNS Error Codes registry.</t>
            <t>When there is no NS records for a delegated zone, a DELEG-aware authoritative server MUST respond to DELEG-unaware clients with an answer that accurately describes the situation to a DELEG-unaware resolver.
For a query of the delegated zone itself, the response has an RCODE of NOERROR; for a query that has more labels than the delegated zone, the response has an RCODE of NXDOMAIN; this is no different than what is already specified by algorithms in <xref target="RFC1034"/> and subsequent updates.
NSEC and DS records are returned following the existing rules in <xref target="RFC4035"/>.</t>
          </section>
          <section anchor="de0-deleg">
            <name>DELEG-unaware Clients Requesting QTYPE=DELEG</name>
            <t>From the perspective of DELEG-unaware clients, the DELEG RR type does not have special semantics and should behave like an old ordinary RR type such as TXT.
Thus, queries with DE=0 and QTYPE=DELEG MUST result in a response which can be validated by a DELEG-unaware client.</t>
            <ul spacing="normal">
              <li>
                <t>If there is an NS RRset, this will be a legacy referral. From the perspective of a DELEG-unaware client, the DELEG RR is effectively occluded by NS RRset.
The DELEG-unaware resolver can then obtain a final answer which can be validated from the delegated zone in similar fashion as described in <xref target="RFC4035"/> section 3.1.4.1.</t>
              </li>
              <li>
                <t>If there is no NS RRset but there is a DELEG RRset, this will be a normal authoritative response with the DELEG RRset, following non-DELEG specifications.</t>
              </li>
              <li>
                <t>If there is no NS RRset and no DELEG RRset, this will be a standard negative response following non-DELEG specifications.</t>
              </li>
            </ul>
            <t>TODO: Should we have an example with auth having parent+child zone at the same time, and DE=0 QTYPE=DELEG query?  What about QTYPE=ANY?</t>
          </section>
        </section>
      </section>
      <section anchor="signers">
        <name>DNSSEC Signers</name>
        <t>The DELEG record is authoritative at the delegation point and needs to be signed as such.
Existing rules from the DNSSEC specifications apply.</t>
        <t>In summary: for DNSSEC signing, treat the DELEG RR type the same way as the DS RR type.</t>
        <t>The DELEG RR type defines a zone cut in similar way as the NS RR type.
This has several consequences which stem from existing non-DELEG specifications:</t>
        <ul spacing="normal">
          <li>
            <t>All owner names below zone cut are occluded and thus not present in NSEC chains.</t>
          </li>
          <li>
            <t>All RRsets which are not permissible at the delegation point are occluded too and not represented in NSEC chain type bitmap.</t>
          </li>
        </ul>
        <t>See examples in <xref target="example-root"/> and <xref target="example-occluded"/>.</t>
        <t>In order to protect validators from downgrade attacks (see <xref target="downgrade-attacks"/>) this draft introduces a new DNSKEY flag ADT (Authoritative Delegation Types, see <xref target="validator-downgrade-protection"/>).
To achieve downgrade resistance, DNSSEC-signed zones which contain a DELEG RRset MUST set ADT flag to 1 in at least one of the DNSKEY records published in the zone.</t>
      </section>
      <section anchor="dnssec-validators">
        <name>DNSSEC Validators</name>
        <t>DELEG awareness introduces additional requirements on validators.</t>
        <section anchor="clarifications-on-nonexistence-proofs">
          <name>Clarifications on Nonexistence Proofs</name>
          <t>This document updates Section 4.1 of <xref target="RFC6840"/> to include "NS or DELEG" types in the type bitmap as indication of a delegation point, and generalizes applicability of ancestor delegation proof to all RR types that are authoritative at a delegation point (that is, both DS and DELEG).
The text in that section is updated as follows:</t>
          <t>An "ancestor delegation" NSEC RR (or NSEC3 RR) is one with:</t>
          <ul spacing="normal">
            <li>
              <t>the NS and/or DELEG bit set,</t>
            </li>
            <li>
              <t>the Start of Authority (SOA) bit clear, and</t>
            </li>
            <li>
              <t>a signer field that is shorter than the owner name of the NSEC RR,
or the original owner name for the NSEC3 RR.</t>
            </li>
          </ul>
          <t>Ancestor delegation NSEC or NSEC3 RRs MUST NOT be used to assume
nonexistence of any RRs below that zone cut, which include all RRs at
that original owner name, other than types authoritative at the delegation point (DS and DELEG), and all RRs below that owner name regardless of type.</t>
        </section>
        <section anchor="insecure-delegation-proofs">
          <name>Insecure Delegation Proofs</name>
          <t>This document updates Section 4.4 of <xref target="RFC6840"/> to include securing DELEG records, and explicitly states that Opt-Out is not applicable to the DELEG protocol.
The first paragraph of that section is updated to read:</t>
          <t>Section 5.2 of <xref target="RFC4035"/> specifies that a validator, when proving a
delegation is not secure, needs to check for the absence of the DS
and SOA bits in the NSEC (or NSEC3) type bitmap; this was clarified in Section 4.1 of <xref target="RFC6840"/>.
This document updates <xref target="RFC4035"/> and <xref target="RFC6840"/> to specify that the validator MUST also check for the presence of the NS or the DELEG bit in the matching NSEC (or NSEC3) RR (proving that there is, indeed, a delegation).
Alternately, the validator must make sure that the delegation with an NS record is covered by an NSEC3
RR with the Opt-Out flag set.
Opt-Out is not applicable to DELEG RR type
because DELEG records are authoritative at the delegation point in the same
way that DS RR types are.</t>
        </section>
        <section anchor="validator-downgrade-protection">
          <name>Referral downgrade protection</name>
          <t>If the zone is DNSSEC-secure, and if any DNSKEY of the zone has the ADT flag (<xref target="validator-downgrade-protection"/>) set to 1, a DELEG-aware validator MUST prove the absence of a DELEG RRset in referral responses from this particular zone.</t>
          <t>Without this check, an attacker could strip the DELEG RRset from a referral response and replace it with an unsigned (and potentially malicious) NS RRset (<xref target="downgrade-attacks"/>).
The reason for this is that according to non-DELEG DNSSEC specification, a referral response with an unsigned NS and signed DS RRsets does not require additional proofs of nonexistence.</t>
        </section>
        <section anchor="positive-responses">
          <name>Positive responses</name>
          <t>An existing DELEG RRset is authoritative in, and signed by, the delegating zone, similarly to a DS RRset (see <xref target="signers"/>).</t>
          <t>A validator SHOULD NOT treat a positive response with a DELEG RRset as DNSSEC-bogus only because all DNSKEYs in the zone have the ADT flag set to 0.
Such a zone would not be protected from downgrade attacks (<xref target="downgrade-attacks"/>) but this behavior is consistent with other non-DELEG DNSSEC specifications:
validators are not expected to detect inconsistencies in data if a chain of trust can be established.</t>
        </section>
        <section anchor="chaining">
          <name>Chaining</name>
          <t>A Validating Stub Resolver that is DELEG-aware MUST only use security-aware resolvers that are DELEG-aware.
A DELEG-aware Validating Resolver that uses forwarders MUST only use DELEG-aware and security-aware forwarders.
Otherwise DNSSEC-secure zones might fail to validate (see <xref target="legacynxdomain"/>) and DNSSEC-insecure zones might observe inconsistent answers (see <xref target="operational-considerations"/>).</t>
          <t><xref target="RFC9606"/> specifies a DNS resource record type, RESINFO, to allow resolvers to publish information about their capabilities and policies. This can be used to inform DNS clients that DELEG is supported by the DNS resolver.</t>
          <t>A resolver which supports <xref target="RFC9606"/> SHOULD add the "deleg" key if it supports DELEG protocol.
A resolver that uses forwarders MAY use a RESINFO query to determine if the configured forwarders are DELEG-aware.</t>
          <t>Note that, per the rules for the keys defined in Section 6.4 of <xref target="RFC6763"/>, if there is no '=' in a key, then it is a boolean attribute, simply identified as being present with no value.</t>
        </section>
      </section>
    </section>
    <section anchor="operational-considerations">
      <name>Operational Considerations</name>
      <t>When DELEG is deployed, new operational considerations will apply.
While the majority of these relate to the operation of DELEG-aware servers or resolvers, there is a more general set of operational practices which will need to apply because not all resolvers will be DELEG-aware.
This section gives an overview of some of those considerations.</t>
      <section anchor="ns-not-required-by-protocol">
        <name>NS Not Required by Protocol</name>
        <t>A zone delegated exclusively using DELEG records is not resolvable by non-DELEG aware resolvers.
In that case the zone is not required to have NS RRset in the apex of the delegated zone.
Software to manage zone content or check the validity of zones needs to be updated to allow zones without an NS RRset at the apex.</t>
      </section>
      <section anchor="ns-maybe-required-in-practice">
        <name>NS Maybe Required in Practice</name>
        <t>Although DELEG removes the protocol requirement for NS records, resolver support for DELEG will not be universal for a long time after this protocol is first deployed.
The deployment of DELEG-only delegation creates a new situation in which DNS servers that are authoritative for a particular set of domains provide partly or completely different answers.
Where "split DNS" or "split-horizon DNS" <xref target="RFC9499"/> differences depend on the source of the query, resolution of DELEG-only delegations will depend on whether or not the resolver is aware of and using DELEG.
Compare examples of DELEG-only delegation and respective answers for DELEG-unaware client in <xref target="legacynxdomain"/> and DELEG-aware client in <xref target="aware-new-delegation-only"/>.</t>
        <t>For any part of the namespace that is intended to be globally reachable, operators should avoid DELEG-only delegations, as some resolvers will be unaware of DELEG.
For other parts of the namespace, operators should take care to ensure that any variability in responses introduced maps correctly to the client capabilities.</t>
        <t>DELEG-only delegation is appropriate only where all intended users are known to use DELEG-capable resolvers.
This might be the case when a zone operator wants a zone be reachable only over secure transport, for example.
The decision to drop NS records should be guided by operational measurements of resolver adoption of the DELEG protocol.</t>
      </section>
      <section anchor="ns-and-deleg-combined">
        <name>NS and DELEG Combined</name>
        <t>This document explicitly allows zones to be delegated using DELEG records without also using NS records; delegating a zone with both DELEG and NS records is also allowed.
Software that manages delegations or checks the validity of zones need to be updated to allow delegations with all combinations of (with, without) * (NS, DELEG) records.</t>
        <t>If both NS and DELEG records are present, zone managers might want to check consistency across both RRsets, subject to local policy.
This specification treats both NS and DELEG RRsets as completely independent on the protocol level,
but it does not prohibit a provisioning system from generating one record type from the other.</t>
      </section>
      <section anchor="authoritative-deployment">
        <name>Authoritative Deployment</name>
        <t>Before adding a first DELEG record into a DNS zone, these steps need to be taken, in this order:</t>
        <ol spacing="normal" type="1"><li>
            <t>If zone checkers are used: ensure that the zone checkers are DELEG-aware.</t>
          </li>
          <li>
            <t>Ensure that all authoritative servers serving (and transfering) the zone are DELEG-aware.</t>
          </li>
          <li>
            <t>If a zone is DNSSEC-signed: ensure that the signer is DELEG-aware.</t>
          </li>
          <li>
            <t>If a zone is DNSSEC-signed: ensure that at least one DNSKEY record has the ADT flag set to 1. Failure to do so results in loss of downgrade resistence of the DELEG protocol for this zone; see <xref target="downgrade-attacks"/>.</t>
          </li>
        </ol>
        <section anchor="enabling-adt-flag">
          <name>Enabling ADT Flag</name>
          <t>According to the DNSSEC specification, changing flags of a DNSKEY record changes its Key Tag and thus requires a key rollover.
For this reason, the ADT flag cannot be simply enabled on an existing key without other changes to the record.
Operators are advised to set the ADT flag at the time of generating a new key, as part of a regular key rollover using established procedures.
A zone can safely have keys with the ADT flag set to 1 even if the zone does not have any DELEG records.
Turning on the ADT flag can be done months or even years before a first DELEG record is introduced into the zone.</t>
          <t>Downgrade protection is effective if any DNSKEY with ADT flag set to 1 is present, even if this key does not sign any RRset.
In other words, it is sufficient to pre-publish new key, as described in stage 2 of Pre-Publish Zone Signing Key Rollover, section 4.1.1.1 of <xref target="RFC6781"/>.</t>
          <t>An extremely conservative approach might be:</t>
          <ol spacing="normal" type="1"><li>
              <t>Lower DNSKEY TTL to shorten time to rollback.</t>
            </li>
            <li>
              <t>Add a new DNSKEY with ADT flag set to 1, but do not sign any RRsets with this key.</t>
            </li>
            <li>
              <t>Monitor deployment for issues.</t>
            </li>
            <li>
              <t>Experiment with adding DELEG records at this point, even if the key rollover is not finished. If there is a problem, withdraw the new, otherwise unused key.</t>
            </li>
            <li>
              <t>Finish the key rollover.</t>
            </li>
            <li>
              <t>Restore the original DNSKEY TTL.</t>
            </li>
          </ol>
          <t>Such an approach requires changing only to DNSKEY RRset and resigning it.
Consequently, the time required to withdraw the new DNSKEY record is limited only by DNSKEY TTL + time to sign + time to transfer modified DNSKEY RRset.</t>
        </section>
      </section>
      <section anchor="interaction-with-dynamic-dns-upate-rfc2136-">
        <name>Interaction with Dynamic DNS Upate ( <xref target="RFC2136"/> )</name>
        <t>DELEG records can be updated like other regular zone data at the delegation point, similar to NS records, as dynamic updates work on zone data and not queries.
A DELEG-only delegation would not need an NS record in the delegated zone, but the NS record in the delegated zone can not be deleted because of section RFC2136 section 7.13.
This should cause no immediate problems as dynamic DNS updates with DELEG are most useful at the delegation point.
DELEGPARAM will be handled like any other record.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>TODO: More people should check this section is complete!</t>
      <section anchor="too-much-work">
        <name>Preventing Over-work Attacks</name>
        <t>Resolvers MUST prevent situations where accidental misconfiguration of zones or malicious attacks cause them to perform too much work when resolving.
This document describes two sets of actions that, if not controlled, could lead to over-work attacks.</t>
        <t>Long chains of include-delegparam information (<xref target="nameserver-info"/>), and those with circular chains of include-delegparam information, can be burdensome.
To prevent this, the resolver SHOULD NOT follow more than 3 include-delegparam chains in an RRset when populating SLIST.
Note that include-delegparam chains can have CNAME steps in them; in such a case, a CNAME step is counted the same as a DELEGPARAM step when determining when to stop following a chain.</t>
        <t>TODO: No other DNS spec specifies hard maximum number of indirections. Perhaps we should not specify it either? After all DELEG value can contain a name in NS-only delegation and then we get into realm of 'count DELEG but NS is uncounted' and other fun combinations like this. Perhaps this is better dealt with for the whole DNS protocol within draft-fujiwara-dnsop-dns-upper-limit-values?</t>
      </section>
      <section anchor="downgrade-attacks">
        <name>Preventing Downgrade Attacks</name>
        <t>During the rollout of the DELEG protocol, the operator of an authoritative server can upgrade the server software to be DELEG-aware before changing any DNS zones.
Such deployment should work and provide DELEG-aware clients with correct DELEG-aware answers.
However, the deployment will not be protected from downgrade attacks against the DELEG protocol.</t>
        <t>To protect DNSSEC-secure DNS zones that contain DELEG delegations, the delegating zone needs to have at least one DNSKEY with the ADT flag set to 1.
Failure to set this flag in a DNSKEY record in the zone allows an attacker to remove the DELEG RRset from referrals which contain the DS RRset, and replace the original signed DELEG RRset with an arbitrary unsigned NS set.
Doing so would be a downgrade from the strong protection offered by DNSSEC for DELEG.
That is, the DELEG protocol when used with upgraded DNSKEY records gives the same protection to DELEG that the zone's DS RRset has.
Without DELEG, there are no security guarantees for delegation NS Records.</t>
        <t>Please note that a full DNSKEY rollover is not necessary to achieve the downgrade protection for DELEG.
Any single DNSKEY with the ADT flag set to 1 is sufficient; the zone can introduce an otherwise unused record into the DNSKEY RRset.</t>
      </section>
      <section anchor="deleg-is-stronger-than-ns">
        <name>DELEG Is Stronger Than NS</name>
        <t>DELEG RRtype has stronger protection (by DNSSEC) than delegation NS records and glue records.
A zone that does not need to be resolvable by DELEG-unaware clients (see {operational-considerations}),
and is delegated only with DELEG records,
will have a smaller attack surface compared to a zone delegated with both DELEG and NS records.</t>
        <t>The additional attack surface of legacy delegations stems from the possibility of replacing NS and glue records in referrals with arbitrary values,
which is not detectable by DNSSEC (by design in <xref target="RFC4035"/> Section 2.2).</t>
        <t>For example, this allows redirecting a referral to names and/or addresses under an attacker's control.
Even for DNSSEC-secure zones, an attacker can use this ability to continuously proxy queries and responses,
observe traffic, and also monitor the network addresses involved, which might be a privacy concern for roaming clients.</t>
        <t>The feasibility and impact of such attacks depend on the threat model, which is outside the scope of this document.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="iana-existing">
        <name>Changes to Existing Registries</name>
        <t>All new allocations should reference this document.</t>
        <t>IANA is requested to assign two types in the Resource Record (RR) TYPEs registry (<xref target="RFC6895"/>):</t>
        <ul spacing="normal">
          <li>
            <t>TYPE DELEG, Meaning "Extensible Delegation", Value equal to 61440.</t>
          </li>
          <li>
            <t>TYPE DELEGPARAM, Meaning "Extensible Delegation Indirection", Value TBA1 inside one of the ranges marked as "data TYPEs".</t>
          </li>
        </ul>
        <t>IANA is requested to assign a new bit in the DNSKEY RR Flags registry (<xref target="RFC4034"/>):
Number 14, Description "Authoritative Delegation Types (ADT)".
For compatibility reasons, we request the Number 14 to be used.
This value has been proven to work whereas bit number 0 was proven to break in practical deployments (because of bugs).</t>
        <t>IANA is requested to assign a bit in the EDNS Header Flags registry (<xref target="RFC6891"/>):
Bit TBA2, Flag DE, with the description "DELEG enabled".</t>
        <t>IANA is requested to assign a value in the Extended DNS Error Codes registry (<xref target="RFC8914"/>):
INFO-CODE TBA3, with the Purpose "New Delegation Only".</t>
        <t>IANA is requested to create this assignment in the DNS Resolver Information Keys registry (<xref target="RFC9606"/>): Name "deleg", Description "The presence of the key indicates that DELEG protocol is supported."</t>
      </section>
      <section anchor="new-registry-for-delegation-information">
        <name>New Registry for Delegation Information</name>
        <t>IANA is requested to create the "DELEG Delegation Information" registry.
This registry defines the namespace for delegation information keys, including string representations and numeric key values.</t>
        <section anchor="procedure">
          <name>Procedure</name>
          <t>A registration MUST include the following fields:</t>
          <t>Number:  Wire-format numeric identifier (range 0-65535)
Name:  Unique presentation name
Meaning:  A short description
Reference:  Location of specification or registration source
Change Controller:  Person or entity, with contact information if appropriate</t>
          <t>To enable code reuse from SVCB parsers, the requirements for registered Name exactly copy requirements set by <xref target="RFC9460"/> section 14.3.1:
The characters in the registered Name field entry MUST be lowercase alphanumeric or "-".
The name MUST NOT start with "key" or "invalid".</t>
          <t>The registration policy for new entries is Expert Review (<xref target="RFC8126"/>).
The designated expert MUST ensure that the reference is stable and publicly available and that it specifies how to convert the delegation information's presentation format to wire format.
The reference MAY be any individual's Internet-Draft or a document from any other source with similar assurances of stability and availability.
An entry MAY specify a reference of the form "Same as (other key name)" if it uses the same presentation and wire formats as an existing key.</t>
          <t>This arrangement supports the development of new parameters while ensuring that zone files can be made interoperable.</t>
        </section>
        <section anchor="initial-contents">
          <name>Initial Contents</name>
          <t>The "DELEG Delegation Information" registry should be populated with the following initial registrations:</t>
          <artwork><![CDATA[
Number:  0
Name:  mandatory
Meaning: Mandatory keys in this RR
Reference:  {{mandatory}} of this document
Change Controller:  IETF

Number:  1
Name:  server-ipv4
Meaning:  An unordered collection of IPv4 addresses of name servers
Reference:  {{nameserver-info}} of this document
Change Controller:  IETF

Number:  2
Name:  server-ipv6
Meaning:  An unordered collection of IPv6 addresses of name servers
Reference:  {{nameserver-info}} of this document
Change Controller:  IETF

Number:  3
Name:  server-name
Meaning:  An unordered collection of domain names of name servers
Reference:  {{nameserver-info}} of this document
Change Controller:  IETF

Number:  4
Name:  include-delegparam
Meaning:  An unordered collection of domain names of DELEGPARAM records
Reference:  {{nameserver-info}} of this document
Change Controller:  IETF

The registration for numbers 65280-65534 is reserved for private use.
The registration for number 65535 is reserved.
]]></artwork>
        </section>
      </section>
      <section anchor="temporary-assignments">
        <name>Temporary Assignments</name>
        <t>This section gives the values that can be used for interoperability testing before IANA makes permanent assignments.
The section will be removed when IANA makes permanent assignments.</t>
        <ul spacing="normal">
          <li>
            <t>DELEG RR type code is 61440</t>
          </li>
          <li>
            <t>DELEGPARAM RR type code is 65433</t>
          </li>
          <li>
            <t>DELEG EDNS DE flag bit is 2</t>
          </li>
          <li>
            <t>DNSKEY ADT (Authoritative Delegation Types) flag bit is 14</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC9460">
          <front>
            <title>Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)</title>
            <author fullname="B. Schwartz" initials="B." surname="Schwartz"/>
            <author fullname="M. Bishop" initials="M." surname="Bishop"/>
            <author fullname="E. Nygren" initials="E." surname="Nygren"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document specifies the "SVCB" ("Service Binding") and "HTTPS" DNS resource record (RR) types to facilitate the lookup of information needed to make connections to network services, such as for HTTP origins. SVCB records allow a service to be provided from multiple alternative endpoints, each with associated parameters (such as transport protocol configuration), and are extensible to support future uses (such as keys for encrypting the TLS ClientHello). They also enable aliasing of apex domains, which is not possible with CNAME. The HTTPS RR is a variation of SVCB for use with HTTP (see RFC 9110, "HTTP Semantics"). By providing more information to the client before it attempts to establish a connection, these records offer potential benefits to both performance and privacy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9460"/>
          <seriesInfo name="DOI" value="10.17487/RFC9460"/>
        </reference>
        <reference anchor="RFC1035">
          <front>
            <title>Domain names - implementation and specification</title>
            <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised specification of the protocol and format used in the implementation of the Domain Name System. It obsoletes RFC-883. This memo documents the details of the domain name client - server communication.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1035"/>
          <seriesInfo name="DOI" value="10.17487/RFC1035"/>
        </reference>
        <reference anchor="RFC2181">
          <front>
            <title>Clarifications to the DNS Specification</title>
            <author fullname="R. Elz" initials="R." surname="Elz"/>
            <author fullname="R. Bush" initials="R." surname="Bush"/>
            <date month="July" year="1997"/>
            <abstract>
              <t>This document considers some areas that have been identified as problems with the specification of the Domain Name System, and proposes remedies for the defects identified. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2181"/>
          <seriesInfo name="DOI" value="10.17487/RFC2181"/>
        </reference>
        <reference anchor="RFC1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System. It obsoletes RFC-882. This memo describes the domain style names and their used for host address look up and electronic mail forwarding. It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="RFC3597">
          <front>
            <title>Handling of Unknown DNS Resource Record (RR) Types</title>
            <author fullname="A. Gustafsson" initials="A." surname="Gustafsson"/>
            <date month="September" year="2003"/>
            <abstract>
              <t>Extending the Domain Name System (DNS) with new Resource Record (RR) types currently requires changes to name server software. This document specifies the changes necessary to allow future DNS implementations to handle new RR types transparently. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3597"/>
          <seriesInfo name="DOI" value="10.17487/RFC3597"/>
        </reference>
        <reference anchor="RFC6891">
          <front>
            <title>Extension Mechanisms for DNS (EDNS(0))</title>
            <author fullname="J. Damas" initials="J." surname="Damas"/>
            <author fullname="M. Graff" initials="M." surname="Graff"/>
            <author fullname="P. Vixie" initials="P." surname="Vixie"/>
            <date month="April" year="2013"/>
            <abstract>
              <t>The Domain Name System's wire protocol includes a number of fixed fields whose range has been or soon will be exhausted and does not allow requestors to advertise their capabilities to responders. This document describes backward-compatible mechanisms for allowing the protocol to grow.</t>
              <t>This document updates the Extension Mechanisms for DNS (EDNS(0)) specification (and obsoletes RFC 2671) based on feedback from deployment experience in several implementations. It also obsoletes RFC 2673 ("Binary Labels in the Domain Name System") and adds considerations on the use of extended labels in the DNS.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="75"/>
          <seriesInfo name="RFC" value="6891"/>
          <seriesInfo name="DOI" value="10.17487/RFC6891"/>
        </reference>
        <reference anchor="RFC4035">
          <front>
            <title>Protocol Modifications for the DNS Security Extensions</title>
            <author fullname="R. Arends" initials="R." surname="Arends"/>
            <author fullname="R. Austein" initials="R." surname="Austein"/>
            <author fullname="M. Larson" initials="M." surname="Larson"/>
            <author fullname="D. Massey" initials="D." surname="Massey"/>
            <author fullname="S. Rose" initials="S." surname="Rose"/>
            <date month="March" year="2005"/>
            <abstract>
              <t>This document is part of a family of documents that describe the DNS Security Extensions (DNSSEC). The DNS Security Extensions are a collection of new resource records and protocol modifications that add data origin authentication and data integrity to the DNS. This document describes the DNSSEC protocol modifications. This document defines the concept of a signed zone, along with the requirements for serving and resolving by using DNSSEC. These techniques allow a security-aware resolver to authenticate both DNS resource records and authoritative DNS error indications.</t>
              <t>This document obsoletes RFC 2535 and incorporates changes from all updates to RFC 2535. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4035"/>
          <seriesInfo name="DOI" value="10.17487/RFC4035"/>
        </reference>
        <reference anchor="RFC6672">
          <front>
            <title>DNAME Redirection in the DNS</title>
            <author fullname="S. Rose" initials="S." surname="Rose"/>
            <author fullname="W. Wijngaards" initials="W." surname="Wijngaards"/>
            <date month="June" year="2012"/>
            <abstract>
              <t>The DNAME record provides redirection for a subtree of the domain name tree in the DNS. That is, all names that end with a particular suffix are redirected to another part of the DNS. This document obsoletes the original specification in RFC 2672 as well as updates the document on representing IPv6 addresses in DNS (RFC 3363). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6672"/>
          <seriesInfo name="DOI" value="10.17487/RFC6672"/>
        </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>
        <reference anchor="RFC6840">
          <front>
            <title>Clarifications and Implementation Notes for DNS Security (DNSSEC)</title>
            <author fullname="S. Weiler" initials="S." role="editor" surname="Weiler"/>
            <author fullname="D. Blacka" initials="D." role="editor" surname="Blacka"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document is a collection of technical clarifications to the DNS Security (DNSSEC) document set. It is meant to serve as a resource to implementors as well as a collection of DNSSEC errata that existed at the time of writing.</t>
              <t>This document updates the core DNSSEC documents (RFC 4033, RFC 4034, and RFC 4035) as well as the NSEC3 specification (RFC 5155). It also defines NSEC3 and SHA-2 (RFC 4509 and RFC 5702) as core parts of the DNSSEC specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6840"/>
          <seriesInfo name="DOI" value="10.17487/RFC6840"/>
        </reference>
        <reference anchor="RFC9606">
          <front>
            <title>DNS Resolver Information</title>
            <author fullname="T. Reddy.K" initials="T." surname="Reddy.K"/>
            <author fullname="M. Boucadair" initials="M." surname="Boucadair"/>
            <date month="June" year="2024"/>
            <abstract>
              <t>This document specifies a method for DNS resolvers to publish information about themselves. DNS clients can use the resolver information to identify the capabilities of DNS resolvers. How DNS clients use such information is beyond the scope of this document.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9606"/>
          <seriesInfo name="DOI" value="10.17487/RFC9606"/>
        </reference>
        <reference anchor="RFC6763">
          <front>
            <title>DNS-Based Service Discovery</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire"/>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document specifies how DNS resource records are named and structured to facilitate service discovery. Given a type of service that a client is looking for, and a domain in which the client is looking for that service, this mechanism allows clients to discover a list of named instances of that desired service, using standard DNS queries. This mechanism is referred to as DNS-based Service Discovery, or DNS-SD.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6763"/>
          <seriesInfo name="DOI" value="10.17487/RFC6763"/>
        </reference>
        <reference anchor="RFC6781">
          <front>
            <title>DNSSEC Operational Practices, Version 2</title>
            <author fullname="O. Kolkman" initials="O." surname="Kolkman"/>
            <author fullname="W. Mekking" initials="W." surname="Mekking"/>
            <author fullname="R. Gieben" initials="R." surname="Gieben"/>
            <date month="December" year="2012"/>
            <abstract>
              <t>This document describes a set of practices for operating the DNS with security extensions (DNSSEC). The target audience is zone administrators deploying DNSSEC.</t>
              <t>The document discusses operational aspects of using keys and signatures in the DNS. It discusses issues of key generation, key storage, signature generation, key rollover, and related policies.</t>
              <t>This document obsoletes RFC 4641, as it covers more operational ground and gives more up-to-date requirements with respect to key sizes and the DNSSEC operations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6781"/>
          <seriesInfo name="DOI" value="10.17487/RFC6781"/>
        </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="RFC6895">
          <front>
            <title>Domain Name System (DNS) IANA Considerations</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <date month="April" year="2013"/>
            <abstract>
              <t>This document specifies Internet Assigned Numbers Authority (IANA) parameter assignment considerations for the allocation of Domain Name System (DNS) resource record types, CLASSes, operation codes, error codes, DNS protocol message header bits, and AFSDB resource record subtypes. It obsoletes RFC 6195 and updates RFCs 1183, 2845, 2930, and 3597.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="42"/>
          <seriesInfo name="RFC" value="6895"/>
          <seriesInfo name="DOI" value="10.17487/RFC6895"/>
        </reference>
        <reference anchor="RFC4034">
          <front>
            <title>Resource Records for the DNS Security Extensions</title>
            <author fullname="R. Arends" initials="R." surname="Arends"/>
            <author fullname="R. Austein" initials="R." surname="Austein"/>
            <author fullname="M. Larson" initials="M." surname="Larson"/>
            <author fullname="D. Massey" initials="D." surname="Massey"/>
            <author fullname="S. Rose" initials="S." surname="Rose"/>
            <date month="March" year="2005"/>
            <abstract>
              <t>This document is part of a family of documents that describe the DNS Security Extensions (DNSSEC). The DNS Security Extensions are a collection of resource records and protocol modifications that provide source authentication for the DNS. This document defines the public key (DNSKEY), delegation signer (DS), resource record digital signature (RRSIG), and authenticated denial of existence (NSEC) resource records. The purpose and format of each resource record is described in detail, and an example of each resource record is given.</t>
              <t>This document obsoletes RFC 2535 and incorporates changes from all updates to RFC 2535. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4034"/>
          <seriesInfo name="DOI" value="10.17487/RFC4034"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <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>
        <referencegroup anchor="BCP219" target="https://www.rfc-editor.org/info/bcp219">
          <reference anchor="RFC9499" target="https://www.rfc-editor.org/info/rfc9499">
            <front>
              <title>DNS Terminology</title>
              <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
              <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
              <date month="March" year="2024"/>
              <abstract>
                <t>The Domain Name System (DNS) is defined in literally dozens of different RFCs. The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has changed in the decades since the DNS was first defined. This document gives current definitions for many of the terms used in the DNS in a single document.</t>
                <t>This document updates RFC 2308 by clarifying the definitions of "forwarder" and "QNAME". It obsoletes RFC 8499 by adding multiple terms and clarifications. Comprehensive lists of changed and new definitions can be found in Appendices A and B.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="219"/>
            <seriesInfo name="RFC" value="9499"/>
            <seriesInfo name="DOI" value="10.17487/RFC9499"/>
          </reference>
        </referencegroup>
        <reference anchor="RFC5952">
          <front>
            <title>A Recommendation for IPv6 Address Text Representation</title>
            <author fullname="S. Kawamura" initials="S." surname="Kawamura"/>
            <author fullname="M. Kawashima" initials="M." surname="Kawashima"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>As IPv6 deployment increases, there will be a dramatic increase in the need to use IPv6 addresses in text. While the IPv6 address architecture in Section 2.2 of RFC 4291 describes a flexible model for text representation of an IPv6 address, this flexibility has been causing problems for operators, system engineers, and users. This document defines a canonical textual representation format. It does not define a format for internal storage, such as within an application or database. It is expected that the canonical format will be followed by humans and systems when representing IPv6 addresses as text, but all implementations must accept and be able to handle any legitimate RFC 4291 format. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5952"/>
          <seriesInfo name="DOI" value="10.17487/RFC5952"/>
        </reference>
        <reference anchor="RFC4001">
          <front>
            <title>Textual Conventions for Internet Network Addresses</title>
            <author fullname="M. Daniele" initials="M." surname="Daniele"/>
            <author fullname="B. Haberman" initials="B." surname="Haberman"/>
            <author fullname="S. Routhier" initials="S." surname="Routhier"/>
            <author fullname="J. Schoenwaelder" initials="J." surname="Schoenwaelder"/>
            <date month="March" year="2005"/>
            <abstract>
              <t>This MIB module defines textual conventions to represent commonly used Internet network layer addressing information. The intent is that these textual conventions will be imported and used in MIB modules that would otherwise define their own representations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4001"/>
          <seriesInfo name="DOI" value="10.17487/RFC4001"/>
        </reference>
        <reference anchor="RFC8427">
          <front>
            <title>Representing DNS Messages in JSON</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="July" year="2018"/>
            <abstract>
              <t>Some applications use DNS messages, or parts of DNS messages, as data. For example, a system that captures DNS queries and responses might want to be able to easily search them without having to decode the messages each time. Another example is a system that puts together DNS queries and responses from message parts. This document describes a general format for DNS message data in JSON. Specific profiles of the format in this document can be described in other documents for specific applications and usage scenarios.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8427"/>
          <seriesInfo name="DOI" value="10.17487/RFC8427"/>
        </reference>
        <reference anchor="I-D.peltan-edns-presentation-format">
          <front>
            <title>EDNS Presentation and JSON Format</title>
            <author fullname="Libor Peltan" initials="L." surname="Peltan">
              <organization>CZ.NIC</organization>
            </author>
            <author fullname="Tom Carpay" initials="T." surname="Carpay">
              <organization>NLnet Labs</organization>
            </author>
            <date day="19" month="April" year="2024"/>
            <abstract>
              <t>   This document describes the textual and JSON representation formats
   of EDNS options.  It also modifies the escaping rules of the JSON
   representation of DNS messages, previously defined in RFC8427.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-peltan-edns-presentation-format-03"/>
        </reference>
        <reference anchor="I-D.tapril-ns2">
          <front>
            <title>Parameterized Nameserver Delegation with NS2 and NS2T</title>
            <author fullname="Tim April" initials="T." surname="April">
              <organization>Akamai Technologies</organization>
            </author>
            <date day="13" month="July" year="2020"/>
            <abstract>
              <t>   Within the DNS, there is no mechanism for authoritative servers to
   advertise which transport methods they are capable of.  If secure
   transport methods are adopted by authoritative operators, transport
   signaling would be required to negotiate how authoritative servers
   would be contacted by resolvers.  This document provides two new
   Resource Record Types, NS2 and NS2T, to facilitate this negotiation
   by allowing zone owners to signal how the authoritative nameserver(s)
   for their zone(s) may accept queries.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tapril-ns2-01"/>
        </reference>
      </references>
    </references>
    <?line 849?>

<section anchor="examples">
      <name>Examples</name>
      <section anchor="example-root">
        <name>Root zone file</name>
        <t>The following example shows an excerpt from a signed root zone.
It shows the delegation point for "example." and "test."</t>
        <t>The "example." delegation has DELEG and NS records.
The "test." delegation has DELEG but no NS records.</t>
        <t>TODO: Add examples that have include-delegparam being sets of more than one name.</t>
        <artwork><![CDATA[
example.   DELEG server-ipv4=192.0.2.1 server-ipv6=2001:DB8::1
example.   DELEG server-name=ns2.example.net.,ns3.example.org.
example.   RRSIG DELEG 13 1 300 20260101000000 (
                        20250101000000 33333 . SigExampleDELEG/ )

example.   NS    ns1.example.
example.   NS    ns2.example.net.
example.   NS    ns3.example.org.

example.   DS    44444 13 2 ABCDEF01234567...
example.   RRSIG DS 13 1 300 20260101000000 (
                        20250101000000 33333 . SigExampleDS )

example.   NSEC  net. NS DS RRSIG NSEC DELEG
example.   RRSIG NSEC 13 1 300 20260101000000 (
                        20250101000000 33333 . SigExampleNSEC+/ )

; unsigned glue for legacy (NS) delegation
; it is NOT present in NSEC chain
ns1.example. A     192.0.2.1
ns1.example. AAAA  2001:DB8::1
]]></artwork>
        <t>The "test." delegation point has a DELEG record and no NS or DS records.</t>
        <t>Please note:
This is an example of an unnecessarily complicated setup to demonstrate the capabilities of the DELEG and DELEGPARAM RR types.</t>
        <artwork><![CDATA[
test.      DELEG server-ipv6=3fff::33
test.      DELEG include-delegparam=Acfg.example.org.,cname.example.org.
test.      DELEG include-delegparam=config2.example.net.
test.      RRSIG DELEG 13 1 300 20260101000000 (
                        20250101000000 33333 . SigTestDELEG )

test.      NSEC  . RRSIG NSEC DELEG
test.      RRSIG NSEC 13 1 300 20260101000000 (
                        20250101000000 33333 . SigTestNSEC/ )

; a forgotten glue record from legacy (NS) delegation
; it is NOT present in NSEC chain and it is occluded
a.test.    A     192.0.2.1
]]></artwork>
        <t>Delegations to org and net zones omitted for brevity.</t>
      </section>
      <section anchor="exampleorg-zone-file">
        <name>Example.org zone file</name>
        <t>The following example shows an excerpt from an unsigned example.org zone.</t>
        <artwork><![CDATA[
Acfg.example.org.    DELEGPARAM server-ipv6=2001:DB8::6666
Acfg.example.org.    DELEGPARAM server-name=ns3.example.org.
Acfg.example.org.    DELEGPARAM include-delegparam=subcfg.example.org.

; unhelpful but technically legal CNAME
cname.example.org.   CNAME      Acfg.example.org.

ns3.example.org.     AAAA       3fff::33

subcfg.example.org.  DELEGPARAM server-ipv4=203.0.113.1 server-ipv6=3fff::2
]]></artwork>
      </section>
      <section anchor="examplenet-zone-file">
        <name>Example.net zone file</name>
        <t>The following example shows an excerpt from an unsigned example.net zone.</t>
        <artwork><![CDATA[
ns2.example.net.     A          198.51.100.1

config2.example.net. DELEGPARAM server-name=b.example.org.
]]></artwork>
      </section>
      <section anchor="responses">
        <name>Responses</name>
        <t>The following sections show referral examples:</t>
        <section anchor="do-bit-clear-de-bit-clear">
          <name>DO bit clear, DE bit clear</name>
          <section anchor="query-for-fooexample">
            <name>Query for foo.example</name>
            <artwork><![CDATA[
;; Header: QR RCODE=NOERROR
;;

;; Question
foo.example.  IN MX

;; Answer
;; (empty)

;; Authority
example.   NS    ns1.example.
example.   NS    ns2.example.net.
example.   NS    ns3.example.org.

;; Additional
ns1.example. A     192.0.2.1
ns1.example. AAAA  2001:DB8::1
]]></artwork>
          </section>
          <section anchor="query-for-footest">
            <name>Query for foo.test</name>
            <t>See <xref target="no-ns"/>.</t>
            <artwork><![CDATA[
;; Header: QR AA RCODE=NXDOMAIN
;;

;; Question
foo.test.   IN MX

;; Answer
;; (empty)

;; Authority
.   SOA ...

;; Additional
;; OPT with Extended DNS Error: New Delegation Only
]]></artwork>
          </section>
          <section anchor="occluded-example">
            <name>Query for a.test</name>
            <t>A forgotten glue record under the "test." delegation point is occluded by DELEG RRset.</t>
            <artwork><![CDATA[
;; Header: QR AA RCODE=NXDOMAIN
;;

;; Question
a.test.   IN A

;; Answer
;; (empty)

;; Authority
.   SOA ...

;; Additional
;; OPT with Extended DNS Error: New Delegation Only
]]></artwork>
          </section>
        </section>
        <section anchor="do-bit-set-de-bit-clear">
          <name>DO bit set, DE bit clear</name>
          <section anchor="query-for-fooexample-1">
            <name>Query for foo.example</name>
            <artwork><![CDATA[
;; Header: QR DO RCODE=NOERROR
;;

;; Question
foo.example.   IN MX

;; Answer
;; (empty)

;; Authority

example.   NS    ns1.example.
example.   NS    ns2.example.net.
example.   NS    ns3.example.org.
example.   DS    44444 13 2 ABCDEF01234567...
example.   RRSIG DS 13 1 300 20260101000000 (
                        20250101000000 33333 . SigExampleDS )
;; Additional
ns1.example. A     192.0.2.1
ns1.example. AAAA  2001:DB8::1
]]></artwork>
          </section>
          <section anchor="legacynxdomain">
            <name>Query for foo.test</name>
            <t>See <xref target="no-ns"/>.</t>
            <t>DELEG-unaware validators would treat this answer as DNSSEC-secure.</t>
            <t>DELEG-aware validators would treat it as DNSSEC-bogus because the DELEG bit in NSEC type bitmap would trigger downgrade attack detection (see <xref target="validator-downgrade-protection"/>).</t>
            <artwork><![CDATA[
;; Header: QR DO AA RCODE=NXDOMAIN
;;

;; Question
foo.test.      IN MX

;; Answer
;; (empty)

;; Authority
.          SOA ...
.          RRSIG SOA ...
test.      NSEC  . RRSIG NSEC DELEG
test.      RRSIG NSEC 13 1 300 20260101000000 (
                        20250101000000 33333 . SigTestNSEC/ )

;; Additional
;; OPT with Extended DNS Error: New Delegation Only
]]></artwork>
          </section>
          <section anchor="example-occluded">
            <name>Query for a.test</name>
            <t>A forgotten glue record under the "test." delegation point is occluded by DELEG RRset.
This is indicated by NSEC chain which "skips" over the owner name with A RRset.</t>
            <artwork><![CDATA[
;; Header: QR DO AA RCODE=NXDOMAIN
;;

;; Question
a.test.      IN A

;; Answer
;; (empty)

;; Authority
.          SOA ...
.          RRSIG SOA ...
test.      NSEC  . RRSIG NSEC DELEG
test.      RRSIG NSEC 13 1 300 20260101000000 (
                        20250101000000 33333 . SigTestNSEC/ )

;; Additional
;; OPT with Extended DNS Error: New Delegation Only
]]></artwork>
          </section>
        </section>
        <section anchor="do-bit-clear-de-bit-set">
          <name>DO bit clear, DE bit set</name>
          <section anchor="query-for-fooexample-2">
            <name>Query for foo.example</name>
            <artwork><![CDATA[
;; Header: QR DE RCODE=NOERROR
;;

;; Question
foo.example.  IN MX

;; Answer
;; (empty)

;; Authority
example.   DELEG server-ipv4=192.0.2.1 server-ipv6=2001:DB8::1
example.   DELEG server-name=ns2.example.net.,ns3.example.org.

;; Additional
;; (empty)
]]></artwork>
          </section>
          <section anchor="query-for-footest-1">
            <name>Query for foo.test</name>
            <artwork><![CDATA[
;; Header: QR RCODE=NOERROR
;;

;; Question
foo.test.   IN MX

;; Answer
;; (empty)

;; Authority
test.      DELEG server-ipv6=3fff::33
test.      DELEG include-delegparam=Acfg.example.org.
test.      DELEG include-delegparam=config2.example.net.

;; Additional
;; (empty)
]]></artwork>
            <t>A follow-up example in <xref target="delegparam-example"/> explains the ultimate meaning of this response.</t>
          </section>
        </section>
        <section anchor="do-bit-set-de-bit-set">
          <name>DO bit set, DE bit set</name>
          <section anchor="query-for-fooexample-3">
            <name>Query for foo.example</name>
            <artwork><![CDATA[
;; Header: QR DO DE RCODE=NOERROR
;;

;; Question
foo.example.  IN MX

;; Answer
;; (empty)

;; Authority
example.   DELEG server-ipv4=192.0.2.1 server-ipv6=2001:DB8::1
example.   DELEG server-name=ns2.example.net.,ns3.example.org.
example.   RRSIG DELEG 13 1 300 20260101000000 (
                        20250101000000 33333 . SigExampleDELEG/ )
example.   DS    44444 13 2 ABCDEF01234567...
example.   RRSIG DS 13 1 300 20260101000000 (
                        20250101000000 33333 . SigExampleDS )

;; Additional
;; (empty)
]]></artwork>
          </section>
          <section anchor="aware-new-delegation-only">
            <name>Query for foo.test</name>
            <artwork><![CDATA[
;; Header: QR DO DE RCODE=NOERROR
;;

;; Question
foo.test.      IN MX

;; Answer
;; (empty)

;; Authority
test.      DELEG server-ipv6=3fff::33
test.      DELEG include-delegparam=Acfg.example.org.
test.      DELEG include-delegparam=config2.example.net.
test.      RRSIG DELEG 13 1 300 20260101000000 (
                        20250101000000 33333 . SigTestDELEG )
test.      NSEC  . RRSIG NSEC DELEG
test.      RRSIG NSEC 13 1 300 20260101000000 (
                        20250101000000 33333 . SigTestNSEC/ )

;; Additional
;; (empty)
]]></artwork>
            <t>A follow-up example in <xref target="delegparam-example"/> explains the ultimate meaning of this response.</t>
          </section>
        </section>
      </section>
      <section anchor="delegparam-example">
        <name>DELEGPARAM Interpretation</name>
        <t>In the examples above, the test. DELEG record uses indirection and points to other domain names with DELEGPARAM, A, AAAA, and CNAME records.
During resolution, a resolver will gradually build set of name servers to contact, as defined in <xref target="slist"/>.</t>
        <t>To visualize the end result of this process, we represent full set of name servers in form of a 'virtual' DELEG RRset.</t>
        <artwork><![CDATA[
test. DELEG server-ipv4=198.51.100.1
test. DELEG server-ipv4=203.0.113.1
test. DELEG server-ipv6=2001:DB8::6666
test. DELEG server-ipv6=3fff::2
; IPv6 address 3fff::33 was de-duplicated (input RRsets listed it twice)
test. DELEG server-ipv6=3fff::33
]]></artwork>
        <t>Note the "cname.example.org." value in "include-delegparam=Acfg.example.org.,cname.example.org." DELEG record has no visible effect.
The included name loops via CNAME back to "Acfg.example.org." which is already included.
This would have caused duplication of all values if each SLIST was not treated as a set.</t>
        <t>Implementations are free to use alternative representations for this data, as it is not directly exposed via DNS protocol.</t>
      </section>
      <section anchor="failure-cases">
        <name>Failure Cases</name>
        <t>Several examples of misconfigured delegations which cannot be resolved follow.</t>
        <t>Self-references to names without any addresses:</t>
        <artwork><![CDATA[
1p.invalid. DELEG include-delegparam=params.invalid.,sub.params.invalid.
2n.invalid. DELEG server-name=ns1.invalid.,ns2.sub.invalid.
]]></artwork>
        <t>Cycles:</t>
        <artwork><![CDATA[
c1.invalid. DELEG server-name=ns1.c2.invalid.
c2.invalid. DELEG include-delegparam=params.c1.invalid.,c3.invalid.
c3.invalid. CNAME c2.invalid.
]]></artwork>
        <t>Syntactically valid DELEG records without any <xref target="nameserver-info"/> keys:</t>
        <artwork><![CDATA[
00.invalid. DELEG key65280=\032\037\041\045
00.invalid. DELEG key65281="char-string with whitespace"
]]></artwork>
        <t>A delegation missing the value for a mandatory key:</t>
        <artwork><![CDATA[
m1.invalid. DELEG mandatory=key65534
]]></artwork>
        <t>Records which are not even allowed in zone file (see also <xref target="RFC9460"/> appendix D.3) but might be sent in wire format:</t>
        <artwork><![CDATA[
m2.invalid. DELEG mandatory
ik.invalid. DELEG invalid
]]></artwork>
      </section>
    </section>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>TODO: In what format? Machine readable would be a win. Perhaps a combination of <xref target="RFC8427"/> and <xref target="I-D.peltan-edns-presentation-format"/>?</t>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This document is heavily based on past work done by Tim April in
<xref target="I-D.tapril-ns2"/> and thus extends the thanks to the people helping on this which are:
John Levine, Erik Nygren, Jon Reed, Ben Kaduk, Mashooq Muhaimen, Jason Moreau, Jerrod Wiesman, Billy Tiemann, Gordon Marx and Brian Wellington.</t>
      <t>Work on DELEG protocol has started at IETF 118 Hackaton.
Hackaton participants: Christian Elmerot, David Blacka, David Lawrence, Edward Lewis, Erik Nygren, George Michaelson, Jan Včelák, Klaus Darilion, Libor Peltan, Manu Bretelle, Peter van Dijk, Petr Špaček, Philip Homburg, Ralf Weber, Roy Arends, Shane Kerr, Shumon Huque, Vandan Adhvaryu, Vladimír Čunát, Andreas Schulze.</t>
      <t>Other people joined the effort after the initial hackaton: Ben Schwartz, Bob Halley, Paul Hoffman, Miek Gieben, Ray Hunter, Håvard Eidnes, Ted Hardie, Michael Richardson, Florian Obser, Evan Hunt, ...</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
kFSaZYGPlC3fAU5cmMwHyjfmYBx44TpF2CxMJQb0GIcAknZd55THc8ayAN2o
t4LneJGIjXmvBOWfSWJGXxG/tGpHA8B4nim1SLgEO2IefCy5oyq8Gvlk7vzm
7WDH26oxnWt9Wnh5GefxpUYSaJ65JIl4JUSQgsmtNZ0bhZSJn1gDXaiE8Vz4
Ln8OvK+orI0DcIoaO2MCNoCVorsKRsylrkQ/k2g9Y7Oju+790iNPhoRUmQAu
W5e3yVOEd5y1a8baZFI3ISWWopquV40lV/60lCR9RsRWZSNTNxMvp3dVu7wO
U/l/k8GNl2gEfrlLUndP44fpiWzNtQPQUM2+cuc6di0Ov6crOqxAyaNI4SG+
wh/HOC2cJn8t3Xq++AJ4g22kGfYEFf4oaCex7WF8Ri9s5A77wbTyGDa2KFr5
NEhQNFyPej/6u4Y5XcsVdfhRG/7G49Cq69pHy1RU7I1QJGdAWyrpFCWzD3PS
ABz22E9Ly3BNdVDh1MrqFFmFThTsAe9kP2y7k89dJffLrJiSbuXyBEdCR1Fq
FT92fF2k8w2ApsLsRPm69FM3rCDjQAnpshGXddVZZs/kVC5rJsRFkiSl5P1a
+nqz/Zm0WlVmnUUe6+GtqsiXzhHWI3C10pKLBm2fbFoFnd04kZKrX2WZhygw
ExEmXM0OL9/SRFlAj4mjsKg5ZYJMlPmGi/NxbJNAgwKTnHuum9ZZcGYmibAu
mojbu2kJFSErs7SScJY5bMjG3bigheiyScURb1nqEpTpxrkzFv7+xHPuQNEf
9ORIs696+pxr5c3bZlRj+5R+Zy6Ua2qZTh8zdAwCjW/8gN/bE6v6qrqIQlMr
iDkMC6OhXP9wz+M4hA25XJAu47hcdQub28TlQtKFijPWUPdVgQjiW/iLCxvc
jn4Xbb0+l0jfbR9EjLYp2lgAdGtOc7GaBAneS6m4SDFwzjzrdVNMWSuLSioc
ugI7zfQvqMVS6XZsDk/qxlrlpaDnDdkKqp61abH8ynKXoBlAHrJpqvbompw7
Iwv8fpWiLTVmxoWoTgUm1t4PzUIjd9jKA9XL++WJRPWlMh47tjwYPOOK3WjQ
IaxiNh4GEORsV4HNuvAs1LKx7IFFB6Rx+cjl15LT91CzX1mSwsNQ8oK622FA
C33spn0ukF9hsBNLPbN2lIlKCvhf3BGZ34iYLKh6w7afpW9wyrVum0PJ/tRd
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

-->

</rfc>
