<?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-11" category="std" consensus="true" submissionType="IETF" updates="1034, 1035, 4035, 6672, 6840" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title abbrev="DELEG">Extensible Delegation for DNS</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-deleg-11"/>
    <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="July" day="23"/>
    <area>Internet</area>
    <workgroup>deleg</workgroup>
    <keyword>Internet-Draft</keyword>
    <keyword>DNS</keyword>
    <keyword>delegation</keyword>
    <abstract>
      <?line 46?>
<t>This document specifies 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.  In classic DNS, both parent and child zones contain copies of NS delegation records, which can potentially be out of sync and confusing.
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, authority 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>Traditionally, a delegation is represented by an NS RRset, which contains the hostnames of name servers, though no other parameters.
The resolver resolves these names into usable addresses and uses default protocol parameters, for transport protocol and any other protocol features.
Moreover, the NS RRset 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.
DNSSEC authenticates the authoritative NS RRset in the delegated zone but does not authenticate the delegation NS RRset.</t>
      <t>The lack of properties of delegation NS RRsets limits resolvers to unauthenticated transport on default ports, and this initial contact is not protected with DNSSEC.
These limitations are a barrier for the efficient introduction of new DNS technology.</t>
      <t>The 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 RRset creates a new delegation.
It is a Delegation Type record as defined in <xref target="I-D.ietf-dnsop-delext"/>.
It is authoritative in the delegating zone and can be signed with DNSSEC.
This makes it possible to authenticate the delegation parameters carried by DELEG, including future extensions.</t>
      <t>The DELEG RRset can be used alongside, or instead of, an NS RRset to create a delegation.
The combination of DELEG and NS RRsets is compatible with resolvers that do not support DELEG, facilitating the incremental rollout of this new method.</t>
      <t>The DELEGPARAM record is an auxiliary record which contains the same data as DELEG, but does not create a delegation.
Instead it is used as the target when DELEG is optionally using indirection.
This indirection can, for example,
be used to share the same delegation information across multiple zones and simplify operational management by reducing the number of locations for the delegation information for those zones.
For example, if the customers of a DNS operator point their delegations to a DELEGPARAM record managed by the DNS operator,
then the operator will be able to make delegation information changes without further customer involvement, and affect all of those customer's delegations with a single change.</t>
      <t>Future documents can define additional delegation parameters, for example to advertise support for encrypted transports.</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
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>Delegation Type: Defined in <xref target="I-D.ietf-dnsop-delext"/>.</t>
          </li>
          <li>
            <t>Delegation-Extension-aware: Defined in <xref target="I-D.ietf-dnsop-delext"/>.</t>
          </li>
          <li>
            <t>DELEG-aware: DNS software that follows the protocol defined in this document.
DELEG-aware software is inherently Delegation-Extension-aware.</t>
          </li>
          <li>
            <t>DELEG-unaware: 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 a 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 DELEG protocol.
It is meant for people who want to understand the protocol before they dive deeper into the specifics.</t>
      <t>The DELEG protocol is built on top of <xref target="I-D.ietf-dnsop-delext"/>.</t>
      <t>When a DELEG-aware resolver sends DNS 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.</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 a referral (i.e., a delegation), 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.
If the response is not a referral, the authoritative server doesn't change anything about how it responds.</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 resolved 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 delegated zone (<xref target="slist"/>).
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>DELEG RR type is a Delegation Type, thus authoritative at the delegation point, 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 mandates the use of DNSKEY-ADT flag described in <xref target="I-D.ietf-dnsop-delext"/>.</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 has an RR type that is TBD1.
It is a Delegation Type, as defined in <xref target="I-D.ietf-dnsop-delext"/>; thus, TBD1 will be from the 0xF000-0xF1EF range.
The DELEGPARAM record has an RR type of TBD2.
It is not a Delegation Type, and thus will not come from the range defined in <xref target="I-D.ietf-dnsop-delext"/>.</t>
      <t>The DELEG record and the DELEGPARAM record have the same wire and presentation formats,
