<?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.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-deleg-05" category="std" consensus="true" submissionType="IETF" updates="1034, 1035, 4035, 6672, 6840" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="DELEG">Extensible Delegation for DNS</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-deleg-05"/>
    <author initials="T." surname="April" fullname="Tim April">
      <organization>Google, LLC</organization>
      <address>
        <email>ietf@tapril.net</email>
      </address>
    </author>
    <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="2025" month="October" day="20"/>
    <area>Internet</area>
    <workgroup>deleg</workgroup>
    <keyword>Internet-Draft</keyword>
    <keyword>DNS</keyword>
    <keyword>delegation</keyword>
    <abstract>
      <?line 51?>
<t>This document proposes a new extensible method for the delegation of authority for a domain in the Domain Name System (DNS) using DELEG and DELEGI records.</t>
      <t>A delegation in the DNS enables efficient and distributed management of the DNS namespace.
The traditional DNS delegation is based on NS records which contain only hostnames of servers and no other parameters.
The new delegation records are extensible, can be secured with DNSSEC, and eliminate the problem of having two sources of truth for delegation information.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://github.com/ietf-wg-deleg/draft-ietf-deleg-base/tree/gh-pages"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-deleg/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        deleg Working Group mailing list (<eref target="mailto:dd@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/dd/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/dd/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-deleg/draft-ietf-deleg-base/"/>.</t>
    </note>
  </front>
  <middle>
    <?line 58?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>In the Domain Name System, responsibility for each subdomain within the domain name hierarchy can be delegated to different servers, which makes them authoritative for their portion of the namespace.</t>
      <t>The original DNS record that does this, called an NS record, contains only the hostname of a single name server and no other parameters.
The resolver needs to resolve these names into usable addresses and infer other required parameters, such as the transport protocol and any other protocol features.
Moreover, the NS record set exists in two places--one at the delegation point, and the other, possibly different, in the child zone.
The DNS Security Extensions (DNSSEC) protect only one copy, those in the child zone.</t>
      <t>These properties of NS records limit resolvers to unencrypted UDP and TCP port 53, and this initial contact cannot be protected with DNSSEC.
Even if these two problems were somehow solved, the NS record does not offer extensibility for any other parameters.
This limitation is a barrier for the efficient introduction of new DNS technology.</t>
      <t>The proposed DELEG and DELEGI resource record (RR) types remedy this problem by providing extensible parameters to indicate server capabilities and additional information, such as other transport protocols that a resolver may use.</t>
      <t>The DELEG record creates a new delegation.
It is authoritative in the parent side of delegation and thus can be signed with DNSSEC.
This makes it possible to validate all delegation parameters, including those of future extensions.</t>
      <t>The DELEGI record is an auxiliary record which does not create a delegation by itself but provides an optional layer of indirection.
It can be used to share the same delegation information across any number of zones.
DELEGI is treated like regular authoritative record.</t>
      <t>The DELEG record can be used instead of or alongside a NS record to create a delegation.
The combination of DELEG+NS is fully compatible with old resolvers, facilitating the incremental rollout of this new method of delegation.</t>
      <t>Future documents can use the extensibility mechanism for more advanced features like connecting to a name server with an encrypted transport.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in <br/>
BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in
all capitals, as shown here.</t>
        <t>Terminology regarding the Domain Name System comes from <xref target="BCP219"/>, with addition terms defined here:</t>
        <ul spacing="normal">
          <li>
            <t>legacy delegation: A delegation that is done with an NS RRset</t>
          </li>
          <li>
            <t>legacy response: A response that does not use the DELEG protocol described in this document</t>
          </li>
          <li>
            <t>DELEG-aware: An authoritative server or resolver that follows the protocol defined in this document</t>
          </li>
          <li>
            <t>DELEG-unaware: An authoritative server or resolver 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>
        </ul>
      </section>
    </section>
    <section anchor="deleg-and-delegi-resource-record-types">
      <name>DELEG and DELEGI Resource Record Types</name>
      <t>The DELEG record, RR type TBD, and the DELEGI record, RR type TBD2 (different from that of DELEG), have the same wire and presentation formats,
but their semantics are different as described in a following section.
These records are defined for the IN class.</t>
      <t>The record format is based on the extensible key=value list that was originally defined as "SvcParams" for the SVCB record type <xref target="RFC9460"/>.
Unlike SVCB, the DELEG protocol does not have "SvcPriority" and "TargetName" fields.
The keys in the DELEG protocol are 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 will be 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 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 SVCB/HTTPS and DELEG/DELEGI 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 DELEGI 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>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.
A record with a zero-length DelegInfos field has no effect on the SLIST processing for resolvers.</t>
      </section>
      <section anchor="rdata-wire-format">
        <name>RDATA Wire Format</name>
        <t>The RDATA portion of the DELEG and DELEGI resource record has 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.