but their semantics are different as described in a following section.</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>
        <t>The structure of a single "DelegInfo" element is:</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 <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>For example, assume a list of two domain names. The first domain name is "simple.example". The second domain name is under ".example" whose leftmost label is "abc" followed by a escape character (U+001B), followed by "def", followed by a comma, followed by "ghi". This list would have a presentation value of "simple.example,abc\027def\,ghi.example".</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 <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 a 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 requires the use of the EDNS0 DE flag and its requirements from <xref target="I-D.ietf-dnsop-delext"/>.</t>
      <t>A resolver that is DELEG-aware MUST signal in queries that it supports the DELEG protocol by setting the DE bit to 1.</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>
    <section anchor="use-of-deleg-records-in-the-protocols">
      <name>Use of DELEG Records in the Protocols</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 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>
      <section anchor="resolvers">
        <name>Resolvers</name>
        <t>Resolvers use DELEG records for referrals following the rules from <xref target="I-D.ietf-dnsop-delext"/>.</t>
        <t>A resolver that is DELEG-aware MUST signal in queries that it supports the DELEG protocol by setting the DE bit to 1 (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="delegation-point-types-qtypedeleg">
          <name>Delegation point types, QTYPE=DELEG</name>
          <t>DELEG RR type is one of Delegation Types with special handling defined defined in <xref target="I-D.ietf-dnsop-delext"/>.</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.</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 a similar way as the NS RR type.
<xref target="I-D.ietf-dnsop-delext"/> section 4 applies.
A notable example of this is that the occlusion (usually accidentally) created by delegation NS records would also be created by DELEG records at the same name (see <xref target="occluded-example"/>).</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="ns-no-deleg">
            <name>DELEG-aware Clients with NS RRs Present but No DELEG RRs</name>
            <t>According to specification in <xref target="I-D.ietf-dnsop-delext"/>, if the delegation does not have a DELEG RRset, the authoritative server puts the NS RRset into the authority section of the referral.
The absence of the DELEG RRset needs to be proven.</t>
            <t>Similarly, rules for DS RRset inclusion into referrals apply as specified by the DNSSEC protocol.
Please note that, 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 value "New Delegation Only" (decimal 34) from the Extended DNS Error Codes registry.</t>
            <t>When there is no NS RRset 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 the algorithm applicable to DELEG-unaware authoritative servers originally defined in <xref target="RFC1034"/> (and later updated).
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>The above rules apply to authoritative servers that are serving both a parent and a child zone when a DELEG-unaware client sends a QTYPE=DELEG query.</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.
These are defined in <xref target="I-D.ietf-dnsop-delext"/>.</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 a 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, <xref target="I-D.ietf-dnsop-delext"/> introduces the DNSKEY flag called DNSKEY-ADT.
To achieve downgrade resistance, DNSSEC-signed zones which contain a DELEG RRset MUST follow the rules in  <xref target="I-D.ietf-dnsop-delext"/>.</t>
      </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="forwarding">
        <name>Forwarding</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.</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; otherwise, a DNS client would not know that the resolver is DELEG-aware.
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 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 an 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 to 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 at the protocol layer,
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 transferring) 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 DNSKEY-ADT flag set to 1. Failure to do so results in loss of downgrade resistance of the DELEG protocol for this zone; see <xref target="I-D.ietf-dnsop-delext"/> section 8.</t>
          </li>
        </ol>
        <section anchor="enabling-the-dnskey-adt-flag">
          <name>Enabling the DNSKEY-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 DNSKEY-ADT flag cannot be simply enabled on an existing key without other changes to the record.
Operators are advised to set the DNSKEY-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 DNSKEY-ADT flag set to 1 even if the zone does not have any DELEG records.
Turning on the DNSKEY-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 of <xref target="RFC6781"/> Section 4.1.1.1.</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 the 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-update">
        <name>Interaction with Dynamic DNS Update</name>
        <t>DELEG records can be updated like other regular zone data at the delegation point, similar to NS records, because dynamic updates work on zone data but not on queries.
A DELEG-only delegation would not need an NS record in the delegated zone, but the NS record in the delegated zone cannot be deleted because of Section 7.13 in <xref target="RFC2136"/>.
This should cause no immediate problems because dynamic DNS updates with DELEG are most useful at the delegation point.
A DELEGPARAM record will be handled like any other record.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <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 MUST limit include-delegparam chain processing when populating SLIST similarly to CNAME processing in <xref target="RFC1034"/>;
otherwise, the resolver could exhaust some of its resources.
Note that include-delegparam chains can have CNAME/DNAME 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>Content of SLIST MUST be deduplicated to prevent amplification attacks similar to CVE-2026-3592 which use the resolver to attack other systems.
See <xref target="slist"/>.</t>
      </section>
      <section anchor="preventing-downgrade-attacks">
        <name>Preventing Downgrade Attacks</name>
        <t><xref target="I-D.ietf-dnsop-delext"/> section 8 applies.</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 <xref target="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", from the Delegation Types range defined in <xref target="I-D.ietf-dnsop-delext"/>. The requested value is 61440.</t>
          </li>
          <li>
            <t>TYPE DELEGPARAM, Meaning "Extensible Delegation Indirection", Value TBD2 inside one of the ranges marked as "data TYPEs".</t>
          </li>
        </ul>
        <t>IANA is requested to assign a value in the Extended DNS Error Codes registry (<xref target="RFC8914"/>):</t>
        <ul spacing="normal">
          <li>
            <t>Decimal 34 with the Purpose "New Delegation Only".</t>
          </li>
        </ul>
        <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 the 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>
          <artwork><![CDATA[
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
]]></artwork>
          <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>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="I-D.ietf-dnsop-delext">
          <front>
            <title>DNS Protocol Modifications for Delegation Extensions</title>
            <author fullname="Roy Arends" initials="R." surname="Arends">
              <organization>ICANN</organization>
            </author>
            <author fullname="Peter van Dijk" initials="P." surname="van Dijk">
              <organization>PowerDNS</organization>
            </author>
            <author fullname="Petr Špaček" initials="P." surname="Špaček">
              <organization>ISC</organization>
            </author>
            <date day="22" month="July" year="2026"/>
            <abstract>
              <t>   The Domain Name System (DNS) protocol permits Delegation Signer (DS)
   records at delegation points.  This document specifies modifications
   to the DNS protocol to permit a range of Resource Record types at
   delegation points.  These modifications are designed to maintain
   compatibility with existing DNS resolution mechanisms and provide a
   secure method for processing these records at delegation points.

   This document updates RFCs 1034, 4035, 6672, 6840, 6895 and 9824.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-delext-09"/>
        </reference>
        <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="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="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="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="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="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 681?>