The wire format of an individual DelegInfo element is the same as for a SvcParam element,
but it references DelegInfo elements instead of SvcParam elements.</t>
        <artwork><![CDATA[
                +0 (MSB)                            +1 (LSB)
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
0:  |                          DelegInfoKey                         |
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2:  |                length of DelegInfoValue                       |
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
4:  /                          DelegInfoValue ...                   /
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork>
        <t>The permissible lengths depend on the DelegInfoKey value.
Some future keys may have no DelegInfoValue, which would be indicated with an explicit 0 length.</t>
      </section>
      <section anchor="overview-of-differences-between-deleg-and-delegi-semantics">
        <name>Overview of Differences between DELEG and DELEGI Semantics</name>
        <t>The following is a brief summary of semantic differences between the DELEG and DELEGI 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 in the parent zone of the delegated zone, similar to the DS RR type, and unlike the NS RR type.</t>
          </li>
          <li>
            <t>DELEG is signed by the parent zone of the delegated zone 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>DELEGI is like any normal RR and doesn't require any special processing.</t>
          </li>
          <li>
            <t>DELEGI does not create a delegation for its owner name.</t>
          </li>
          <li>
            <t>DELEGI cannot coexist at the same owner name with DELEG or NS RR types.</t>
          </li>
          <li>
            <t>DELEGI DNSSEC signing and record placement rules are the same as for any ordinary RR type.</t>
          </li>
          <li>
            <t>DELEGI is used as the target of the DELEG protocol's "include" mechanism, as described in section <xref target="slist"/>.</t>
          </li>
        </ul>
        <t>TODO: Add some introduction comparing how resolvers see legacy delegation (set of NS and A/AAAA records) and DELEG delegation (DELEG and DELEGI records with server-ipv4 and server-ipv6 keys)</t>
      </section>
    </section>
    <section anchor="use-of-deleg-records">
      <name>Use of DELEG Records</name>
      <t>The DELEG RRset MAY contain multiple records.
A DELEG RRset MAY be present with or without NS or DS RRsets at the delegation point, though without NS records then DELEG-unaware software will not be able to resolve records in the the delegated zone.</t>
      <t>DELEG RRsets MUST NOT appear at a zone's apex.
The erroneous inclusion of DELEG RRset at zone's apex will cause DNSSEC validation failures.
Servers MAY refuse to load such an invalid zone, similar to the DS RR type.</t>
      <section anchor="resolvers">
        <name>Resolvers</name>
        <section anchor="signaling-deleg-support">
          <name>Signaling DELEG Support</name>
          <t>There will be both DELEG and NS needed for delegation for a long time.
Both legacy delegation and the DELEG protocol enable recursive resolution.
This document defines a new EDNS flag to signal that a resolver is DELEG-aware and therefore does not need NS records or glue information in a referral response.</t>
          <t>A resolver that is DELEG-aware MUST signal in queries that it supports the DELEG protocol by setting a bit in the OPT RR TTL as described in <xref target="RFC6891"/>.
This bit referred to as the "DELEG" (DE) bit, expected to be assigned by IANA at Bit 2 in the EDNS Header Flags registry, as follows:</t>
          <artwork><![CDATA[
            +0 (MSB)                +1 (LSB)
     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
  0: |   EXTENDED-RCODE      |       VERSION         |
     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
  2: |DO|CO|DE|              Z                       |
     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
]]></artwork>
          <t>Setting the DE bit to one in a query indicates the resolver understands the DELEG semantics and does not need NS records to follow a referral.
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.</t>
        </section>
        <section anchor="referral">
          <name>Referral</name>
          <t>The DELEG record creates a zone cut similar to the NS record.</t>
          <t>If one or more DELEG records exist at a given delegation point, a DELEG-aware resolver MUST treat the name servers from those DELEG records as authoritative for the child zone.
In such a case, a DELEG-aware resolver MUST NOT use NS records for the zone if they are present, even if resolution using DELEG records has failed.
Such fallback from DELEG to NS would invalidate the security guarantees of the DELEG protocol.</t>
          <t>If no DELEG record exists at a given delegation point, DELEG-aware resolvers MUST use NS records as specified by <xref target="RFC1034"/>.
See <xref target="dnssec-validators"/> for more information about protection from downgrade attacks.</t>
        </section>
        <section anchor="parent-side-types-qtypedeleg">
          <name>Parent-side types, QTYPE=DELEG</name>
          <t>Record types defined as authoritative on the parent side of zone cut, currently the DS and DELEG types, retain the same special handling as described in Section 2.6 of <xref target="RFC4035"/>.</t>
          <t>DELEG-unaware resolvers can get different types of answers for QTYPE=DELEG queries based on the configuration of the server, such as whether it is DELEG-aware and whether it also is authoritative for subdomains.
For example, a DELEG-unaware authoritative name server which has loaded DELEG records via the <xref target="RFC3597"/> unknown types mechanism would answer with them only if there were no NS records at the owner name, and answer with an NS delegation otherwise.</t>
        </section>
        <section anchor="finding-best">
          <name>Algorithm for "Finding the Best Servers to Ask"</name>
          <t>This document updates instructions for finding the best servers to ask.
That information currently is covered in Section 5.3.3 of <xref target="RFC1034"/> and Section 3.4.1 of <xref target="RFC6672"/> with the text "2. Find the best servers to ask."
Section 3.1.4.1 of <xref target="RFC4035"/> should have explicitly updated Section 5.3.3 of <xref target="RFC1034"/> for the DS RR type, but failed to do so.
This document simply extends this existing behavior to DELEG RR type as well, and makes this special case explicit.</t>
          <t>When a DELEG RRset exists for a delegation in a zone, DELEG-aware resolvers ignore any NS RRset for the delegated zone, whether from the parent or from the apex of the child.</t>
          <t>Each delegation level can have a mixture of DELEG and NS RR types, and DELEG-aware resolvers MUST be able to follow chains of delegations which combines both types in arbitrary ways.</t>
          <t>An example of a valid delegation tree:</t>
          <artwork><![CDATA[
; root zone with NS-only delegations
. SOA ...
test. NS ...

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

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

; nssub.sld.test. zone with DELEG-only delegation
delegsub.sub.sld.test. DELEG ...
]]></artwork>
          <t>TODO: after the text below, refer back to this figure and show the order that a DELEG-aware resolver would take when there is a failure to find any good DELEG addresses at sub.sld.test, then any usable name servers at sub.sld.test, and then maybe a good DELEG record at test.</t>
          <t>The terms SNAME and SLIST used here are defined in Section 5.3.2 of <xref target="RFC1034"/>:</t>
          <t>SNAME is the domain name we are searching for.</t>
          <t>SLIST is a structure which describes the name servers and the zone which the resolver is currently trying to query.
Neither <xref target="RFC1034"/> nor this document define how a resolver uses SLIST; they only define how to populate it.</t>
          <t>A DELEG-aware SLIST needs to be able to hold two types of information, delegations defined by NS records and delegations defined by DELEG records.
DELEG and NS delegations can create cyclic dependencies and/or lead to duplicate entries which point to the same server.
Resolvers need to enforce suitable limits to prevent damage even if someone has incorrectly configured some of the data used to create an SLIST.</t>
          <t>This leads to a modifications of the description from earlier documents for DELEG-aware resolvers can find the best servers to ask.
That description becomes:</t>
          <ol spacing="normal" type="1"><li>
              <t>Determine deepest possible zone cut which can potentially hold the answer for a given (query name, type, class) combination:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Start with SNAME equal to QNAME.</t>
                </li>
                <li>
                  <t>If QTYPE is a type that is authoritative at the parent side of a zone cut (currently, DS or DELEG), remove the leftmost label from SNAME.
For example, if the QNAME is "test.example." and the QTYPE is DELEG or DS, set SNAME to "example.".</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Look for locally-available DELEG and NS RRsets, starting at current SNAME.  </t>
              <ol spacing="normal" type="1"><li>
                  <t>For a given SNAME, check for the existence of a DELEG RRset.
If it exists, the resolver MUST use its content to populate SLIST.
However, if the DELEG RRset is known to exist but is unusable (for example, if it is found in DNSSEC BAD cache), the resolver MUST NOT instead use an NS RRset; instead, the resolver MUST treat this case as if no servers were available.</t>
                </li>
                <li>
                  <t>If a given SNAME is proven to not have a DELEG RRset but does have an NS RRset, the resolver MUST copy the NS RRset into SLIST.</t>
                </li>
                <li>
                  <t>If SLIST is now populated, stop walking up the DNS tree.
However, if SLIST is not populated, remove the leftmost label from SNAME and go back to the first step, using the newly shortened SNAME.
Do not go back to the first step if doing so would exceed the amount of work that the resolver is configured to do when processing names; see <xref target="too-much-work"/>.</t>
                </li>
              </ol>
            </li>
          </ol>
          <t>The rest of Step 2's description is not affected by this document.</t>
          <t>Resolvers MAY respond to "QNAME=. / QTYPE=DELEG" queries in the same fashion as they respond to "QNAME=. / QTYPE=DS" queries.</t>
        </section>
        <section anchor="nameserver-info">
          <name>Name Server Information for Delegation</name>
          <t>The DELEG and DELEGI records have four keys that describe information about name servers.
The purpose of this information is to populate the SLIST with IP addresses of the name servers for a zone.
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</t>
            </li>
            <li>
              <t>include-delegi: an unordered collection of domain names that point to a DELEGI 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 list 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-delegi are an unordered collection of fully-qualified domain names and relative domain names, separated by commas.
The wire format for server-name and include-delegi are each a concatenated set of a wire-format domain names, where the root label provides the separation between names.
The names in the wire format MUST NOT be compressed.</t>
          <t>TODO: Describe how escaping works for server-name and include-delegi.
This will be the same as the escaping mechanism defined in SVCB.</t>
          <t>A DELEG or DELEGI record that has a non-empty DelegInfos MUST have one, and only one, set of server information, 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-delegi key</t>
            </li>
          </ul>
          <t>This restriction only applies to a single DELEG or DELEGI record; a DELEG or DELEGI RRset can have records with different server information keys.</t>
          <t>When using server-name, the addresses for all the names in the set must be fetched using normal DNS resolution.
This means the names in the value of the server-name key or the include-delegi key MUST NOT be 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="slist">
          <name>Populating the SLIST from DELEG and DELEGI Records</name>
          <t>Each individual DELEG record inside a DELEG RRset, or each individual DELEGI record in a DELEGI 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 DELEGI record in a DELEGI RRset, using the following steps:</t>
          <ol spacing="normal" type="1"><li>
              <t>If a record has more than one type of server information key (excluding the IPv4/IPV6 case), or has multiple server information keys of the same type, that record is malformed.
Stop processing this record.</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-delegi key is present in the record, resolve each name in the value using the DELEGI 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 remaining records if SLIST already has what the resolver considers a sufficiently large pool of addresses to contact.</t>
          <t>The order in which to try the servers in the final SLIST is outside the scope of this document.</t>
        </section>
      </section>
      <section anchor="authoritative-servers">
        <name>Authoritative Servers</name>
        <t>The DELEG RR type defines a zone cut in similar way as the NS RR type.
Behavior defined for zone cuts in existing non-DELEG specifications apply to zone cuts created by the DELEG record.
A notable example of this is that the occlusion (usually accidentally) created by NS records in a parent zone would also be created by DELEG records in a parent zone.</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).</t>
        <t>The server MUST copy the value of the DE bit from the query into the response, to signal that it is a DELEG-aware server.</t>
        <section anchor="deleg-aware-clients">
          <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 zone cuts, and the servers are authoritative on the parent side of the zone cut.
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 query for the DS RR type: the server answers authoritatively from the parent zone.
All non-DELEG specifications for special handling queries with QTYPE=DS apply equally to QTYPE=DELEG.
In summary, the server either provides an authoritative DELEG RRset or declares its non-existence, with relevant DNSSEC proofs when requested and available.</t>
          </section>
          <section anchor="delegation-with-deleg">
            <name>Delegation with DELEG</name>
            <t>If the delegation has a DELEG RRset, the authoritative server MUST put the DELEG RRset into the Authority section of the referral.
In this case, the server MUST NOT include the NS RRset in the Authority section.
Include the covering RRSIG following the normal DNSSEC procedure for answers with authoritative zone data.</t>
            <t>Similarly, rules for DS RRset inclusion in referrals apply as specified by the DNSSEC protocol.</t>
          </section>
          <section anchor="deleg-aware-clients-with-ns-rrs-present-but-no-deleg-rrs">
            <name>DELEG-aware Clients with NS RRs Present but No DELEG RRs</name>
            <t>If the delegation does not have a DELEG RRset, the authoritative server MUST put the NS RRset into the authority section of the referral.
The absence of the DELEG RRset MUST be proven as specified by the DNSSEC protocol for authoritative data.</t>
            <t>Similarly, rules for DS RRset inclusion into referrals apply as specified by the DNSSEC protocol.
Please note, in practice the same process and records are used to prove the non-existence of both DELEG and DS RRsets.</t>
          </section>
        </section>
        <section anchor="deleg-unaware-clients">
          <name>DELEG-unaware Clients</name>
          <t>A general principle for DELEG-aware authoritative servers is that they respond to a DELEG-unaware client by following non-DELEG specifications.</t>
          <t>DELEG-unaware clients do not recognize DELEG records as a zone cut 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 on the parent side of a zone cut.</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. See <xref target="no-ns"/>.</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.
In such a situation, the authoritative server should respnd in a way to limit confusion and/or colateral damage for the DELEG-unaware client.</t>
            <t>The authoritative server is RECOMMENDED to supplement its responses to DELEG-unaware resolvers with an <xref target="RFC8914"/> Extended DNS Error using the (IANA-TBD) value "New Delegation Only" from the Extended DNS Error Codes registry.</t>
            <t>A DELEG-aware authoritative server implementation has two options:</t>
            <ol spacing="normal" type="1"><li>
                <t>When faced with a client that sent a query with DE=0 that would lead to a delegation, but the zone has no NS records, an authoritative server MAY reply with an RCODE of SERVFAIL and nothing in the Answer and Authority sections.  </t>
                <t>
This response has negative side effects, namely that most resolvers will then query the remaining authoritative servers to see if any of them would give a different answer.
The advantage of this approach is simplicity of implementation and it is easy to understand.</t>
              </li>
              <li>
                <t>Because of the negative side effects of the previous option, an authoritative server SHOULD instead send an answer that accurately describes the situation to a DELEG-unaware resolver.  </t>
                <t>
The NSEC chain and the type bitmap generated according to <xref target="signers"/> leads to exactly one possible answer which is valid according to non-DELEG specifications.
See <xref target="examples"/> for several examples of such answers.  </t>
                <t>
Please note different interpretation of DELEG RR type and zone cut definitions between DELEG-aware authoritative server and DELEG-unaware client. It is confusing.</t>
              </li>
            </ol>
            <t>TODO: List as many of the possible situations that need to be considered for variant 2, and the proposed the single appropriate response for each situation. This list will probably change for the next few iterations of this draft.</t>
          </section>
          <section anchor="deleg-unaware-clients-requesting-qtypedeleg">
            <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 legacy response which can be validated by DELEG-unaware client.</t>
            <ul spacing="normal">
              <li>
                <t>If there is an NS RRset, this will be a legacy referral to the child zone. 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 child zone in similar fashion as described in <xref target="RFC4035"/> section 3.1.4.1.</t>
              </li>
              <li>
                <t>If there is no NS RRset but there is a DELEG RRset, this will be a normal authoritative response with the DELEG RRset, following non-DELEG specifications.</t>
              </li>
              <li>
                <t>If there is no NS RRset and no DELEG RRset, this will be a standard negative response following non-DELEG specifications.</t>
              </li>
            </ul>
            <t>TODO: Should we have an example with auth having parent+child zone at the same time, and DE=0 QTYPE=DELEG query?</t>
          </section>
        </section>
      </section>
      <section anchor="signers">
        <name>DNSSEC Signers</name>
        <t>The DELEG record is authoritative on the parent side of a zone cut and needs to be signed as such.
Existing rules from the DNSSEC specifications apply.</t>
        <t>In summary: for DNSSEC signing, treat the DELEG RR type the same way as the DS RR type.</t>
        <t>DELEG RR type defines a zone cut in similar way as 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 parent side of zone cut 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 this draft introduces a new DNSKEY flag ADT (Authoritative Delegation Types).
In zones which contain a DELEG RRset, this flag MUST be set to 1 in at least one of the DNSKEY records published in the zone.</t>
      </section>
      <section anchor="dnssec-validators">
        <name>DNSSEC Validators</name>
        <t>DELEG awareness introduces additional requirements on validators.</t>
        <section anchor="clarifications-on-nonexistence-proofs">
          <name>Clarifications on Nonexistence Proofs</name>
          <t>This document updates Section 4.1 of <xref target="RFC6840"/> to include "NS or DELEG" types in the type bitmap as indication of a delegation point, and generalizes applicability of ancestor delegation proof to all RR types that are authoritative at the parent (that is, both DS and DELEG).
The text in that section is updated as follows:</t>
          <t>An "ancestor delegation" NSEC RR (or NSEC3 RR) is one with:</t>
          <ul spacing="normal">
            <li>
              <t>the NS and/or DELEG bit set,</t>
            </li>
            <li>
              <t>the Start of Authority (SOA) bit clear, and</t>
            </li>
            <li>
              <t>a signer field that is shorter than the owner name of the NSEC RR,
or the original owner name for the NSEC3 RR.</t>
            </li>
          </ul>
          <t>Ancestor delegation NSEC or NSEC3 RRs MUST NOT be used to assume
nonexistence of any RRs below that zone cut, which include all RRs at
that (original) owner name, other than types authoritative at the parent-side of a
zone cut (DS and DELEG), and all RRs below that owner name regardless of
type.</t>
        </section>
        <section anchor="insecure-delegation-proofs">
          <name>Insecure Delegation Proofs</name>
          <t>This document updates Section 4.4 of <xref target="RFC6840"/> to include securing DELEG records, and explicitly states that Opt-Out is not applicable to the DELEG protocol.
The first paragraph of that section is updated to read:</t>
          <t>Section 5.2 of <xref target="RFC4035"/> specifies that a validator, when proving a
delegation is not secure, needs to check for the absence of the DS
and SOA bits in the NSEC (or NSEC3) type bitmap; this was clarified in Section 4.1 of <xref target="RFC6840"/>.
This document updates <xref target="RFC4035"/> and <xref target="RFC6840"/> to specify that the validator MUST also check for the presence of the NS or the DELEG bit in the matching NSEC (or NSEC3) RR (proving that there is, indeed, a delegation).
Alternately, the validator must make sure that the delegation with an NS record is covered by an NSEC3
RR with the Opt-Out flag set.
Opt-Out is not applicable to DELEG RR type
because DELEG records are authoritative at the parent side of a zone cut in the same
way that DS RR types are.</t>
        </section>
        <section anchor="referral-downgrade-protection">
          <name>Referral downgrade protection</name>
          <t>If the zone is DNSSEC-secure, and if any DNSKEY of the zone has the ADT flag set to 1, a DELEG-aware validator MUST prove the absence of a DELEG RRset in referral responses from this particular zone.</t>
          <t>Without this check, an attacker could strip the DELEG RRset from a referral response and replace it with an unsigned (and potentially malicious) NS RRset.
A referral response with an unsigned NS and signed DS RRsets does not require additional proofs of nonexistence according to non-DELEG DNSSEC specification, and it would have been accepted as a delegation without the DELEG RRset.</t>
        </section>
        <section anchor="chaining">
          <name>Chaining</name>
          <t>A Validating Stub Resolver that is DELEG-aware has to use a Security-Aware Resolver that is DELEG-aware and, if it is behind a forwarder, that forwarder has to be security-aware and DELEG-aware as well.</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.</t>
          <t>Note that, per the rules for the keys defined in Section 6.4 of <xref target="RFC6763"/>, if there is no '=' in a key, then it is a boolean attribute, simply identified as being present, with no value.</t>
        </section>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>TODO: Add more here</t>
      <section anchor="too-much-work">
        <name>Preventing Over-work Attacks</name>
        <t>Resolvers MUST prevent situations where accidental misconfiguration of zones or malicious attacks cause them to perform too much work when resolving.
This document describes two sets of actions that, if not controlled, could lead to over-work attacks.</t>
        <t>Long chains of include-delegi information (<xref target="nameserver-info"/>), and those with circular chains of include-delegi information, can be burdensome.
To prevent this, the resolver SHOULD NOT follow more than 3 include-delegi chains in an RRset when populating SLIST.
Note that include-delegi chains can have CNAME steps in them; in such a case, a CNAME step is counted the same as a DELEGI step when determining when to stop following a chain.</t>
      </section>
      <section anchor="preventing-downgrade-attacks">
        <name>Preventing Downgrade Attacks</name>
        <t>TODO: this section is a bit redundant with "Referral Downgrade Protection" above; harmonize them.</t>
        <t>During the rollout of the DELEG protocol, the operator of an authoritative server can upgrade the server software to be DELEG-aware before changing any DNS zones.
Such deployment should work and provide DELEG-aware clients with correct DELEG-aware answers.
However, the deployment will not be protected from downgrade attacks against the DELEG protocol.</t>
        <t>To protect DNSSEC-secure DNS zones that use DELEG delegations, the delegating zone needs to have at least one DNSKEY with the ADT flag set to 1.
Failure to set this flag in a DNSKEY record in the zone allows an attacker to remove the DELEG RRset from referrals which contain the DS RRset, and replace the original signed DELEG RRset with an arbitrary unsigned NS set.
Doing so would be a downgrade from the strong protection offered by DNSSEC for DELEG.
That is, the DELEG protocol when used with upgraded DNSKEY records gives the same protection to DELEG that the zone's DS RR set has.
Without DELEG, there are no security guarantees for the NS RR set on the parent side of the zone cut.</t>
        <t>Please note that a full DNSKEY rollover is not necessary to achieve the downgrade protection for DELEG.
Any single DNSKEY with the ADT flag set to 1 is sufficient; the zone can introduce an otherwise unused record into the DNSKEY RRset.
This DNSKEY RR can even use an unknown signing algorithm and zero-length key material to minimize size increase of the DNSKEY RRset.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="changes-to-existing-registries">
        <name>Changes to Existing Registries</name>
        <t>IANA is requested to allocate the DELEG RR and the DELEGI RR in the Resource Record (RR) TYPEs registry, with the meaning "enhanced delegation information" and referencing this document.</t>
        <t>IANA is requested to assign a new bit in the DNSKEY RR Flags registry (<xref target="RFC4034"/>) for the ADT bit (N), with the description "Authoritative Delegation Types" and referencing this document.
For compatibility reasons, we request the bit 14 to be used.
This value has been proven to work whereas bit 0 was proven to break in practical deployments (because of bugs).</t>
        <t>IANA is requested to assign a bit from the EDNS Header Flags registry (<xref target="RFC6891"/>), with the abbreviation DE, the description "DELEG enabled", and referencing this document.</t>
        <t>IANA is requested to assign a value from the Extended DNS Error Codes (<xref target="RFC8914"/>), with the Purpose "New Delegation Only" and referencing this document.</t>
        <t>IANA is requested to add the name "deleg" to DNS Resolver Information Keys registry (<xref target="RFC9606"/>),
with the description of "The presence of the key indicates that DELEG protocol is supported."
and referencing this document.</t>
      </section>
      <section anchor="new-registry-for-delegation-information">
        <name>New Registry for Delegation Information</name>
        <t>IANA is requested to create the "DELEG Delegation Information" registry.
This registry defines the namespace for delegation information keys, including string representations and numeric key values.</t>
        <section anchor="procedure">
          <name>Procedure</name>
          <t>A registration MUST include the following fields:</t>
          <t>Number:  Wire-format numeric identifier (range 0-65535)
Name:  Unique presentation name
Meaning:  A short description
Reference:  Location of specification or registration source
Change Controller:  Person or entity, with contact information if appropriate</t>
          <t>To enable code reuse from SVCB parsers, the requirements for registered Name exactly copy requirements set by <xref target="RFC9460"/> section 14.3.1:
The characters in the registered Name field entry MUST be lowercase alphanumeric or "-".
The name MUST NOT start with "key" or "invalid".</t>
          <t>The registration policy for new entries is Expert Review (<xref target="RFC8126"/>).
The designated expert MUST ensure that the reference is stable and publicly available and that it specifies how to convert the delegation information's presentation format to wire format.
The reference MAY be any individual's Internet-Draft or a document from any other source with similar assurances of stability and availability.
An entry MAY specify a reference of the form "Same as (other key name)" if it uses the same presentation and wire formats as an existing key.</t>
          <t>This arrangement supports the development of new parameters while ensuring that zone files can be made interoperable.</t>
        </section>
        <section anchor="initial-contents">
          <name>Initial Contents</name>
          <t>The "DELEG Delegation Information" registry should be populated with the following initial registrations:</t>
          <artwork><![CDATA[
Number:  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 hostnames of name servers
Reference:  {{nameserver-info}} of this document
Change Controller:  IETF

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

The registration for numbers 65280-65534 is reserved for private use.
The registration for number 65535 is reserved.
]]></artwork>
        </section>
      </section>
      <section anchor="temporary-assignments">
        <name>Temporary Assignments</name>
        <t>This section gives the values that can be used for interoperability testing before IANA makes permanent assignments.
The section will be removed when IANA makes permanent assignments.</t>
        <ul spacing="normal">
          <li>
            <t>DELEG RR type code is 61440</t>
          </li>
          <li>
            <t>DELEGI RR type code is 65433</t>
          </li>
          <li>
            <t>DELEG EDNS DE flag bit is 2</t>
          </li>
          <li>
            <t>DNSKEY ADT (Authoritative Delegation Types) flag bit is 14</t>
          </li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC9460">
          <front>
            <title>Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)</title>
            <author fullname="B. Schwartz" initials="B." surname="Schwartz"/>
            <author fullname="M. Bishop" initials="M." surname="Bishop"/>
            <author fullname="E. Nygren" initials="E." surname="Nygren"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document specifies the "SVCB" ("Service Binding") and "HTTPS" DNS resource record (RR) types to facilitate the lookup of information needed to make connections to network services, such as for HTTP origins. SVCB records allow a service to be provided from multiple alternative endpoints, each with associated parameters (such as transport protocol configuration), and are extensible to support future uses (such as keys for encrypting the TLS ClientHello). They also enable aliasing of apex domains, which is not possible with CNAME. The HTTPS RR is a variation of SVCB for use with HTTP (see RFC 9110, "HTTP Semantics"). By providing more information to the client before it attempts to establish a connection, these records offer potential benefits to both performance and privacy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9460"/>
          <seriesInfo name="DOI" value="10.17487/RFC9460"/>
        </reference>
        <reference anchor="RFC6891">
          <front>
            <title>Extension Mechanisms for DNS (EDNS(0))</title>
            <author fullname="J. Damas" initials="J." surname="Damas"/>
            <author fullname="M. Graff" initials="M." surname="Graff"/>
            <author fullname="P. Vixie" initials="P." surname="Vixie"/>
            <date month="April" year="2013"/>
            <abstract>
              <t>The Domain Name System's wire protocol includes a number of fixed fields whose range has been or soon will be exhausted and does not allow requestors to advertise their capabilities to responders. This document describes backward-compatible mechanisms for allowing the protocol to grow.</t>
              <t>This document updates the Extension Mechanisms for DNS (EDNS(0)) specification (and obsoletes RFC 2671) based on feedback from deployment experience in several implementations. It also obsoletes RFC 2673 ("Binary Labels in the Domain Name System") and adds considerations on the use of extended labels in the DNS.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="75"/>
          <seriesInfo name="RFC" value="6891"/>
          <seriesInfo name="DOI" value="10.17487/RFC6891"/>
        </reference>
        <reference anchor="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="RFC4035">
          <front>
            <title>Protocol Modifications for the DNS Security Extensions</title>
            <author fullname="R. Arends" initials="R." surname="Arends"/>
            <author fullname="R. Austein" initials="R." surname="Austein"/>
            <author fullname="M. Larson" initials="M." surname="Larson"/>
            <author fullname="D. Massey" initials="D." surname="Massey"/>
            <author fullname="S. Rose" initials="S." surname="Rose"/>
            <date month="March" year="2005"/>
            <abstract>
              <t>This document is part of a family of documents that describe the DNS Security Extensions (DNSSEC). The DNS Security Extensions are a collection of new resource records and protocol modifications that add data origin authentication and data integrity to the DNS. This document describes the DNSSEC protocol modifications. This document defines the concept of a signed zone, along with the requirements for serving and resolving by using DNSSEC. These techniques allow a security-aware resolver to authenticate both DNS resource records and authoritative DNS error indications.</t>
              <t>This document obsoletes RFC 2535 and incorporates changes from all updates to RFC 2535. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4035"/>
          <seriesInfo name="DOI" value="10.17487/RFC4035"/>
        </reference>
        <reference anchor="RFC6672">
          <front>
            <title>DNAME Redirection in the DNS</title>
            <author fullname="S. Rose" initials="S." surname="Rose"/>
            <author fullname="W. Wijngaards" initials="W." surname="Wijngaards"/>
            <date month="June" year="2012"/>
            <abstract>
              <t>The DNAME record provides redirection for a subtree of the domain name tree in the DNS. That is, all names that end with a particular suffix are redirected to another part of the DNS. This document obsoletes the original specification in RFC 2672 as well as updates the document on representing IPv6 addresses in DNS (RFC 3363). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6672"/>
          <seriesInfo name="DOI" value="10.17487/RFC6672"/>
        </reference>
        <reference anchor="RFC8914">
          <front>
            <title>Extended DNS Errors</title>
            <author fullname="W. Kumari" initials="W." surname="Kumari"/>
            <author fullname="E. Hunt" initials="E." surname="Hunt"/>
            <author fullname="R. Arends" initials="R." surname="Arends"/>
            <author fullname="W. Hardaker" initials="W." surname="Hardaker"/>
            <author fullname="D. Lawrence" initials="D." surname="Lawrence"/>
            <date month="October" year="2020"/>
            <abstract>
              <t>This document defines an extensible method to return additional information about the cause of DNS errors. Though created primarily to extend SERVFAIL to provide additional information about the cause of DNS and DNSSEC failures, the Extended DNS Errors option defined in this document allows all response types to contain extended error information. Extended DNS Error information does not change the processing of RCODEs.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8914"/>
          <seriesInfo name="DOI" value="10.17487/RFC8914"/>
        </reference>
        <reference anchor="RFC6840">
          <front>
            <title>Clarifications and Implementation Notes for DNS Security (DNSSEC)</title>
            <author fullname="S. Weiler" initials="S." role="editor" surname="Weiler"/>
            <author fullname="D. Blacka" initials="D." role="editor" surname="Blacka"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document is a collection of technical clarifications to the DNS Security (DNSSEC) document set. It is meant to serve as a resource to implementors as well as a collection of DNSSEC errata that existed at the time of writing.</t>
              <t>This document updates the core DNSSEC documents (RFC 4033, RFC 4034, and RFC 4035) as well as the NSEC3 specification (RFC 5155). It also defines NSEC3 and SHA-2 (RFC 4509 and RFC 5702) as core parts of the DNSSEC specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6840"/>
          <seriesInfo name="DOI" value="10.17487/RFC6840"/>
        </reference>
        <reference anchor="RFC9606">
          <front>
            <title>DNS Resolver Information</title>
            <author fullname="T. Reddy.K" initials="T." surname="Reddy.K"/>
            <author fullname="M. Boucadair" initials="M." surname="Boucadair"/>
            <date month="June" year="2024"/>
            <abstract>
              <t>This document specifies a method for DNS resolvers to publish information about themselves. DNS clients can use the resolver information to identify the capabilities of DNS resolvers. How DNS clients use such information is beyond the scope of this document.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9606"/>
          <seriesInfo name="DOI" value="10.17487/RFC9606"/>
        </reference>
        <reference anchor="RFC6763">
          <front>
            <title>DNS-Based Service Discovery</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire"/>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document specifies how DNS resource records are named and structured to facilitate service discovery. Given a type of service that a client is looking for, and a domain in which the client is looking for that service, this mechanism allows clients to discover a list of named instances of that desired service, using standard DNS queries. This mechanism is referred to as DNS-based Service Discovery, or DNS-SD.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6763"/>
          <seriesInfo name="DOI" value="10.17487/RFC6763"/>
        </reference>
        <reference anchor="RFC4034">
          <front>
            <title>Resource Records for the DNS Security Extensions</title>
            <author fullname="R. Arends" initials="R." surname="Arends"/>
            <author fullname="R. Austein" initials="R." surname="Austein"/>
            <author fullname="M. Larson" initials="M." surname="Larson"/>
            <author fullname="D. Massey" initials="D." surname="Massey"/>
            <author fullname="S. Rose" initials="S." surname="Rose"/>
            <date month="March" year="2005"/>
            <abstract>
              <t>This document is part of a family of documents that describe the DNS Security Extensions (DNSSEC). The DNS Security Extensions are a collection of resource records and protocol modifications that provide source authentication for the DNS. This document defines the public key (DNSKEY), delegation signer (DS), resource record digital signature (RRSIG), and authenticated denial of existence (NSEC) resource records. The purpose and format of each resource record is described in detail, and an example of each resource record is given.</t>
              <t>This document obsoletes RFC 2535 and incorporates changes from all updates to RFC 2535. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4034"/>
          <seriesInfo name="DOI" value="10.17487/RFC4034"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <referencegroup anchor="BCP219" target="https://www.rfc-editor.org/info/bcp219">
          <reference anchor="RFC9499" target="https://www.rfc-editor.org/info/rfc9499">
            <front>
              <title>DNS Terminology</title>
              <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
              <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
              <date month="March" year="2024"/>
              <abstract>
                <t>The Domain Name System (DNS) is defined in literally dozens of different RFCs. The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has changed in the decades since the DNS was first defined. This document gives current definitions for many of the terms used in the DNS in a single document.</t>
                <t>This document updates RFC 2308 by clarifying the definitions of "forwarder" and "QNAME". It obsoletes RFC 8499 by adding multiple terms and clarifications. Comprehensive lists of changed and new definitions can be found in Appendices A and B.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="219"/>
            <seriesInfo name="RFC" value="9499"/>
            <seriesInfo name="DOI" value="10.17487/RFC9499"/>
          </reference>
        </referencegroup>
        <reference anchor="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="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="February" 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 657?>