<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>
        <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="I-D.ietf-dnsop-delext"/> section 6).</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 )
example.   NSEC  net. NS DS RRSIG NSEC DELEG
example.   RRSIG NSEC 13 1 300 20260101000000 (
                        20250101000000 33333 . SigExampleNSEC+/ )

;; 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, the full set of name servers in form of a 'virtual' DELEG RRset is represented here.</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="an-example-of-a-valid-delegation-tree">
        <name>An example of a valid delegation tree</name>
        <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>
        <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.nssub.sld.test. DELEG ...
]]></artwork>
      </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=1p.invalid.,sub.params.1p.invalid.
2n.invalid. DELEG server-name=ns1.2n.invalid.,ns2.sub.2n.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 \# 0
01.invalid. DELEG key65280=\032\037\041\045
02.invalid. DELEG key65281="char-string with whitespace"
]]></artwork>
        <t>DELEG records with disallowed/ambiguous combination of <xref target="nameserver-info"/> keys:</t>
        <artwork><![CDATA[
k1.invalid. DELEG server-name=ns1.test. include-delegparam=i2.test.
k2.invalid. DELEG server-ipv4=192.0.2.1 server-name=ns1.test.
k3.invalid. DELEG server-ipv6=3fff::2 include-delegparam=i2.test.
]]></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="testvectors">
      <name>Test Vectors</name>
      <t>These test vectors only contain the RDATA portion of DELEG records in
presentation format, generic format (<xref target="RFC3597"/>) and wire format. The wire
format uses hexadecimal (\xNN) for each non-ascii byte. As the wireformat is
long, it is broken into several lines.</t>
      <t>As the encoding rules for DelegInfo and SVCParam are the same, further examples
of the encoding of different types of values can be found in Appendix D of
<xref target="RFC9460"/>.</t>
      <figure>
        <name>A simple example of a mandatory server-ip4 with two IP addresses</name>
        <artwork><![CDATA[
example.   DELEG mandatory=server-ipv4 server-ipv4=192.0.2.1,192.0.2.2
example.   DELEG key0=\000\001 key1=\192\000\002\001\192\000\002\002

\# 18 (
00 00                                              ; key 0
00 02                                              ; deleg info length 2
00 01                                              ; deleg info value: key 1
00 01                                              ; key 1
00 08                                              ; deleg info length 8
c0 00 02 01                                        ; deleg info value, IP 1
c0 00 02 02                                        ; deleg info value, IP 2
)

\x00\x00                                           # key 0
\x00\x02                                           # deleg info length 2
\x00\x01                                           # deleg info value: key 1
\x00\x01                                           # key 1
\x00\x08                                           # deleg info length 8
\xc0\x00\x02\x01                                   # deleg info value, IP 1
\xc0\x00\x02\x02                                   # deleg info value, IP 2
]]></artwork>
      </figure>
      <figure>
        <name>Two quoted server-ipv6 addresses</name>
        <artwork><![CDATA[
example.   DELEG server-ipv6="2001:db8::1,2001:db8::53:1"

\# 36 (
00 02                                              ; key 2
00 20                                              ; length 32
20 01 0d b8 00 00 00 00 00 00 00 00 00 00 00 01    ; first address
20 01 0d b8 00 00 00 00 00 00 00 00 00 53 00 01    ; second address
)

\x00\x02                                           # key 2
\x00\x20                                           # length 32
\x20\x01\x0d\xb8\x00\x00\x00\x00
     \x00\x00\x00\x00\x00\x00\x00\x01              # first address
\x20\x01\x0d\xb8\x00\x00\x00\x00
     \x00\x00\x00\x00\x00\x53\x00\x01              # second address
]]></artwork>
      </figure>
      <figure>
        <name>The server-name deleg info with two addresses with different capitalization</name>
        <artwork><![CDATA[
example.   DELEG server-name=NS2.EXAMPLE.NET.,ns3.example.org.
example.   DELEG server-name="NS2.EXAMPLE.NET.,ns3.example.org."

\# 38 (
00 03                                              ; key 3
00 22                                              ; length 34
03 4e 53 32 07 45 58 41 4d 50 4c 45 03 4e 45 54 00 ; first name
03 6e 73 33 07 65 78 61 6d 70 6c 65 03 6f 72 67 00 ; second name
)

\x00\x03                                           # key 3
\x00\x22                                           # length 34
\x03NS2\x07EXAMPLE\x03NET\x00                      # first address
\x03ns3\x07example\x03org\x00                      # second address
]]></artwork>
      </figure>
      <figure>
        <name>The include-delegparam deleg info with a single value</name>
        <artwork><![CDATA[
example.   DELEG include-delegparam=param.example.net.

\# 23 (
00 04                                                    ; key 4
00 13                                                    ; length 19
05 70 61 72 61 6d 07 65 78 61 6d 70 6c 65 03 6e 65 74 00 ; name
)

\x00\x04                                           # key 4
\x00\x13                                           # length 19
\x05param\x07example\x03net\x00                    # name
]]></artwork>
      </figure>
    </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 Hackathon.