<section anchor="examples">
      <name>Examples</name>
      <section anchor="example-root">
        <name>Root zone file</name>
        <t>The following example shows an excerpt from a signed root zone.
It shows the delegation point for "example." and "test."</t>
        <t>The "example." delegation has DELEG and NS records.
The "test." delegation has DELEG but no NS records.</t>
        <t>TODO: Add examples that have server-name and include-delegi being sets of more than one name.</t>
        <t>TODO: Examples that show DELEGI records in ns2.example.net and ns3.example.org.</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    a.example.
example.   NS    b.example.net.
example.   NS    c.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
a.example. A     192.0.2.1
a.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 unnecessarily complicated setup to demonstrate capabilities of DELEG and DELEGI RR types.</t>
        <artwork><![CDATA[
test.      DELEG server-ipv6=3fff::33
test.      DELEG include-delegi=Acfg.example.org.
test.      DELEG include-delegi=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 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.    DELEGI server-ipv6=2001:DB8::6666
Acfg.example.org.    DELEGI server-name=c.example.org.
Acfg.example.org.    DELEGI include-delegi=subcfg.example.org.

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

subcfg.example.org.  DELEGI 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[
b.example.net.       A      198.51.100.1

config2.example.net. DELEGI 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    a.example.
example.   NS    b.example.net.
example.   NS    c.example.org.

;; Additional
a.example. A     192.0.2.1
a.example. AAAA  2001:DB8::1
]]></artwork>
          </section>
          <section anchor="query-for-footest">
            <name>Query for foo.test</name>
            <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="query-for-atest">
            <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    a.example.
example.   NS    b.example.net.
example.   NS    c.example.org.
example.   DS    44444 13 2 ABCDEF01234567...
example.   RRSIG DS 13 1 300 20260101000000 (
                        20250101000000 33333 . SigExampleDS )
;; Additional
a.example. A     192.0.2.1
a.example. AAAA  2001:DB8::1
]]></artwork>
          </section>
          <section anchor="legacynxdomain">
            <name>Query for foo.test</name>
            <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 AA RCODE=NOERROR