Hackathon 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, Pieter Lexis, ...</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
ant/NlxBxUZIyuzqSylw+Wg+7XNJTzrNgY/bPHMH8yuAuZGUtsnlOuCrG6j1
K7zlLqj2sKL3QmN4FguerqQbAXkTbfMC7idC95fbcKIk28dVkQ86Eeta0ohx
ZHBJXJpJ7Y7FC0otVIRPsyKgQMnabCmY1QO49BVOMp8VvuO1DYGQFSnasHbv
jLN+TJZdXFn1iK5gIZXXX67IDVNhbjPfTEtZaQnXj4uZhpZ/Fc+QRZG5xDVf
NsyxgeiCohk298IUwbyR1QwcdFXmzKY2YZ3EIrFwsLXmlU2YX1PHELn7tZsz
BVqSzTLUqn1L++KC1S49GvzChUi9FJIYrb69ZD8Vxy0/rbifvi4fTzcNJvGz
M6k05Tu8B2KLu3x99gyboXpw/P0NQl+wjWCLUv/9d/D8O3n+fyHCLqVNMJ6E
C91+z1GADQmtEwFjZfg/SRKuUQmSKx6AV0pkBXVErCJRnY759+sCw3qCpqur
10TEc3QE5UytmFYJ80/i6Q3xv+MkEZq9F7ec2yT5biEGLTEyomnUNyAHa8rD
tZYldWCuqhVSNsqG93DmUlcsKWKtI9Eed5XbSfgkHZwj8SxgqhCeolEYrkWi
AvawYE0mKeM7Sb26GzgvFdgP5FvTFbyisVpT0XcXcGLllmOviMziHCMS0t/B
7pJleJZx2iJTedGFGpH/M7WkNdqEEvCpM8mJpn30vSjNZTU4MTVEXKS1kR52
k7VPIJ9buqBtdb+qKHbVOj6krK2cYZu+mKmWY/FrMK/SKakg35DSqYX/9vIi
cWSKRkqRfz5/yiKZW1HTgwf0ZPedJuqeTwQKngTrOsobZGtuZE6GomumJZfA
ebybFpnzWJIKFXslI919SAYazv7Yg54kwy/IW+tavCk7eDYa77k0j93x3iE3
L02tDaVBiShdLExCdqPQfNXCCe6MxYvL0aO7L7FnJzw7W2WbUG+xFJRYqg3O
iaiJpnOs7cZKSRfeOcABgEaESa/Nws5qSPh4hzlVnEXHHHGLPjwJK9F6zZ5S
S37bS3tVs9nWAAGvrFptGyS9rcQSV2D4WO0sUT5XvL8gGcBFnRShpLILgk8q
BhAUakkfWpheStVdwVePozYwlcJPTk+faRJxjVzGUGkl7mqGt5pgTa9FhgAG
mHyNfj6Ov3LX71Yhoh9o6Lz8WQtibCXQNC3ZLffQcQd6mCcrsCBydMxQQFO3
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
kYljwYQpYfc1trIYkPP9/wFrZqNNyOUAAA==

-->

</rfc>