;;

;; Question
foo.test.   IN MX

;; Answer
;; (empty)

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

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

;; Question
foo.example.  IN MX

;; Answer
;; (empty)

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

;; Additional
a.example. A     192.0.2.1
a.example. AAAA  2001:DB8::1
]]></artwork>
          </section>
          <section anchor="query-for-footest-2">
            <name>Query for foo.test</name>
            <artwork><![CDATA[
;; Header: QR DO DE AA RCODE=NOERROR
;;

;; Question
foo.test.      IN MX

;; Answer
;; (empty)

;; Authority
test.      DELEG server-ipv6=3fff::33
test.      DELEG include-delegi=Acfg.example.org.
test.      DELEG include-delegi=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>Follow-up example in <xref target="delegi-example"/> explains the ultimate meaning of this response.</t>
          </section>
        </section>
      </section>
      <section anchor="delegi-example">
        <name>DELEGI Interpretation</name>
        <t>In the examples above, the test. DELEG record uses indirection and points to other domain names with DELEGI, A, and AAAA records.
During resolution, a resolver will gradually build set of name servers to contact, as defined in <xref target="slist"/>.</t>
        <t>To visualize end result of this process we represent full set of name servers in form of a 'virtual' DELEG RRset.</t>
        <artwork><![CDATA[
test. DELEG server-ipv4=198.51.100.1
test. DELEG server-ipv4=203.0.113.1
test. DELEG server-ipv6=2001:DB8::6666
test. DELEG server-ipv6=3fff::2
; IPv6 address 3fff::33 was de-duplicated (input RRsets listed it twice)
test. DELEG server-ipv6=3fff::33
]]></artwork>
        <t>Implementations are free to use arbitrary representation for this data as it is not directly exposed via DNS protocol.</t>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This document is heavily based on past work done by Tim April in
<xref target="I-D.tapril-ns2"/> and thus extends the thanks to the people helping on this which are:
John Levine, Erik Nygren, Jon Reed, Ben Kaduk, Mashooq Muhaimen, Jason Moreau, Jerrod Wiesman, Billy Tiemann, Gordon Marx and Brian Wellington.</t>
      <t>Work on DELEG protocol has started at IETF 118 Hackaton.
Hackaton participants: Christian Elmerot, David Blacka, David Lawrence, Edward Lewis, Erik Nygren, George Michaelson, Jan Včelák, Klaus Darilion, Libor Peltan, Manu Bretelle, Peter van Dijk, Petr Špaček, Philip Homburg, Ralf Weber, Roy Arends, Shane Kerr, Shumon Huque, Vandan Adhvaryu, Vladimír Čunát, Andreas Schulze.</t>
      <t>Other people joined the effort after the initial hackaton: Ben Schwartz, Bob Halley, Paul Hoffman, Miek Gieben ...</t>
      <t>RESINFO extension was contributed by Florian Obser.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
DPb6BeHkejXRSIcfG+nwUSNxQ4wHRor6MugxnjP9+DkWdUlx26mtgMtOYAqJ
y3O3k/TBWZTq7gqsnFaX+JInkWisfSCw60LM8w1O1zg07UrVCcuIRQqLxeCC
XSyr1VoJhZRhq5x2yoySXMgHIvRU8JIvFkkzpzyPAwxtCJgssfC7SBFfqZBg
RQkMlEGOrl8wJVEZkpxF9hM+++rZnq93PNjZkchhlN74uFXHCZR6fdRTILMV
McrRqhITtefVBGQneKS3Hi1k/Y8DpC8gifGGV7UZdaiit4/6IfvrI1TivJQ5
64D6G9Sy3MGMVnxWLRmhj1weFQkkKCjQPsloVEkJSWi8vowXL+GOTF4CHTpm
WDT6cm52YdMidWkWvSsdUKStBT2ql+11mhGh4ZIOcOL9EseOu6IFCb8nS5Ri
eK6PORDxKPrKLZXbQ8qiGy+4qbVBT5VnPunEqdm+coZon6uLWshS0y25+3wR
D2dQMMjF0R7Zs2MMsGXBB+izBqkmBElSEwawiLVPD+XThMuy4kKQlgFkbW1D
qE8JxuHTBm7hFwxt1B8w9ZqQHjcsFRHMISVhvh2mz70WGb5hhdC7N6PMo2bD
mIixIvN07l1WzdRGeg2RQNJT0rwjXMXJG/JCRpPUOG4o00ghWViwLNcH4/qs
KObjwWqENa3DNaIR0PAp4BY5lJlWcbPs91f9SFpC0b3gLUK/U4XU0UjGKJBN
hJiV5+hUXowNMyizEP29qitKzzzbHxjzwyzFrjUuGzea2pALP0zlmG+jH0cp
IJYGJvhJj0wz8nvUVJ+ma3Q5U5CjJ1IATxFK1qWcVs7alAryRkXKjFb3Tzjp
TtzsOsFeewrlFCKbh+qnbNtboY9G1tARuOcTZ2gJQqZOWmC1jJe+zo+kzCKV
CCQKPvbHemjV0pTpF1h1MHVUCTTYC+KZIZNRFdTQFqi4FzkH+T5amR9h+xbY
PKqwAzXNp6fvvj8ks3Wb1ktjuvTADaTvyQzpi/04xLFDSxOgXnyF8gDQgFRm
UsWMTFIteEcNdeRppKEcSilJyEfQlBqaSYGhi2zG6U+C/qJhaKv3MStK1nhI
Wqrpo6ldbiIdNT0f8SSampV63lqslg86r8RGLzXX/MkLztrY2ycvOmChx07J
Qrxw2X0ifti9kPg48HrPCMm67UkkhLxKPLqY2YvkfbqoF2aewz7HZIo3UuEa
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
FVCT9+P1PCd0OR+VWED+vwFjq+BpH70AAA==

-->

</rfc>
