<?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-rfc2629 version 1.5.6 -->
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-dnsop-svcb-https-08" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.10.0 -->
  <front>
    <title abbrev="SVCB and HTTPS RRs for DNS">Service binding and parameter specification via the DNS (DNS SVCB and HTTPS RRs)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-svcb-https-08"/>
    <author initials="B." surname="Schwartz" fullname="Ben Schwartz">
      <organization>Google</organization>
      <address>
        <email>bemasc@google.com</email>
      </address>
    </author>
    <author initials="M." surname="Bishop" fullname="Mike Bishop">
      <organization>Akamai Technologies</organization>
      <address>
        <email>mbishop@evequefou.be</email>
      </address>
    </author>
    <author initials="E." surname="Nygren" fullname="Erik Nygren">
      <organization>Akamai Technologies</organization>
      <address>
        <email>erik+ietf@nygren.org</email>
      </address>
    </author>
    <date/>
    <area>General</area>
    <workgroup>DNSOP Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document specifies the "SVCB" 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 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 <xref target="HTTP" format="default"/>.
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>
      <t>TO BE REMOVED: This document is being collaborated on in Github at:
<eref target="https://github.com/MikeBishop/dns-alt-svc">https://github.com/MikeBishop/dns-alt-svc</eref>.
The most recent working version of the document, open issues, etc. should all be
available there.  The authors (gratefully) accept pull requests.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>The SVCB ("Service Binding") and HTTPS RRs provide clients with complete instructions
for access to a service.  This information enables improved
performance and privacy by avoiding transient connections to a sub-optimal
default server, negotiating a preferred protocol, and providing relevant
public keys.</t>
      <t>For example, HTTP clients currently resolve only A and/or AAAA records for
the origin hostname, learning only its IP addresses.  If an HTTP client learns
more about the origin before connecting, it may be able to upgrade "http" URLs
to "https", enable HTTP/3 or Encrypted ClientHello <xref target="ECH" format="default"/>,
or switch to an
operationally preferable endpoint.  It is highly desirable to minimize the
number of round-trips and lookups required to
learn this additional information.</t>
      <t>The SVCB and HTTPS RRs also help when the operator of a service
wishes to delegate operational control to one or more other domains, e.g.
delegating the origin "https://example.com" to a service
operator endpoint at "svc.example.net".  While this case can sometimes
be handled by a CNAME, that does not cover all use-cases.  CNAME is also
inadequate when the service operator needs to provide a bound
collection of consistent configuration parameters through the DNS
(such as network location, protocol, and keying information).</t>
      <t>This document first describes the SVCB RR as a general-purpose resource
record that can be applied directly and efficiently to a wide range
of services (<xref target="svcb" format="default"/>).  It also describes the rules for defining other
SVCB-compatible RR types (<xref target="svcb-compatible" format="default"/>), starting with the HTTPS
RR type (<xref target="https" format="default"/>), which provides improved efficiency and convenience
with HTTP by avoiding the need for an Attrleaf label <xref target="Attrleaf" format="default"/>
(<xref target="httpsnames" format="default"/>).</t>
      <t>The SVCB RR has two modes: 1) "AliasMode", which simply delegates operational
control for a resource; 2) "ServiceMode", which binds together
configuration information for a service endpoint.
ServiceMode provides additional key=value parameters
within each RDATA set.</t>
      <section anchor="goals-of-the-svcb-rr" numbered="true" toc="default">
        <name>Goals of the SVCB RR</name>
        <t>The goal of the SVCB RR is to allow clients to resolve a single
additional DNS RR in a way that:</t>
        <ul spacing="normal">
          <li>Provides alternative endpoints that are authoritative for the service,
along with parameters associated with each of these endpoints.</li>
          <li>Does not assume that all alternative endpoints have the same parameters
or capabilities, or are even
operated by the same entity.  This is important, as DNS does not
provide any way to tie together multiple RRSets for the same name.
For example, if www.example.com is a CNAME alias that switches
between one of three CDNs or hosting environments, successive queries
for that name may return records that correspond to different environments.</li>
          <li>Enables CNAME-like functionality at a zone apex (such as
"example.com") for participating protocols, and generally
enables delegation of operational authority for an origin within the
DNS to an alternate name.</li>
        </ul>
        <t>Additional goals specific to HTTPS RRs and the HTTP use-cases include:</t>
        <ul spacing="normal">
          <li>Connect directly to HTTP/3 (QUIC transport)
alternative endpoints <xref target="HTTP3" format="default"/></li>
          <li>Obtain the Encrypted ClientHello <xref target="ECH" format="default"/> keys associated with an
alternative endpoint</li>
          <li>Support non-default TCP and UDP ports</li>
          <li>Enable SRV-like benefits (e.g. apex delegation, as mentioned above) for HTTP,
where SRV <xref target="SRV" format="default"/> has not been widely adopted</li>
          <li>Provide an HSTS-like indication <xref target="HSTS" format="default"/> signaling that the "https"
scheme should be used instead of "http" for this request (see <xref target="hsts" format="default"/>).</li>
        </ul>
      </section>
      <section anchor="overview-of-the-svcb-rr" numbered="true" toc="default">
        <name>Overview of the SVCB RR</name>
        <t>This subsection briefly describes the SVCB RR in
a non-normative manner.  (As mentioned above, this all
applies equally to the HTTPS RR which shares
the same encoding, format, and high-level semantics.)</t>
        <t>The SVCB RR has two modes: AliasMode, which aliases a name to another name,
and ServiceMode, which provides connection information bound to a service
endpoint domain.  Placing both forms in a single RR type allows clients to
fetch the relevant information with a single query.</t>
        <t>The SVCB RR has two required fields and one optional.  The fields are:</t>
        <ol spacing="normal" type="1"><li>SvcPriority: The priority of this record (relative to others,
with lower values preferred).  A value of 0 indicates AliasMode.
(Described in <xref target="pri" format="default"/>.)</li>
          <li>TargetName: The domain name of either the alias target (for
AliasMode) or the alternative endpoint (for ServiceMode).</li>
          <li>SvcParams (optional): A list of key=value pairs
describing the alternative endpoint at
TargetName (only used in ServiceMode and otherwise ignored).
Described in <xref target="presentation" format="default"/>.</li>
        </ol>
        <t>Cooperating DNS recursive resolvers will perform subsequent record
resolution (for SVCB, A, and AAAA records) and return them in the
Additional Section of the response.  Clients either use responses
included in the additional section returned by the recursive resolver
or perform necessary SVCB, A, and AAAA record resolutions.  DNS
authoritative servers can attach in-bailiwick SVCB, A, AAAA, and CNAME
records in the Additional Section to responses for a SVCB query.</t>
        <t>In ServiceMode, the SvcParams of the SVCB RR
provide an extensible data model for describing alternative
endpoints that are authoritative for the origin, along with
parameters associated with each of these alternative endpoints.</t>
        <t>For HTTP use-cases, the HTTPS RR enables many of the benefits of Alt-Svc
<xref target="AltSvc" format="default"/>
without waiting for a full HTTP connection initiation (multiple roundtrips)
before learning of the preferred alternative,
and without necessarily revealing the user's
intended destination to all entities along the network path.</t>
      </section>
      <section anchor="parameter-for-encrypted-clienthello" numbered="true" toc="default">
        <name>Parameter for Encrypted ClientHello</name>
        <t>This document also defines a parameter for Encrypted ClientHello <xref target="ECH" format="default"/>
keys. See <xref target="ech-param" format="default"/>.</t>
      </section>
      <section anchor="terminology" numbered="true" toc="default">
        <name>Terminology</name>
        <t>Our terminology is based on the common case where the SVCB record is used to
access a resource identified by a URI whose <tt>authority</tt> field contains a DNS
hostname as the <tt>host</tt>.</t>
        <ul spacing="normal">
          <li>The "service" is the information source identified by the <tt>authority</tt> and
<tt>scheme</tt> of the URI, capable of providing access to the resource.  For "https"
URIs, the "service" corresponds to an "origin" <xref target="RFC6454" format="default"/>.</li>
          <li>The "service name" is the <tt>host</tt> portion of the authority.</li>
          <li>The "authority endpoint" is the authority's hostname and a port number implied
by the scheme or specified in the URI.</li>
          <li>An "alternative endpoint" is a hostname, port number, and other associated
instructions to the client on how to reach an instance of service.</li>
        </ul>
        <t>Additional DNS terminology intends to be consistent
with <xref target="DNSTerm" format="default"/>.</t>
        <t>SVCB is a contraction of "service binding".  The SVCB RR, HTTPS RR,
and future RR types that share SVCB's formats and registry are
collectively known as SVCB-compatible RR types.  The contraction "SVCB" is also
used to refer to this system as a whole.</t>
        <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" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="svcb" numbered="true" toc="default">
      <name>The SVCB record type</name>
      <t>The SVCB DNS resource record (RR) type (RR type 64)
is used to locate alternative endpoints for a service.</t>
      <t>The algorithm for resolving SVCB records and associated
address records is specified in <xref target="client-behavior" format="default"/>.</t>
      <t>Other SVCB-compatible resource record types
can also be defined as-needed (see <xref target="svcb-compatible" format="default"/>).  In particular, the
HTTPS RR (RR type 65) provides special handling
for the case of "https" origins as described in <xref target="https" format="default"/>.</t>
      <t>SVCB RRs are extensible by a list of SvcParams, which are pairs consisting of a
SvcParamKey and a SvcParamValue. Each SvcParamKey has a presentation name and a
registered number. Values are in a format specific to the SvcParamKey. Their
definition should specify both their presentation format and wire encoding
(e.g., domain names, binary data, or numeric values). The initial SvcParamKeys
and formats are defined in <xref target="keys" format="default"/>.</t>
      <section anchor="presentation" numbered="true" toc="default">
        <name>Zone file presentation format</name>
        <t>The presentation format of the record is:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
Name TTL IN SVCB SvcPriority TargetName SvcParams
]]></artwork>
        <t>The SVCB record is defined specifically within
the Internet ("IN") Class (<xref target="RFC1035" format="default"/>).</t>
        <t>SvcPriority is a number in the range 0-65535,
TargetName is a <tt>&lt;domain-name&gt;</tt> (<xref section="5.1" sectionFormat="comma" target="RFC1035" format="default"/>),
and the SvcParams are a whitespace-separated list, with each SvcParam
consisting of a SvcParamKey=SvcParamValue pair or a standalone SvcParamKey.
SvcParamKeys are subject to IANA control (<xref target="svcparamregistry" format="default"/>).</t>
        <t>Each SvcParamKey SHALL appear at most once in the SvcParams.
In presentation format, SvcParamKeys are lower-case alphanumeric strings.
Key names should contain 1-63 characters from the ranges "a"-"z", "0"-"9", and "-".
In ABNF <xref target="RFC5234" format="default"/>,</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
alpha-lc      = %x61-7A   ;  a-z
SvcParamKey   = 1*63(alpha-lc / DIGIT / "-")
SvcParam      = SvcParamKey ["=" SvcParamValue]
SvcParamValue = char-string
value         = *OCTET
]]></artwork>
        <t>The SvcParamValue is parsed using the
character-string decoding algorithm (<xref target="decoding" format="default"/>), producing a <tt>value</tt>.
The <tt>value</tt> is then validated and converted into wire-format in a manner
specific to each key.</t>
        <t>When the "=" is omitted, the <tt>value</tt> is interpreted as empty.</t>
        <t>Arbitrary keys can be represented using the unknown-key presentation format
"keyNNNNN" where NNNNN is the numeric
value of the key type without leading zeros.
A SvcParam in this form SHALL be parsed as specified above, and
the decoded <tt>value</tt> SHALL be used as its wire format encoding.</t>
        <t>For some SvcParamKeys, the <tt>value</tt> corresponds to a list or set of
items.  Presentation formats for such keys SHOULD use a comma-separated list
(<xref target="value-list" format="default"/>).</t>
        <t>SvcParams in presentation format MAY appear in any order, but keys MUST NOT be
repeated.</t>
      </section>
      <section anchor="rdata-wire-format" numbered="true" toc="default">
        <name>RDATA wire format</name>
        <t>The RDATA for the SVCB RR consists of:</t>
        <ul spacing="normal">
          <li>a 2 octet field for SvcPriority as an integer in network
byte order.</li>
          <li>the uncompressed, fully-qualified TargetName, represented as
a sequence of length-prefixed labels as in <xref section="3.1" sectionFormat="of" target="RFC1035" format="default"/>.</li>
          <li>the SvcParams, consuming the remainder of the record
(so smaller than 65535 octets and constrained by the RDATA
and DNS message sizes).</li>
        </ul>
        <t>When the list of SvcParams is non-empty, it contains a series of
SvcParamKey=SvcParamValue pairs, represented as:</t>
        <ul spacing="normal">
          <li>a 2 octet field containing the SvcParamKey as an
integer in network byte order.  (See <xref target="iana-keys" format="default"/> for the defined values.)</li>
          <li>a 2 octet field containing the length of the SvcParamValue
as an integer between 0 and 65535 in network byte order.</li>
          <li>an octet string of this length whose contents are the SvcParamValue in a
format determined by the SvcParamKey.</li>
        </ul>
        <t>SvcParamKeys SHALL appear in increasing numeric order.</t>
        <t>Clients MUST consider an RR malformed if:</t>
        <ul spacing="normal">
          <li>the end of the RDATA occurs within a SvcParam.</li>
          <li>SvcParamKeys are not in strictly increasing numeric order.</li>
          <li>the SvcParamValue for an SvcParamKey does not have the expected format.</li>
        </ul>
        <t>Note that the second condition implies that there are no duplicate
SvcParamKeys.</t>
        <t>If any RRs are malformed, the client MUST reject the entire RRSet and
fall back to non-SVCB connection establishment.</t>
      </section>
      <section anchor="svcb-names" numbered="true" toc="default">
        <name>SVCB query names</name>
        <t>When querying the SVCB RR, a service is translated into a QNAME by prepending
the service name with a label indicating the scheme, prefixed with an underscore,
resulting in a domain name like "_examplescheme.api.example.com.".  This
follows the Attrleaf naming pattern <xref target="Attrleaf" format="default"/>, so the scheme MUST be
registered appropriately with IANA (see <xref target="other-standards" format="default"/>).</t>
        <t>Protocol mapping documents MAY specify additional underscore-prefixed labels
to be prepended.  For schemes that specify a port (<xref section="3.2.3" sectionFormat="of" target="URI" format="default"/>), one reasonable possibility is to prepend the indicated port
number if a non-default port number is specified.  We term this behavior
"Port Prefix Naming", and use it in the examples throughout this document.</t>
        <t>See <xref target="httpsnames" format="default"/> for the HTTPS RR behavior.</t>
        <t>When a prior CNAME or SVCB record has aliased to
a SVCB record, each RR shall be returned under its own owner name.</t>
        <t>Note that none of these forms alter the origin or authority for validation
purposes.
For example, TLS clients MUST continue to validate TLS certificates
for the original service name.</t>
        <t>As an example, the owner of example.com could publish this record:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
_8443._foo.api.example.com. 7200 IN SVCB 0 svc4.example.net.
]]></artwork>
        <t>to indicate that "foo://api.example.com:8443" is aliased to "svc4.example.net".
The owner of example.net, in turn, could publish this record:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
svc4.example.net.  7200  IN SVCB 3 svc4.example.net. (
    alpn="bar" port="8004" ech="..." )
]]></artwork>
        <t>to indicate that these services are served on port number 8004,
which supports the protocol "bar" and its associated transport in
addition to the default transport protocol for "foo://".</t>
        <t>(Parentheses are used to ignore a line break in DNS zone file presentation
format (<xref section="5.1" sectionFormat="comma" target="RFC1035" format="default"/>).)</t>
      </section>
      <section anchor="interpretation" numbered="true" toc="default">
        <name>Interpretation</name>
        <section anchor="pri" numbered="true" toc="default">
          <name>SvcPriority</name>
          <t>When SvcPriority is 0 the SVCB record is in AliasMode (<xref target="alias-mode" format="default"/>).
Otherwise, it is in ServiceMode (<xref target="service-mode" format="default"/>).</t>
          <t>Within a SVCB RRSet,
all RRs SHOULD have the same Mode.
If an RRSet contains a record in AliasMode, the recipient MUST ignore
any ServiceMode records in the set.</t>
          <t>RRSets are explicitly unordered collections, so the
SvcPriority field is used to impose an ordering on SVCB RRs.
SVCB RRs with a smaller SvcPriority value SHOULD be given
preference over RRs with a larger SvcPriority value.</t>
          <t>When receiving an RRSet containing multiple SVCB records with the
same SvcPriority value, clients SHOULD apply a random shuffle within a
priority level to the records before using them, to ensure uniform
load-balancing.</t>
        </section>
        <section anchor="alias-mode" numbered="true" toc="default">
          <name>AliasMode</name>
          <t>In AliasMode, the SVCB record aliases a service to a
TargetName.  SVCB RRSets SHOULD only have a single resource
record in AliasMode.  If multiple are present, clients or recursive
resolvers SHOULD pick one at random.</t>
          <t>The primary purpose of AliasMode is to allow aliasing at the zone
apex, where CNAME is not allowed.  In AliasMode, the TargetName will
be the name of a domain that resolves to SVCB,
AAAA, and/or A records.  (See <xref target="svcb-compatible" format="default"/> for aliasing of SVCB-compatible RR types.)
 The TargetName SHOULD NOT be equal
to the owner name, as this would result in a loop.</t>
          <t>In AliasMode, records SHOULD NOT include any SvcParams, and recipients MUST
ignore any SvcParams that are present.</t>
          <t>For example, the operator of foo://example.com:8080 could
point requests to a service operating at foosvc.example.net
by publishing:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
_8080._foo.example.com. 3600 IN SVCB 0 foosvc.example.net.
]]></artwork>
          <t>Using AliasMode maintains a separation of concerns: the owner of
foosvc.example.net can add or remove ServiceMode SVCB records without
requiring a corresponding change to example.com.  Note that if
foosvc.example.net promises to always publish a SVCB record, this AliasMode
record can be replaced by a CNAME, which would likely improve performance.</t>
          <t>AliasMode is especially useful for SVCB-compatible RR types that do not
require an underscore prefix, such as the HTTPS RR type.  For example,
the operator of https://example.com could point requests to a server
at svc.example.net by publishing this record at the zone apex:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com. 3600 IN HTTPS 0 svc.example.net.
]]></artwork>
          <t>Note that the SVCB record's owner name MAY be the canonical name
of a CNAME record, and the TargetName MAY be the owner of a CNAME
record. Clients and recursive resolvers MUST follow CNAMEs as normal.</t>
          <t>To avoid unbounded alias chains, clients and recursive resolvers MUST impose a
limit on the total number of SVCB aliases they will follow for each resolution
request.  This limit MUST NOT be zero, i.e. implementations MUST be able to
follow at least one AliasMode record.  The exact value of this limit
is left to implementations.</t>
          <t>For compatibility and performance, zone owners SHOULD NOT configure their zones
to require following multiple AliasMode records.</t>
          <t>As legacy clients will not know to use this record, service
operators will likely need to retain fallback AAAA and A records
alongside this SVCB record, although in a common case
the target of the SVCB record might offer better performance, and
therefore would be preferable for clients implementing this specification
to use.</t>
          <t>AliasMode records only apply to queries for the specific RR type.
For example, a SVCB record cannot alias to an HTTPS record,
nor vice-versa.</t>
        </section>
        <section anchor="service-mode" numbered="true" toc="default">
          <name>ServiceMode</name>
          <t>In ServiceMode, the TargetName and SvcParams within each resource record
associate an alternative endpoint for the service with its connection
parameters.</t>
          <t>Each protocol scheme that uses SVCB MUST define a protocol mapping that
explains how SvcParams are applied for connections of that scheme.
Unless specified otherwise by the
protocol mapping, clients MUST ignore any SvcParam that they do
not recognize.</t>
          <t>Some SvcParams impose requirements on other SvcParams in the RR.  A
ServiceMode RR is called "self-consistent" if its SvcParams all comply with
each others' requirements.  Zone-file implementations SHOULD enforce
self-consistency.  Clients MUST reject any RR whose recognized SvcParams
are not self-consistent, and MAY reject the entire RRSet.</t>
        </section>
      </section>
      <section anchor="dot" numbered="true" toc="default">
        <name>Special handling of "." in TargetName</name>
        <t>If TargetName has the value "." (represented in the wire format as a
zero-length label), special rules apply.</t>
        <section anchor="aliasdot" numbered="true" toc="default">
          <name>AliasMode</name>
          <t>For AliasMode SVCB RRs, a TargetName of "." indicates that the service
is not available or does not exist.  This indication is advisory:
clients encountering this indication MAY ignore it and attempt to connect
without the use of SVCB.</t>
        </section>
        <section anchor="servicemode" numbered="true" toc="default">
          <name>ServiceMode</name>
          <t>For ServiceMode SVCB RRs, if TargetName has the value ".", then the
owner name of this record MUST be used as the effective TargetName.</t>
          <t>For example, in the following example "svc2.example.net"
is the effective TargetName:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.      7200  IN HTTPS 0 svc.example.net.
svc.example.net.  7200  IN CNAME svc2.example.net.
svc2.example.net. 7200  IN HTTPS 1 . port=8002 ech="..."
svc2.example.net. 300   IN A     192.0.2.2
svc2.example.net. 300   IN AAAA  2001:db8::2
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="client-behavior" numbered="true" toc="default">
      <name>Client behavior</name>
      <t>"SVCB resolution" is the process of enumerating the priority-ordered endpoints
for a service, as performed by the client.  SVCB resolution is implemented as follows:</t>
      <ol spacing="normal" type="1"><li>Let $QNAME be the service name plus appropriate prefixes for the
scheme (see <xref target="svcb-names" format="default"/>).</li>
        <li>Issue a SVCB query for $QNAME.</li>
        <li>If an AliasMode SVCB record is returned for $QNAME (after following CNAMEs
as normal), set $QNAME to its TargetName (without
additional prefixes) and loop back to step 2,
subject to chain length limits and loop detection heuristics (see
<xref target="client-failures" format="default"/>).</li>
        <li>If one or more "compatible" (<xref target="mandatory" format="default"/>) ServiceMode records are returned,
these represent the alternative endpoints.</li>
        <li>Otherwise, SVCB resolution has failed, and the list of known endpoints is
empty.</li>
      </ol>
      <t>This procedure does not rely on any recursive or authoritative DNS server to
comply with this specification or have any awareness of SVCB.</t>
      <t>A client is called "SVCB-optional" if it can connect without the use of
ServiceMode records, and "SVCB-reliant" otherwise.  Clients for pre-existing
protocols (e.g. HTTP) SHALL implement SVCB-optional behavior (except as
noted in <xref target="client-failures" format="default"/> and <xref target="ech-client-behavior" format="default"/>).</t>
      <t>SVCB-optional clients SHOULD issue in parallel any other DNS queries that might
be needed for connection establishment if the SVCB record is absent, in order to minimize delay
in that case and enable the optimizations discussed in <xref target="optimizations" format="default"/>.</t>
      <t>Once SVCB resolution has concluded, whether successful or not,
SVCB-optional clients SHALL append to the priority list an
endpoint consisting of the final value of $QNAME, the authority
endpoint's port number, and no SvcParams.  (This endpoint will be
attempted before falling back to non-SVCB connection modes.  This ensures that
SVCB-optional clients will make use of an AliasMode record whose TargetName has
A and/or AAAA records but no SVCB records.)</t>
      <t>The client proceeds with connection establishment using the resolved list of
endpoints.  Clients SHOULD try higher-priority alternatives first, with
fallback to lower-priority alternatives.  Clients resolve AAAA and/or A
records for the selected TargetName, and MAY choose between them using an
approach such as Happy Eyeballs <xref target="HappyEyeballsV2" format="default"/>.</t>
      <t>If the client is SVCB-optional, and connecting using this list of endpoints has
failed, the client SHOULD attempt non-SVCB connection modes.</t>
      <t>Some important optimizations are discussed in <xref target="optimizations" format="default"/>
to avoid additional latency in comparison to ordinary AAAA/A lookups.</t>
      <section anchor="client-failures" numbered="true" toc="default">
        <name>Handling resolution failures</name>
        <t>If DNS responses are cryptographically protected (e.g. using DNSSEC or
TLS <xref target="DoT" format="default"/><xref target="DoH" format="default"/>), and SVCB resolution fails
due to an authentication error, SERVFAIL response, transport error, or
timeout, the client SHOULD abandon the connection attempt even if the client
is SVCB-optional.  Otherwise, an active attacker
could mount a downgrade attack by denying the user access to the SvcParams.</t>
        <t>A SERVFAIL error can occur if the domain is DNSSEC-signed, the recursive
resolver is DNSSEC-validating, and the attacker is between the recursive
resolver and the authoritative DNS server.  A transport error or timeout can
occur if an active attacker between the client and the recursive resolver is
selectively dropping SVCB queries or responses, based on their size or
other observable patterns.</t>
        <t>If the client enforces DNSSEC validation on A/AAAA responses, it SHOULD
apply the same validation policy to SVCB.</t>
        <t>If the client is unable to complete SVCB resolution due to its chain length
limit, the client SHOULD fall back to the authority endpoint, as if the
origin's SVCB record did not exist.</t>
      </section>
      <section anchor="clients-using-a-proxy" numbered="true" toc="default">
        <name>Clients using a Proxy</name>
        <t>Clients using a domain-oriented transport proxy like HTTP CONNECT
(<xref section="4.3.6" sectionFormat="comma" target="RFC7231" format="default"/>) or SOCKS5 (<xref target="RFC1928" format="default"/>) have the option to
use named destinations, in which case the client does not perform
any A or AAAA queries for destination domains.  If the client is using named
destinations with a proxy that does not provide SVCB query capability
(e.g. through an affiliated DNS resolver), the client would have to perform
SVCB resolution separately, likely disclosing the destinations to additional parties.
Clients that support such proxies SHOULD arrange for a separate SVCB resolution
procedure with appropriate privacy properties, or disable SVCB resolution entirely if
SVCB-optional.</t>
        <t>If the client does use SVCB and named destinations, the client SHOULD follow
the standard SVCB resolution process, selecting the smallest-SvcPriority
option that is compatible with the client and the proxy.  When connecting
using a SVCB record, clients MUST provide the final TargetName and port to the
proxy, which will perform any required A and AAAA lookups.</t>
        <t>This arrangement has several benefits:</t>
        <ul spacing="normal">
          <li>
            <t>Compared to disabling SVCB:
            </t>
            <ul spacing="normal">
              <li>It allows the client to use the SvcParams, if present, which are
only usable with a specific TargetName.  The SvcParams may
include information that enhances performance (e.g. alpn) and privacy
(e.g. ech).</li>
              <li>It allows the service to delegate the apex domain.</li>
            </ul>
          </li>
          <li>
            <t>Compared to providing the proxy with an IP address:
            </t>
            <ul spacing="normal">
              <li>It allows the proxy to select between IPv4 and IPv6 addresses for the
server according to its configuration.</li>
              <li>It ensures that the proxy receives addresses based on its network
geolocation, not the client's.</li>
              <li>It enables faster fallback for TCP destinations with multiple addresses
of the same family.</li>
            </ul>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="server-behavior" numbered="true" toc="default">
      <name>DNS Server Behavior</name>
      <section anchor="authoritative-behavior" numbered="true" toc="default">
        <name>Authoritative servers</name>
        <t>When replying to a SVCB query, authoritative DNS servers SHOULD return
A, AAAA, and SVCB records in the Additional Section for any TargetNames
that are in the zone.  If the zone is signed, the server SHOULD also
include positive or negative DNSSEC responses for these records in the Additional
section.</t>
        <t>See <xref target="ecs" format="default"/> for exceptions.</t>
      </section>
      <section anchor="recursive-behavior" numbered="true" toc="default">
        <name>Recursive resolvers</name>
        <t>Whether or not the recursive resolver is aware of SVCB, the normal response
construction process (i.e. unknown RR type resolution under <xref target="RFC3597" format="default"/>)
generates the Answer section of the response.
Recursive resolvers that are aware of SVCB SHOULD help the client to
execute the procedure in <xref target="client-behavior" format="default"/> with minimum overall
latency by incorporating additional useful information into the
Additional section of the response as follows:</t>
        <ol spacing="normal" type="1"><li>Incorporate the results of SVCB resolution.  If the chain length limit has
been reached, terminate.</li>
          <li>
            <t>If any of the resolved SVCB records are in AliasMode, choose one of them
at random, and resolve SVCB, A, and AAAA records for its
TargetName.  </t>
            <ul spacing="normal">
              <li>If any SVCB records are resolved, go to step 1.</li>
              <li>Otherwise, incorporate the results of A and AAAA resolution, and
terminate.</li>
            </ul>
          </li>
          <li>All the resolved SVCB records are in ServiceMode.  Resolve A and AAAA
queries for each TargetName (or for the owner name if TargetName
is "."), incorporate all the results, and terminate.</li>
        </ol>
        <t>In this procedure, "resolve" means the resolver's ordinary recursive
resolution procedure, as if processing a query for that RRSet.
This includes following any aliases that the resolver would ordinarily
follow (e.g. CNAME, DNAME <xref target="DNAME" format="default"/>).  Errors or anomalies in
obtaining additional records MAY cause this process to terminate, but
MUST NOT themselves cause the resolver to send a failure response.</t>
        <t>See <xref target="alias-mode" format="default"/> for additional safeguards for recursive resolvers
to implement to mitigate loops.</t>
        <t>See <xref target="incomplete-response" format="default"/> for possible optimizations of this procedure.</t>
      </section>
      <section anchor="general-requirements" numbered="true" toc="default">
        <name>General requirements</name>
        <t>Recursive resolvers MUST be able to convey SVCB records with unrecognized
SvcParamKeys, and MAY treat the entire SvcParams portion of the record as
opaque, even if the contents are invalid.  Alternatively, recursive
resolvers MAY report an error such as SERVFAIL to avoid returning a
SvcParamValue that is invalid according to the SvcParam's specification.
For complex value types whose interpretation might differ
between implementations or have additional future
allowed values added (e.g. URIs or "alpn"), resolvers
SHOULD limit validation to specified constraints.</t>
        <t>When responding to a query that includes the DNSSEC OK bit (<xref target="RFC3225" format="default"/>),
DNSSEC-capable recursive and authoritative DNS servers MUST accompany
each RRSet in the Additional section with the same DNSSEC-related records
that they would send when providing that RRSet as an Answer (e.g. RRSIG, NSEC,
NSEC3).</t>
        <t>According to <xref section="5.4.1" sectionFormat="of" target="RFC2181" format="default"/>, "Unauthenticated RRs received
and cached from ... the additional data section ... should not be cached in
such a way that they would ever be returned as answers to a received query.
They may be returned as additional information where appropriate.".
Recursive resolvers therefore MAY cache records from the Additional section
for use in populating Additional section responses, and MAY cache them
for general use if they are authenticated by DNSSEC.</t>
      </section>
      <section anchor="ecs" numbered="true" toc="default">
        <name>EDNS Client Subnet (ECS)</name>
        <t>The EDNS Client Subnet option (ECS, <xref target="RFC7871" format="default"/>) allows recursive
resolvers to request IP addresses that are suitable for a particular client
IP range.  SVCB records may contain IP addresses (in ipv*hint SvcParams),
or direct users to a subnet-specific TargetName, so recursive resolvers
SHOULD include the same ECS option in SVCB queries as in A/AAAA queries.</t>
        <t>According to <xref section="7.3.1" sectionFormat="of" target="RFC7871" format="default"/>, "Any records from [the
Additional section] MUST NOT be tied to a network".  Accordingly,
when processing a response whose QTYPE is SVCB-compatible,
resolvers SHOULD treat any records in the Additional section as having
SOURCE PREFIX-LENGTH zero and SCOPE PREFIX-LENGTH as specified
in the ECS option.  Authoritative servers MUST omit such records if they are
not suitable for use by any stub resolvers that set SOURCE PREFIX-LENGTH to
zero.  This will cause the resolver to perform a followup query that can
receive properly tailored ECS.  (This is similar to the usage of CNAME with
ECS discussed in <xref section="7.2.1" sectionFormat="comma" target="RFC7871" format="default"/>.)</t>
        <t>Authoritative servers that omit Additional records can avoid the added
latency of a followup query by following the advice in <xref target="zone-performance" format="default"/>.</t>
      </section>
    </section>
    <section anchor="optimizations" numbered="true" toc="default">
      <name>Performance optimizations</name>
      <t>For optimal performance (i.e. minimum connection setup time), clients
SHOULD implement a client-side DNS cache.
Responses in the Additional section of a SVCB response SHOULD be placed
in cache before performing any followup queries.
With this behavior, and conforming DNS servers,
using SVCB does not add network latency to connection setup.</t>
      <t>To improve performance when using a non-conforming recursive resolver, clients
SHOULD issue speculative A and/or AAAA queries in parallel with each SVCB
query, based on a predicted value of TargetName (see <xref target="zone-performance" format="default"/>).</t>
      <t>After a ServiceMode RRSet is received, clients MAY try more than one option
in parallel, and MAY prefetch A and AAAA records for multiple TargetNames.</t>
      <section anchor="optimistic-pre-connection-and-connection-reuse" numbered="true" toc="default">
        <name>Optimistic pre-connection and connection reuse</name>
        <t>If an address response arrives before the corresponding SVCB response, the
client MAY initiate a connection as if the SVCB query returned NODATA, but
MUST NOT transmit any information that could be altered by the SVCB response
until it arrives.  For example, a TLS ClientHello can be altered by the
"ech" value of a SVCB response (<xref target="svcparamkeys-ech" format="default"/>).  Clients
implementing this optimization SHOULD wait for 50 milliseconds before
starting optimistic pre-connection, as per the guidance in
<xref target="HappyEyeballsV2" format="default"/>.</t>
        <t>A SVCB record is consistent with a connection
if the client would attempt an equivalent connection when making use of
that record. If a SVCB record is consistent with an active or in-progress
connection C, the client MAY prefer that record and use C as its connection.
For example, suppose the client receives this SVCB RRSet for a protocol
that uses TLS over TCP:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
_1234._bar.example.com. 300 IN SVCB 1 svc1.example.net. (
    ech="111..." ipv6hint=2001:db8::1 port=1234 )
                               SVCB 2 svc2.example.net. (
    ech="222..." ipv6hint=2001:db8::2 port=1234 )
]]></artwork>
        <t>If the client has an in-progress TCP connection to <tt>[2001:db8::2]:1234</tt>,
it MAY proceed with TLS on that connection using <tt>ech="222..."</tt>, even
though the other record in the RRSet has higher priority.</t>
        <t>If none of the SVCB records are consistent
with any active or in-progress connection,
clients proceed with connection establishment as described in
<xref target="client-behavior" format="default"/>.</t>
      </section>
      <section anchor="incomplete-response" numbered="true" toc="default">
        <name>Generating and using incomplete responses</name>
        <t>When following the procedure in <xref target="recursive-behavior" format="default"/>, recursive
resolvers MAY terminate the procedure early and produce a reply that omits
some of the associated RRSets.  This is REQUIRED when the chain length limit
is reached (<xref target="recursive-behavior" format="default"/> step 1), but might also be appropriate
when the maximum response size is reached, or when responding before fully
chasing dependencies would improve performance.  When omitting certain
RRSets, recursive resolvers SHOULD prioritize information for
smaller-SvcPriority records.</t>
        <t>As discussed in <xref target="client-behavior" format="default"/>, clients MUST be able to fetch additional
information that is required to use a SVCB record, if it is not included
in the initial response.  As a performance optimization, if some of the SVCB
records in the response can be used without requiring additional DNS queries,
the client MAY prefer those records, regardless of their priorities.</t>
      </section>
    </section>
    <section anchor="svcb-compatible" numbered="true" toc="default">
      <name>SVCB-compatible</name>
      <t>An RR type is called "SVCB-compatible" if it permits an implementation that is
identical to SVCB in its:</t>
      <ul spacing="normal">
        <li>RDATA presentation format</li>
        <li>RDATA wire format</li>
        <li>IANA registry used for SvcParamKeys</li>
        <li>Authoritative server Additional Section processing</li>
        <li>Recursive resolution process</li>
        <li>Relevant Class (i.e. Internet ("IN") <xref target="RFC1035" format="default"/>)</li>
      </ul>
      <t>This allows authoritative and recursive DNS servers to apply identical
processing to all SVCB-compatible RR types.</t>
      <t>All other behaviors described as applying to the SVCB RR also apply
to all SVCB-compatible RR types unless explicitly stated otherwise.
When following an AliasMode record (<xref target="alias-mode" format="default"/>) of RR type $T , the
followup query to the TargetName MUST also be for type $T.</t>
      <t>This document defines one SVCB-compatible RR type (other than SVCB itself):
the HTTPS RR type (<xref target="https" format="default"/>), which avoids Attrleaf label prefixes <xref target="Attrleaf" format="default"/> in order to improve
compatibility with wildcards and CNAMEs, which are widely used with HTTP.</t>
      <t>Standards authors should consider carefully whether to use SVCB or define a
new SVCB-compatible RR type, as this choice cannot easily be reversed after
deployment.</t>
    </section>
    <section anchor="keys" numbered="true" toc="default">
      <name>Initial SvcParamKeys</name>
      <t>A few initial SvcParamKeys are defined here.  These keys are useful for the
"https" scheme, and most are applicable to other schemes as well.</t>
      <t>Each new protocol
mapping document MUST specify which keys are applicable and safe to use.
Protocol mappings MAY alter the interpretation of SvcParamKeys but MUST NOT
alter their presentation or wire formats.</t>
      <section anchor="alpn-key" numbered="true" toc="default">
        <name>"alpn" and "no-default-alpn"</name>
        <t>The "alpn" and "no-default-alpn" SvcParamKeys together
indicate the set of Application Layer Protocol Negotiation (ALPN)
protocol identifiers <xref target="ALPN" format="default"/>
and associated transport protocols supported by this service endpoint (the
"SVCB ALPN set").</t>
        <t>As with Alt-Svc <xref target="AltSvc" format="default"/>, each ALPN protocol identifier is used to
identify the application protocol and associated suite
of protocols supported by the endpoint (the "protocol suite").
The presence of an ALPN protocol identifier in the SVCB ALPN set indicates that this
service endpoint, described by TargetName and the other parameters (e.g.
"port") offers service with the protocol suite associated with this ALPN identifier.</t>
        <t>Clients filter the set of ALPN identifiers to match the protocol suites they
support, and this informs the underlying transport protocol used (such
as QUIC-over-UDP or TLS-over-TCP).  ALPN protocol identifiers that do not uniquely
identify a protocol suite (e.g. an Identification Sequence that
can be used with both TLS and DTLS) are not compatible with this
SvcParamKey and MUST NOT be included in the SVCB ALPN set.</t>
        <section anchor="representation" numbered="true" toc="default">
          <name>Representation</name>
          <t>ALPNs are identified by their registered "Identification Sequence"
(<tt>alpn-id</tt>), which is a sequence of 1-255 octets.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
alpn-id = 1*255OCTET
]]></artwork>
          <t>For "alpn", the presentation <tt>value</tt> SHALL be
a comma-separated list (<xref target="value-list" format="default"/>)
of one or more <tt>alpn-id</tt>s.  Zone file implementations MAY disallow the
"," and "\" characters instead of implementing the <tt>value-list</tt> escaping
procedure, relying on the opaque key format (e.g. <tt>key1=\002h2</tt>) in the
event that these characters are needed.</t>
          <t>The wire format value for "alpn" consists of at least one
<tt>alpn-id</tt> prefixed by its length as a single octet, and these length-value
pairs are concatenated to form the SvcParamValue.  These pairs MUST exactly
fill the SvcParamValue; otherwise, the SvcParamValue is malformed.</t>
          <t>For "no-default-alpn", the presentation and wire format values MUST be
empty.  When "no-default-alpn" is specified in an RR,
"alpn" must also be specified in order for the RR
to be "self-consistent" (<xref target="service-mode" format="default"/>).</t>
          <t>Each scheme that uses this SvcParamKey defines a "default set" of ALPNs
that are supported by nearly all clients and servers, which MAY
be empty.  To determine the SVCB ALPN set, the client starts with the list of
<tt>alpn-id</tt>s from the "alpn" SvcParamKey, and adds the default set unless the
"no-default-alpn" SvcParamKey is present.</t>
        </section>
        <section anchor="use" numbered="true" toc="default">
          <name>Use</name>
          <t>To establish a connection to the endpoint, clients MUST</t>
          <ol spacing="normal" type="1"><li>Let SVCB-ALPN-Intersection be the set of protocols in the SVCB ALPN set
that the client supports.</li>
            <li>Let Intersection-Transports be the set of transports (e.g. TLS, DTLS, QUIC)
implied by the protocols in SVCB-ALPN-Intersection.</li>
            <li>For each transport in Intersection-Transports, construct a ProtocolNameList
containing the Identification Sequences of all the client's supported ALPN
protocols for that transport, without regard to the SVCB ALPN set.</li>
          </ol>
          <t>For example, if the SVCB ALPN set is ["http/1.1", "h3"], and the client
supports HTTP/1.1, HTTP/2, and HTTP/3, the client could attempt to connect using
TLS over TCP with a ProtocolNameList of ["http/1.1", "h2"], and could also
attempt a connection using QUIC, with a ProtocolNameList of ["h3"].</t>
          <t>Once the client has constructed a ClientHello, protocol negotiation in that
handshake proceeds as specified in <xref target="ALPN" format="default"/>, without regard to the SVCB ALPN
set.</t>
          <t>Clients MAY implement a fallback procedure, using a less-preferred transport
if more-preferred transports fail to connect.  This fallback behavior is
vulnerable to manipulation by a network attacker who blocks the more-preferred
transports, but it may be necessary for compatibility with existing networks.</t>
          <t>With this procedure in place, an attacker who can modify DNS and network
traffic can prevent a successful transport connection, but cannot otherwise
interfere with ALPN protocol selection.  This procedure also ensures that
each ProtocolNameList includes at least one protocol from the SVCB ALPN set.</t>
          <t>Clients SHOULD NOT attempt connection to a service endpoint whose SVCB
ALPN set does not contain any supported protocols.  To ensure
consistency of behavior, clients MAY reject the entire SVCB RRSet and fall
back to basic connection establishment if all of the RRs indicate
"no-default-alpn", even if connection could have succeeded using a
non-default alpn.</t>
          <t>For compatibility with clients that require default transports,
zone operators SHOULD ensure that at least one RR in each RRSet supports the
default transports.</t>
        </section>
      </section>
      <section anchor="svcparamkeys-port" numbered="true" toc="default">
        <name>"port"</name>
        <t>The "port" SvcParamKey defines the TCP or UDP port
that should be used to reach this alternative endpoint.
If this key is not present, clients SHALL use the authority endpoint's port
number.</t>
        <t>The presentation <tt>value</tt> of the SvcParamValue is a single decimal integer
between 0 and 65535 in ASCII.  Any other <tt>value</tt> (e.g. an empty value)
is a syntax error.  To enable simpler parsing, this SvcParam MUST NOT contain
escape sequences.</t>
        <t>The wire format of the SvcParamValue
is the corresponding 2 octet numeric value in network byte order.</t>
        <t>If a port-restricting firewall is in place between some client and the service
endpoint, changing the port number might cause that client to lose access to
the service, so operators should exercise caution when using this SvcParamKey
to specify a non-default port.</t>
      </section>
      <section anchor="svcparamkeys-ech" numbered="true" toc="default">
        <name>"ech"</name>
        <t>The SvcParamKey to enable Encrypted ClientHello (ECH) is "ech".  Its
value is defined in <xref target="ech-param" format="default"/>.  It is applicable to most TLS-based
protocols.</t>
        <t>When publishing a record containing an "ech" parameter, the publisher
MUST ensure that all IP addresses of TargetName correspond to servers
that have access to the corresponding private key or are authoritative
for the public name. (See <xref section="7.2.2" sectionFormat="of" target="ECH" format="default"/> for more
details about the public name.) This yields an anonymity set of cardinality
equal to the number of ECH-enabled server domains supported by a given
client-facing server. Thus, even with an encrypted ClientHello, an attacker
who can enumerate the set of ECH-enabled domains supported by a
client-facing server can guess the
correct SNI with probability at least 1/K, where K is the size of this
ECH-enabled server anonymity set. This probability may be increased via
traffic analysis or other mechanisms.</t>
      </section>
      <section anchor="svcparamkeys-iphints" numbered="true" toc="default">
        <name>"ipv4hint" and "ipv6hint"</name>
        <t>The "ipv4hint" and "ipv6hint" keys convey IP addresses that clients MAY use to
reach the service.  If A and AAAA records for TargetName are locally
available, the client SHOULD ignore these hints.  Otherwise, clients
SHOULD perform A and/or AAAA queries for TargetName as in
<xref target="client-behavior" format="default"/>, and clients SHOULD use the IP address in those
responses for future connections. Clients MAY opt to terminate any
connections using the addresses in hints and instead switch to the
addresses in response to the TargetName query. Failure to use A and/or
AAAA response addresses could negatively impact load balancing or other
geo-aware features and thereby degrade client performance.</t>
        <t>The presentation <tt>value</tt> SHALL be a comma-separated list (<xref target="value-list" format="default"/>)
of one or more IP addresses of the appropriate
family in standard textual format <xref target="RFC5952" format="default"/>.  To enable simpler parsing,
this SvcParamValue MUST NOT contain escape sequences.</t>
        <t>The wire format for each parameter is a sequence of IP addresses in network
byte order.  Like an A or AAAA RRSet, the list of addresses represents an
unordered collection, and clients SHOULD pick addresses to use in a random order.
An empty list of addresses is invalid.</t>
        <t>When selecting between IPv4 and IPv6 addresses to use, clients may use an
approach such as Happy Eyeballs <xref target="HappyEyeballsV2" format="default"/>.
When only "ipv4hint" is present, IPv6-only clients may synthesize
IPv6 addresses as specified in <xref target="RFC7050" format="default"/> or ignore the "ipv4hint" key and
wait for AAAA resolution (<xref target="client-behavior" format="default"/>).  Recursive resolvers MUST NOT
perform DNS64 (<xref target="RFC6147" format="default"/>) on parameters within a SVCB record.
For best performance, server operators SHOULD include an "ipv6hint" parameter
whenever they include an "ipv4hint" parameter.</t>
        <t>These parameters are intended to minimize additional connection latency
when a recursive resolver is not compliant with the requirements in
<xref target="server-behavior" format="default"/>, and SHOULD NOT be included if most clients are using
compliant recursive resolvers.  When TargetName is the origin hostname
or the owner name (which can be written as "."), server operators
SHOULD NOT include these hints, because they are unlikely to convey any
performance benefit.</t>
      </section>
      <section anchor="svcparamkey-mandatory" numbered="true" toc="default">
        <name>"mandatory"</name>
        <t>See <xref target="mandatory" format="default"/>.</t>
      </section>
    </section>
    <section anchor="mandatory" numbered="true" toc="default">
      <name>ServiceMode RR compatibility and mandatory keys</name>
      <t>In a ServiceMode RR, a SvcParamKey is considered "mandatory" if the RR will not
function correctly for clients that ignore this SvcParamKey.  Each SVCB
protocol mapping SHOULD specify a set of keys that are "automatically
mandatory", i.e. mandatory if they are present in an RR.  The SvcParamKey
"mandatory" is used to indicate any mandatory keys for this RR, in addition to
any automatically mandatory keys that are present.</t>
      <t>A ServiceMode RR is considered "compatible" with a client if the client
recognizes all the mandatory keys, and their values indicate that successful
connection establishment is possible.  If the SVCB RRSet contains
no compatible RRs, the client will generally act as if the RRSet is empty.</t>
      <t>The presentation <tt>value</tt> SHALL be a comma-separated list
(<xref target="value-list" format="default"/>) of one or more valid
SvcParamKeys, either by their registered name or in the unknown-key format
(<xref target="presentation" format="default"/>).  Keys MAY appear in any order, but MUST NOT appear more
than once.  For self-consistency (<xref target="service-mode" format="default"/>), listed keys MUST also
appear in the SvcParams.</t>
      <t>To enable simpler parsing, this
SvcParamValue MUST NOT contain escape sequences.</t>
      <t>For example, the following is a valid list of SvcParams:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
ech=... key65333=ex1 key65444=ex2 mandatory=key65444,ech
]]></artwork>
      <t>In wire format, the keys are represented by their numeric values in
network byte order, concatenated in ascending order.</t>
      <t>This SvcParamKey is always automatically mandatory, and MUST NOT appear in its
own value-list.  Other automatically mandatory keys SHOULD NOT appear in the
list either.  (Including them wastes space and otherwise has no effect.)</t>
    </section>
    <section anchor="https" numbered="true" toc="default">
      <name>Using Service Bindings with HTTP</name>
      <t>Use of any protocol with SVCB requires a protocol-specific mapping
specification.  This section specifies the mapping for the "http" and "https"
URI schemes <xref target="I-D.draft-ietf-httpbis-semantics" format="default"/>.</t>
      <t>To enable special handling for HTTP use-cases,
the HTTPS RR type is defined as a SVCB-compatible RR type,
specific to the "https" and "http" schemes.  Clients MUST NOT
perform SVCB queries or accept SVCB responses for "https"
or "http" schemes.</t>
      <t>The presentation format of the record is:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
Name TTL IN HTTPS SvcPriority TargetName SvcParams
]]></artwork>
      <t>All the SvcParamKeys defined in <xref target="keys" format="default"/> are permitted for use in
HTTPS RRs.  The default set of ALPN IDs is the single value "http/1.1".
The "automatically mandatory" keys (<xref target="mandatory" format="default"/>) are "port"
and "no-default-alpn".  (As described in <xref target="mandatory" format="default"/>, clients must
either implement these keys or ignore any RR in which they appear.)
Clients that restrict the destination port in "https" URIs
(e.g. using the "bad ports" list from <xref target="FETCH" format="default"/>) SHOULD apply the
same restriction to the "port" SvcParam.</t>
      <t>The presence of an HTTPS RR for an origin also indicates
that clients should connect securely and use the "https" scheme, as
discussed in <xref target="hsts" format="default"/>.  This allows HTTPS RRs to apply to
pre-existing "http" scheme URLs, while ensuring that the client uses a
secure and authenticated connection.</t>
      <t>The HTTPS RR parallels the concepts
introduced in the HTTP Alternative Services proposed standard
<xref target="AltSvc" format="default"/>.  Clients and servers that implement HTTPS RRs are
not required to implement Alt-Svc.</t>
      <section anchor="httpsnames" numbered="true" toc="default">
        <name>Query names for HTTPS RRs</name>
        <t>The HTTPS RR uses Port Prefix Naming (<xref target="svcb-names" format="default"/>),
with one modification: if the scheme is "https" and the port is 443,
then the client's original QNAME is
equal to the service name (i.e. the origin's hostname),
without any prefix labels.</t>
        <t>By removing the Attrleaf labels <xref target="Attrleaf" format="default"/>
used in SVCB, this construction enables offline DNSSEC signing of
wildcard domains, which are commonly used with HTTP.  Using the
service name as the owner name of the HTTPS record, without prefixes,
also allows the targets of existing CNAME chains
(e.g. CDN hosts) to start returning HTTPS RR responses without
requiring origin domains to configure and maintain an additional
delegation.</t>
        <t>Following of HTTPS AliasMode RRs and CNAME aliases is unchanged from SVCB.</t>
        <t>Clients always convert "http" URLs to "https" before performing an
HTTPS RR query using the process described in <xref target="hsts" format="default"/>, so domain owners
MUST NOT publish HTTPS RRs with a prefix of "_http".</t>
        <t>Note that none of these forms alter the HTTPS origin or authority.
For example, clients MUST continue to validate TLS certificate
hostnames based on the origin.</t>
      </section>
      <section anchor="comparison-with-alt-svc" numbered="true" toc="default">
        <name>Comparison with Alt-Svc</name>
        <t>Publishing a ServiceMode HTTPS RR in DNS is intended
to be similar to transmitting an Alt-Svc field value over
HTTP, and receiving an HTTPS RR is intended to be similar to
receiving that field value over HTTP.  However, there are some
differences in the intended client and server behavior.</t>
        <section anchor="alpn-usage" numbered="true" toc="default">
          <name>ALPN usage</name>
          <t>Unlike Alt-Svc Field Values, HTTPS RRs can contain multiple ALPN IDs.  The
meaning and use of these IDs is discussed in <xref target="use" format="default"/>.</t>
        </section>
        <section anchor="untrusted-channel" numbered="true" toc="default">
          <name>Untrusted channel</name>
          <t>HTTPS records do not require or provide any assurance of authenticity.  (DNSSEC
signing and verification, which would provide such assurance, are OPTIONAL.)
The DNS resolution process is modeled as an untrusted channel that might be
controlled by an attacker, so
Alt-Svc parameters that cannot be safely received in this model MUST NOT
have a corresponding defined SvcParamKey.  For example, there is no
SvcParamKey corresponding to the Alt-Svc "persist" parameter, because
this parameter is not safe to accept over an untrusted channel.</t>
        </section>
        <section anchor="cache-lifetime" numbered="true" toc="default">
          <name>Cache lifetime</name>
          <t>There is no SvcParamKey corresponding to the Alt-Svc "ma" (max age) parameter.
Instead, server operators encode the expiration time in the DNS TTL.</t>
          <t>The appropriate TTL value might be different from the "ma" value
used for Alt-Svc, depending on the desired efficiency and
agility.  Some DNS caches incorrectly extend the lifetime of DNS
records beyond the stated TTL, so server operators cannot rely on
HTTPS RRs expiring on time.  Shortening the TTL to compensate
for incorrect caching is NOT RECOMMENDED, as this practice impairs the
performance of correctly functioning caches and does not guarantee
faster expiration from incorrect caches.  Instead, server operators
SHOULD maintain compatibility with expired records until they observe
that nearly all connections have migrated to the new configuration.</t>
        </section>
        <section anchor="granularity" numbered="true" toc="default">
          <name>Granularity</name>
          <t>Sending Alt-Svc over HTTP allows the server to tailor the Alt-Svc
Field Value specifically to the client.  When using an HTTPS RR,
groups of clients will necessarily receive the same SvcParams.
Therefore, HTTPS RRs are not suitable for uses that require
single-client granularity.</t>
        </section>
      </section>
      <section anchor="interaction-with-alt-svc" numbered="true" toc="default">
        <name>Interaction with Alt-Svc</name>
        <t>Clients that implement support for both Alt-Svc and HTTPS records SHOULD
retrieve any HTTPS records for the Alt-Svc alt-authority, and ensure that
their connection attempts are consistent with both the Alt-Svc parameters
and any received HTTPS SvcParams.  If present, the HTTPS record's TargetName
and port are used for connection establishment (as in <xref target="client-behavior" format="default"/>).
For example, suppose that
"https://example.com" sends an Alt-Svc field value of:</t>
        <sourcecode type="HTTP"><![CDATA[
Alt-Svc: h2="alt.example:443", h2="alt2.example:443", h3=":8443"
]]></sourcecode>
        <t>The client would retrieve the following HTTPS records:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
alt.example.              IN HTTPS 1 . alpn=h2,h3 ech=...
alt2.example.             IN HTTPS 1 alt2b.example. alpn=h3 ech=...
_8443._https.example.com. IN HTTPS 1 alt3.example. (
    port=9443 alpn=h2,h3 ech=... )
]]></artwork>
        <t>Based on these inputs, the following connection attempts would always be
allowed:</t>
        <ul spacing="normal">
          <li>HTTP/2 to <tt>alt.example:443</tt></li>
          <li>HTTP/3 to <tt>alt3.example:9443</tt></li>
          <li>Fallback to the the client's non-Alt-Svc connection behavior</li>
        </ul>
        <t>ECH-capable clients would use ECH when establishing any of these connections.</t>
        <t>The following connection attempts would not be allowed:</t>
        <ul spacing="normal">
          <li>HTTP/3 to <tt>alt.example:443</tt> (not consistent with Alt-Svc)</li>
          <li>Any connection to <tt>alt2b.example</tt> (no ALPN consistent with both the HTTPS
record and Alt-Svc)</li>
          <li>HTTPS over TCP to any port on <tt>alt3.example</tt> (not consistent with Alt-Svc)</li>
        </ul>
        <t>The following Alt-Svc-only connection attempts would be allowed only if
the client does not support ECH, as they rely on SVCB-optional fallback
behavior that the client will disable if it implements support for ECH and
the "ech" SvcParam is present (<xref target="ech-client-behavior" format="default"/>):</t>
        <ul spacing="normal">
          <li>HTTP/2 to <tt>alt2.example:443</tt></li>
          <li>HTTP/3 to <tt>example.com:8443</tt></li>
        </ul>
        <t>Origins that publish an "ech" SvcParam in their HTTPS record SHOULD
also publish an "ech" SvcParam for any alt-authorities.  Otherwise,
clients might reveal the name of the server in an unencrypted ClientHello.
Similar consistency considerations could apply to future SvcParamKeys, so
alt-authorities SHOULD carry the same SvcParams as the origin unless
a deviation is specifically known to be safe.</t>
        <t>As noted in <xref section="2.4" sectionFormat="of" target="AltSvc" format="default"/>, clients MAY disallow any Alt-Svc
connection according to their own criteria, e.g. disallowing Alt-Svc
connections that lack ECH support when there is an active ECH-protected
connection for this origin.</t>
      </section>
      <section anchor="requiring-server-name-indication" numbered="true" toc="default">
        <name>Requiring Server Name Indication</name>
        <t>Clients MUST NOT use an HTTPS RR response unless the
client supports TLS Server Name Indication (SNI) and
indicates the origin name when negotiating TLS.
This supports the conservation of IP addresses.</t>
        <t>Note that the TLS SNI (and also the HTTP "Host" or ":authority") will indicate
the origin, not the TargetName.</t>
      </section>
      <section anchor="hsts" numbered="true" toc="default">
        <name>HTTP Strict Transport Security</name>
        <t>An HTTPS RR directs the client to communicate with this host only over a
secure transport, similar to HTTP Strict Transport Security <xref target="HSTS" format="default"/>.
Prior to making an "http" scheme request, the client SHOULD perform a lookup
to determine if any HTTPS RRs exist for that origin.  To do so,
the client SHOULD construct a corresponding "https" URL as follows:</t>
        <ol spacing="normal" type="1"><li>Replace the "http" scheme with "https".</li>
          <li>If the "http" URL explicitly specifies port 80, specify port 443.</li>
          <li>Do not alter any other aspect of the URL.</li>
        </ol>
        <t>This construction is equivalent to <xref section="8.3" sectionFormat="of" target="HSTS" format="default"/>, point 5.</t>
        <t>If an HTTPS RR query for this "https" URL returns any AliasMode HTTPS RRs,
or any compatible ServiceMode HTTPS RRs (see <xref target="mandatory" format="default"/>), the client
SHOULD behave as if it has received an HTTP 307 (Temporary Redirect) status code
with this "https" URL in the "Location" field.  (Receipt of an incompatible ServiceMode RR does not
trigger the redirect behavior.)
Because HTTPS RRs are received over an often insecure channel (DNS),
clients MUST NOT place any more trust in this signal than if they
had received a 307 redirect over cleartext HTTP.
If this redirection would result in a loss of functionality (e.g. important
resources that are only available on the "http" origin), the operator MUST
NOT publish an HTTPS RR.</t>
        <t>When an "https" connection fails due to an error in the underlying secure
transport, such as an error in certificate validation, some clients
currently offer a "user recourse" that allows the user to bypass the
security error and connect anyway.
When making an "https" scheme request to an origin with an HTTPS RR,
either directly or via the above redirect, such a client MAY remove the user
recourse option.  Origins that publish HTTPS RRs therefore MUST NOT rely
on user recourse for access.  For more information, see Section <xref target="HSTS" section="8.4" sectionFormat="bare" format="default"/> and Section <xref target="HSTS" section="12.1" sectionFormat="bare" format="default"/> of <xref target="HSTS" format="default"/>.</t>
      </section>
      <section anchor="use-of-https-rrs-in-other-protocols" numbered="true" toc="default">
        <name>Use of HTTPS RRs in other protocols</name>
        <t>All protocols employing "http://" or "https://" URLs SHOULD respect HTTPS RRs.
For example, clients that
support HTTPS RRs and implement the altered WebSocket <xref target="WebSocket" format="default"/>
opening handshake from the W3C Fetch specification <xref target="FETCH" format="default"/> SHOULD use HTTPS RRs
for the <tt>requestURL</tt>.</t>
        <t>Such protocols MAY define their own SVCB mappings, which MAY
be defined to take precedence over HTTPS RRs.</t>
      </section>
    </section>
    <section anchor="ech-param" numbered="true" toc="default">
      <name>SVCB/HTTPS RR parameter for ECH configuration</name>
      <t>The SVCB "ech" parameter is defined for
conveying the ECH configuration of an alternative endpoint.
In wire format, the value of the parameter is an ECHConfigList
<xref target="ECH" format="default"/>, including the redundant length prefix.  In presentation format,
the value is a single ECHConfigList encoded in Base64 <xref target="base64" format="default"/>.
Base64 is used here to simplify integration with TLS server software.
To enable simpler parsing, this SvcParam MUST NOT contain escape sequences.</t>
      <t>When ECH is in use, the TLS ClientHello is divided into an unencrypted "outer"
and an encrypted "inner" ClientHello.  The outer ClientHello is an implementation
detail of ECH, and its contents are controlled by the ECHConfig in accordance
with <xref target="ECH" format="default"/>.  The inner ClientHello is used for establishing a connection to the
service, so its contents may be influenced by other SVCB parameters.  For example,
the requirements on the ProtocolNameList in <xref target="alpn-key" format="default"/> apply only to the inner
ClientHello.  Similarly, it is the inner ClientHello whose Server Name Indication
identifies the desired service.</t>
      <section anchor="ech-client-behavior" numbered="true" toc="default">
        <name>Client behavior</name>
        <t>The SVCB-optional client behavior specified in <xref target="client-behavior" format="default"/> permits clients
to fall back to a direct connection if all SVCB options fail.  This behavior is
not suitable for ECH, because fallback would negate the privacy benefits of
ECH.  Accordingly, ECH-capable SVCB-optional clients MUST switch to
SVCB-reliant connection establishment if SVCB resolution succeeded (following
<xref target="client-behavior" format="default"/>) and all alternative endpoints have an "ech" key.</t>
        <t>As a latency optimization, clients MAY prefetch DNS records that will only be used
in SVCB-optional mode.</t>
      </section>
      <section anchor="deployment-considerations" numbered="true" toc="default">
        <name>Deployment considerations</name>
        <t>An HTTPS RRSet containing some RRs with "ech" and some without is
vulnerable to a downgrade attack.  This configuration is NOT RECOMMENDED.
Zone owners who do use such a mixed configuration SHOULD mark the RRs with
"ech" as more preferred (i.e. smaller SvcPriority) than those
without, in order to maximize the likelihood that ECH will be used in the
absence of an active adversary.</t>
      </section>
    </section>
    <section anchor="zone-structures" numbered="true" toc="default">
      <name>Zone Structures</name>
      <section anchor="structuring-zones-for-flexibility" numbered="true" toc="default">
        <name>Structuring zones for flexibility</name>
        <t>Each ServiceMode RRSet can only serve a single scheme.  The scheme is indicated
by the owner name and the RR type.  For the generic SVCB RR type, this means that
each owner name can only be used for a single scheme.  The underscore prefixing
requirement (<xref target="svcb-names" format="default"/>) ensures that this is true for the initial query,
but it is the responsibility of zone owners to choose names that satisfy this
constraint when using aliases, including CNAME and AliasMode records.</t>
        <t>When using the generic SVCB RR type with aliasing, zone owners SHOULD choose alias
target names that indicate the scheme in use (e.g. <tt>foosvc.example.net</tt> for
<tt>foo://</tt> schemes).  This will help to avoid confusion when another scheme needs to
be added to the configuration.</t>
      </section>
      <section anchor="zone-performance" numbered="true" toc="default">
        <name>Structuring zones for performance</name>
        <t>To avoid a delay for clients using a nonconforming recursive resolver,
domain owners SHOULD minimize the use of AliasMode records, and SHOULD
choose TargetName according to a predictable convention that is known
to the client, so that clients can issue A and/or AAAA queries for TargetName
in advance (see <xref target="optimizations" format="default"/>).  Unless otherwise specified, the
convention is to set TargetName to the service name for an initial
ServiceMode record, or to "." if it is reached via an alias.  For
foo://foo.example.com:8080, this might look like:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
$ORIGIN example.com. ; Origin
foo                  3600 IN CNAME foosvc.example.net.
_8080._foo.foo       3600 IN CNAME foosvc.example.net.

$ORIGIN example.net. ; Service provider zone
foosvc               3600 IN SVCB 1 . key65333=...
foosvc                300 IN AAAA 2001:db8::1
]]></artwork>
        <t>Domain owners SHOULD avoid using a TargetName that is below a DNAME, as
this is likely unnecessary and makes responses slower and larger.
Also, zone structures that require following more than 8 aliases
(counting both AliasMode and CNAME records) are NOT RECOMMENDED.</t>
      </section>
      <section anchor="examples" numbered="true" toc="default">
        <name>Examples</name>
        <section anchor="protocol-enhancements" numbered="true" toc="default">
          <name>Protocol enhancements</name>
          <t>Consider a simple zone of the form:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
$ORIGIN simple.example. ; Simple example zone
@ 300 IN A    192.0.2.1
         AAAA 2001:db8::1
]]></artwork>
          <t>The domain owner could add this record:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
@ 7200 IN HTTPS 1 . alpn=h3
]]></artwork>
          <t>to indicate that https://simple.example supports QUIC
in addition to TLS over TCP (the implicit default).
The record could also include other information (e.g. non-standard port,
ECH configuration).  For https://simple.example:8443, the record would be:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
_8443._https 7200 IN HTTPS 1 . alpn=h3
]]></artwork>
          <t>These records also respectively tell clients to replace the scheme with "https" when
loading http://simple.example or http://simple.example:8443.</t>
        </section>
        <section anchor="apex-aliasing" numbered="true" toc="default">
          <name>Apex aliasing</name>
          <t>Consider a zone that is using CNAME aliasing:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
$ORIGIN aliased.example. ; A zone that is using a hosting service
; Subdomain aliased to a high-performance server pool
www             7200 IN CNAME pool.svc.example.
; Apex domain on fixed IPs because CNAME is not allowed at the apex
@                300 IN A     192.0.2.1
                     IN AAAA  2001:db8::1
]]></artwork>
          <t>With HTTPS RRs, the owner of aliased.example could alias the apex by
adding one additional record:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
@               7200 IN HTTPS 0 pool.svc.example.
]]></artwork>
          <t>With this record in place, HTTPS-RR-aware clients will use the same
server pool for aliased.example and www.aliased.example.  (They will
also upgrade "http://aliased.example/..." to "https".)  Non-HTTPS-RR-aware
clients will just ignore the new record.</t>
          <t>Similar to CNAME, HTTPS RRs have no impact on the origin name.
When connecting, clients will continue to treat the authoritative
origins as "https://www.aliased.example" and "https://aliased.example",
respectively, and will validate TLS server certificates accordingly.</t>
        </section>
        <section anchor="parameter-binding" numbered="true" toc="default">
          <name>Parameter binding</name>
          <t>Suppose that svc.example's default server pool supports HTTP/2, and
it has deployed HTTP/3 on a new server pool with a different
configuration.  This can be expressed in the following form:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
$ORIGIN svc.example. ; A hosting provider.
pool  7200 IN HTTPS 1 h3pool alpn=h2,h3 ech="123..."
              HTTPS 2 .      alpn=h2 ech="abc..."
pool   300 IN A        192.0.2.2
              AAAA     2001:db8::2
h3pool 300 IN A        192.0.2.3
              AAAA     2001:db8::3
]]></artwork>
          <t>This configuration is entirely compatible with the "Apex aliasing" example,
whether the client supports HTTPS RRs or not.  If the client does support
HTTPS RRs, all connections will be upgraded to HTTPS, and clients will
use HTTP/3 if they can.  Parameters are "bound" to each server pool, so
each server pool can have its own protocol, ECH configuration, etc.</t>
        </section>
        <section anchor="multicdn" numbered="true" toc="default">
          <name>Multi-CDN</name>
          <t>The HTTPS RR is intended to support HTTPS services operated by
multiple independent entities, such as different Content Delivery
Networks (CDNs) or different hosting providers.  This includes
the case where a service is migrated from one operator to another,
as well as the case where the service is multiplexed between
multiple operators for performance, redundancy, etc.</t>
          <t>This example shows such a configuration, with www.customer.example
having different DNS responses to different queries, either over time
or due to logic within the authoritative DNS server:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
 ; This zone contains/returns different CNAME records
 ; at different points-in-time.  The RRset for "www" can
 ; only ever contain a single CNAME.

 ; Sometimes the zone has:
 $ORIGIN customer.example.  ; A Multi-CDN customer domain
 www 900 IN CNAME cdn1.svc1.example.

 ; and other times it contains:
 $ORIGIN customer.example.
 www 900 IN CNAME customer.svc2.example.

 ; and yet other times it contains:
 $ORIGIN customer.example.
 www 900 IN CNAME cdn3.svc3.example.

 ; With the following remaining constant and always included:
 $ORIGIN customer.example.  ; A Multi-CDN customer domain
 ; The apex is also aliased to www to match its configuration
 @     7200 IN HTTPS 0 www
 ; Non-HTTPS-aware clients use non-CDN IPs
               A    203.0.113.82
               AAAA 2001:db8:203::2

 ; Resolutions following the cdn1.svc1.example
 ; path use these records.
 ; This CDN uses a different alternative service for HTTP/3.
 $ORIGIN svc1.example.  ; domain for CDN 1
 cdn1     1800 IN HTTPS 1 h3pool alpn=h3 ech="123..."
                  HTTPS 2 . alpn=h2 ech="123..."
                  A    192.0.2.2
                  AAAA 2001:db8:192::4
 h3pool 300 IN A 192.0.2.3
            AAAA 2001:db8:192:7::3

 ; Resolutions following the customer.svc2.example
 ; path use these records.
 ; Note that this CDN only supports HTTP/2.
 $ORIGIN svc2.example. ; domain operated by CDN 2
 customer 300 IN HTTPS 1 . alpn=h2 ech="xyz..."
           60 IN A    198.51.100.2
                 A    198.51.100.3
                 A    198.51.100.4
                 AAAA 2001:db8:198::7
                 AAAA 2001:db8:198::12

 ; Resolutions following the customer.svc2.example
 ; path use these records.
 ; Note that this CDN has no HTTPS records
 ; and thus no ECH support.
 $ORIGIN svc3.example. ; domain operated by CDN 3
 cdn3      60 IN A    203.0.113.8
                 AAAA 2001:db8:113::8
]]></artwork>
          <t>Note that in the above example, the different CDNs have different
ECH configurations and different capabilities, but clients will use HTTPS RRs
as a bound-together unit.</t>
          <t>Domain owners should be cautious when using a multi-CDN configuration, as it
introduces a number of complexities highlighted by this example:</t>
          <ul spacing="normal">
            <li>If CDN 1 supports ECH, and CDN 2 does not, the client is vulnerable to ECH
downgrade by a network adversary who forces clients to get CDN 2 records.</li>
            <li>Aliasing the apex to its subdomain simplifies the zone file but likely
increases resolution latency, especially when using a non-HTTPS-aware
recursive resolver.  An alternative would be to alias the zone
apex directly to a name managed by a CDN.</li>
            <li>The A, AAAA, and HTTPS resolutions are independent lookups, so clients may
observe and follow different CNAMEs to different CDNs.
Clients may thus find a TargetName pointing to a name
other than the one which returned along with the A and AAAA lookups
and will need to do an additional resolution for them.
Including ipv6hint and ipv4hint will reduce the performance
impact of this case.</li>
            <li>If not all CDNs publish HTTPS records, clients will sometimes
receive NODATA for HTTPS queries (as with cdn3.svc3.example above),
and thus no "ech" SvcParam, but could receive A/AAAA records from
a different CDN which does support ECH.  Clients will be unable
to use ECH in this case.</li>
          </ul>
        </section>
        <section anchor="non-http-uses" numbered="true" toc="default">
          <name>Non-HTTP uses</name>
          <t>For protocols other than HTTP, the SVCB RR and an Attrleaf label <xref target="Attrleaf" format="default"/>
will be used.  For example, to reach an example resource of
"baz://api.example.com:8765", the following SVCB
record would be used to alias it to "svc4-baz.example.net."
which in-turn could return AAAA/A records and/or SVCB
records in ServiceMode:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
_8765._baz.api.example.com. 7200 IN SVCB 0 svc4-baz.example.net.
]]></artwork>
          <t>HTTPS RRs use similar Attrleaf labels if the origin contains
a non-default port.</t>
        </section>
      </section>
    </section>
    <section anchor="other-standards" numbered="true" toc="default">
      <name>Interaction with other standards</name>
      <t>This standard is intended to reduce connection latency and
improve user privacy.  Server operators implementing this standard
SHOULD also implement TLS 1.3 <xref target="RFC8446" format="default"/> and OCSP Stapling
<xref target="RFC6066" format="default"/>, both of which confer substantial performance and privacy
benefits when used in combination with SVCB records.</t>
      <t>To realize the greatest privacy benefits, this proposal is intended for
use over a privacy-preserving DNS transport (like DNS over TLS
<xref target="DoT" format="default"/> or DNS over HTTPS <xref target="DoH" format="default"/>).
However, performance improvements, and some modest privacy improvements,
are possible without the use of those standards.</t>
      <t>Any specification for use of SVCB with a protocol MUST have an entry for its
scheme under the SVCB RR type in the IANA DNS Underscore Global Scoped Entry
Registry <xref target="Attrleaf" format="default"/>.  The scheme SHOULD have an entry in the IANA URI Schemes
Registry <xref target="RFC7595" format="default"/>.  The scheme SHOULD have a defined specification for use
with SVCB.</t>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>SVCB/HTTPS RRs are intended for distribution over untrusted
channels, and clients are REQUIRED to verify that the alternative endpoint
is authoritative for the service (similar to <xref section="2.1" sectionFormat="of" target="AltSvc" format="default"/>).
Therefore, DNSSEC signing and validation are OPTIONAL for publishing
and using SVCB and HTTPS RRs.</t>
      <t>Clients MUST ensure that their DNS cache is partitioned for each local
network, or flushed on network changes, to prevent a local adversary in one
network from implanting a forged DNS record that allows them to
track users or hinder their connections after they leave that network.</t>
      <t>An attacker who can prevent SVCB resolution can deny clients any associated
security benefits.  A hostile recursive resolver can always deny service to
SVCB queries, but network intermediaries can often prevent resolution as well,
even when the client and recursive resolver validate DNSSEC and use a secure
transport.  These downgrade attacks can prevent the "https" upgrade provided by
the HTTPS RR (<xref target="hsts" format="default"/>), and disable the encryption enabled by the "ech"
SvcParamKey (<xref target="ech-param" format="default"/>).  To prevent downgrades, <xref target="client-failures" format="default"/>
recommends that clients abandon the connection attempt when such an attack is
detected.</t>
      <t>A hostile DNS intermediary might forge AliasMode "." records (<xref target="aliasdot" format="default"/>) as
a way to block clients from accessing particular services.  Such an adversary
could already block entire domains by forging erroneous responses, but this
mechanism allows them to target particular protocols or ports within a domain.
Clients that might be subject to such attacks SHOULD ignore AliasMode "."
records.</t>
      <t>A hostile DNS intermediary or origin can return SVCB records indicating any IP
address and port number, including IP addresses inside the local network and
port numbers assigned to internal services.  If the attacker can influence the
client's payload (e.g. TLS session ticket contents), and an internal service
has a sufficiently lax parser, it's possible that the attacker could gain
unintended access.  (The same concerns apply to SRV records, HTTP Alt-Svc,
and HTTP redirects.)  As a mitigation, SVCB mapping documents SHOULD indicate
any port number restrictions that are appropriate for the supported transports.</t>
    </section>
    <section anchor="privacy-considerations" numbered="true" toc="default">
      <name>Privacy Considerations</name>
      <t>Standard address queries reveal the user's intent to access a particular
domain.  This information is visible to the recursive resolver, and to
many other parties when plaintext DNS transport is used.  SVCB queries,
like queries for SRV records and other specific RR types, additionally
reveal the user's intent to use a particular protocol.  This is not
normally sensitive information, but it should be considered when adding
SVCB support in a new context.</t>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <section anchor="svcb-rrtype" numbered="true" toc="default">
        <name>SVCB RRType</name>
        <t>This document defines a new DNS RR type, SVCB, whose value 64 has
been allocated by IANA from the "Resource Record (RR) TYPEs"
subregistry of the "Domain Name System (DNS) Parameters" registry:</t>
        <ul spacing="normal">
          <li>Type: SVCB</li>
          <li>Value: 64</li>
          <li>Meaning: General Purpose Service Binding</li>
          <li>Reference: This document</li>
        </ul>
      </section>
      <section anchor="https-rrtype" numbered="true" toc="default">
        <name>HTTPS RRType</name>
        <t>This document defines a new DNS RR type, "HTTPS", whose value 65 has
been allocated by IANA from the "Resource Record (RR) TYPEs"
subregistry of the "Domain Name System (DNS) Parameters" registry:</t>
        <ul spacing="normal">
          <li>Type: HTTPS</li>
          <li>Value: 65</li>
          <li>Meaning: Service Binding type for use with HTTP</li>
          <li>Reference: This document</li>
        </ul>
      </section>
      <section anchor="svcparamregistry" numbered="true" toc="default">
        <name>New registry for Service Parameters</name>
        <t>IANA is requested to create a new registry, entitled
"Service Parameter Keys (SvcParamKeys)".  This registry defines the namespace
for parameters, including string representations and numeric
SvcParamKey values.  This registry is shared with other SVCB-compatible
RR types, such as the HTTPS RR.</t>
        <t>ACTION: create this registry, on a new page entitled
"DNS Service Bindings (SVCB)" under the "Domain Name System (DNS) Parameters"
category.</t>
        <section anchor="procedure" numbered="true" toc="default">
          <name>Procedure</name>
          <t>A registration MUST include the following fields:</t>
          <ul spacing="normal">
            <li>Number: wire format numeric identifier (range 0-65535)</li>
            <li>Name: unique presentation name</li>
            <li>Meaning: a short description</li>
            <li>Format Reference: pointer to specification text</li>
          </ul>
          <t>The characters in the registered Name MUST be lower-case alphanumeric or "-"
(<xref target="presentation" format="default"/>).  The name MUST NOT start with "key" or "invalid".</t>
          <t>Entries in this registry are subject to a First Come First Served registration
policy (<xref section="4.4" sectionFormat="comma" target="RFC8126" format="default"/>).  The Format Reference MUST specify
how to convert the SvcParamValue's presentation format to wire format and MAY
detail its intended meaning and use.  An entry MAY specify a Format 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="iana-keys" numbered="true" toc="default">
          <name>Initial contents</name>
          <t>The "Service Binding (SVCB) Parameter Registry" shall initially
be populated with the registrations below:</t>
          <table align="center">
            <thead>
              <tr>
                <th align="left">Number</th>
                <th align="left">Name</th>
                <th align="left">Meaning</th>
                <th align="left">Format Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">0</td>
                <td align="left">mandatory</td>
                <td align="left">Mandatory keys in this RR</td>
                <td align="left">(This document) <xref target="mandatory" format="default"/></td>
              </tr>
              <tr>
                <td align="left">1</td>
                <td align="left">alpn</td>
                <td align="left">Additional supported protocols</td>
                <td align="left">(This document) <xref target="alpn-key" format="default"/></td>
              </tr>
              <tr>
                <td align="left">2</td>
                <td align="left">no-default-alpn</td>
                <td align="left">No support for default protocol</td>
                <td align="left">(This document) <xref target="alpn-key" format="default"/></td>
              </tr>
              <tr>
                <td align="left">3</td>
                <td align="left">port</td>
                <td align="left">Port for alternative endpoint</td>
                <td align="left">(This document) <xref target="svcparamkeys-port" format="default"/></td>
              </tr>
              <tr>
                <td align="left">4</td>
                <td align="left">ipv4hint</td>
                <td align="left">IPv4 address hints</td>
                <td align="left">(This document) <xref target="svcparamkeys-iphints" format="default"/></td>
              </tr>
              <tr>
                <td align="left">5</td>
                <td align="left">ech</td>
                <td align="left">Encrypted ClientHello info</td>
                <td align="left">(This document) <xref target="svcparamkeys-ech" format="default"/></td>
              </tr>
              <tr>
                <td align="left">6</td>
                <td align="left">ipv6hint</td>
                <td align="left">IPv6 address hints</td>
                <td align="left">(This document) <xref target="svcparamkeys-iphints" format="default"/></td>
              </tr>
              <tr>
                <td align="left">65280-65534</td>
                <td align="left">N/A</td>
                <td align="left">Private Use</td>
                <td align="left">(This document)</td>
              </tr>
              <tr>
                <td align="left">65535</td>
                <td align="left">N/A</td>
                <td align="left">Reserved ("Invalid key")</td>
                <td align="left">(This document)</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
      <section anchor="other-registry-updates" numbered="true" toc="default">
        <name>Other registry updates</name>
        <t>Per <xref target="Attrleaf" format="default"/>, please add the following entry to the DNS Underscore
Global Scoped Entry Registry:</t>
        <table align="center">
          <thead>
            <tr>
              <th align="left">RR TYPE</th>
              <th align="left">_NODE NAME</th>
              <th align="left">Meaning</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">HTTPS</td>
              <td align="left">_https</td>
              <td align="left">HTTPS SVCB info</td>
              <td align="left">(This document)</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="acknowledgments-and-related-proposals" numbered="true" toc="default">
      <name>Acknowledgments and Related Proposals</name>
      <t>There have been a wide range of proposed solutions over the years to
the "CNAME at the Zone Apex" challenge proposed.  These include
<xref target="I-D.bellis-dnsop-http-record" format="default"/>,
<xref target="I-D.ietf-dnsop-aname" format="default"/>, and others.</t>
      <t>Thank you to Ian Swett, Ralf Weber, Jon Reed,
Martin Thomson, Lucas Pardue, Ilari Liusvaara,
Tim Wicinski, Tommy Pauly, Chris Wood, David Benjamin,
Mark Andrews, Emily Stark, Eric Orth, Kyle Rose,
Craig Taylor, Dan McArdle, Brian Dickson,
Willem Toorop, Pieter Lexis, Puneet Sood,
Olivier Poitrey, Mashooq Muhaimen,
Tom Carpay, and many others for their feedback
and suggestions on this draft.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

   This document updates RFC 3864 and obsoletes RFC 2818, RFC 7231, RFC
   7232, RFC 7233, RFC 7235, RFC 7538, RFC 7615, RFC 7694, and portions
   of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
        </reference>
        <reference anchor="ECH">
          <front>
            <title>TLS Encrypted Client Hello</title>
            <author fullname="Eric Rescorla">
              <organization>RTFM, Inc.</organization>
            </author>
            <author fullname="Kazuho Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Nick Sullivan">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="12" month="August" year="2021"/>
            <abstract>
              <t>   This document describes a mechanism in Transport Layer Security (TLS)
   for encrypting a ClientHello message under a server public key.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Source for this draft and an issue tracker can be found at
   https://github.com/tlswg/draft-ietf-tls-esni
   (https://github.com/tlswg/draft-ietf-tls-esni).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-13"/>
        </reference>
        <reference anchor="Attrleaf">
          <front>
            <title>Scoped Interpretation of DNS Resource Records through "Underscored" Naming of Attribute Leaves</title>
            <author fullname="D. Crocker" initials="D." surname="Crocker">
              <organization/>
            </author>
            <date month="March" year="2019"/>
            <abstract>
              <t>Formally, any DNS Resource Record (RR) may occur under any domain name.  However, some services use an operational convention for defining specific interpretations of an RRset by locating the records in a DNS branch under the parent domain to which the RRset actually applies.  The top of this subordinate branch is defined by a naming convention that uses a reserved node name, which begins with the underscore character (e.g., "_name").  The underscored naming construct defines a semantic scope for DNS record types that are associated with the parent domain above the underscored branch.  This specification explores the nature of this DNS usage and defines the "Underscored and Globally Scoped DNS Node Names" registry with IANA. The purpose of this registry is to avoid collisions resulting from the use of the same underscored name for different services.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="222"/>
          <seriesInfo name="RFC" value="8552"/>
          <seriesInfo name="DOI" value="10.17487/RFC8552"/>
        </reference>
        <reference anchor="HSTS">
          <front>
            <title>HTTP Strict Transport Security (HSTS)</title>
            <author fullname="J. Hodges" initials="J." surname="Hodges">
              <organization/>
            </author>
            <author fullname="C. Jackson" initials="C." surname="Jackson">
              <organization/>
            </author>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="November" year="2012"/>
            <abstract>
              <t>This specification defines a mechanism enabling web sites to declare themselves accessible only via secure connections and/or for users to be able to direct their user agent(s) to interact with given sites only over secure connections.  This overall policy is referred to as HTTP Strict Transport Security (HSTS).  The policy is declared by web sites via the Strict-Transport-Security HTTP response header field and/or by other means, such as user agent configuration, for example. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6797"/>
          <seriesInfo name="DOI" value="10.17487/RFC6797"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC1035">
          <front>
            <title>Domain names - implementation and specification</title>
            <author fullname="P.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <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="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="HappyEyeballsV2">
          <front>
            <title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <date month="December" year="2017"/>
            <abstract>
              <t>Many communication protocols operating over the modern Internet use hostnames.  These often resolve to multiple IP addresses, each of which may have different performance and connectivity characteristics.  Since specific addresses or address families (IPv4 or IPv6) may be blocked, broken, or sub-optimal on a network, clients that attempt multiple connections in parallel have a chance of establishing a connection more quickly.  This document specifies requirements for algorithms that reduce this user-visible delay and provides an example algorithm, referred to as "Happy Eyeballs".  This document obsoletes the original algorithm description in RFC 6555.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8305"/>
          <seriesInfo name="DOI" value="10.17487/RFC8305"/>
        </reference>
        <reference anchor="DoT">
          <front>
            <title>Specification for DNS over Transport Layer Security (TLS)</title>
            <author fullname="Z. Hu" initials="Z." surname="Hu">
              <organization/>
            </author>
            <author fullname="L. Zhu" initials="L." surname="Zhu">
              <organization/>
            </author>
            <author fullname="J. Heidemann" initials="J." surname="Heidemann">
              <organization/>
            </author>
            <author fullname="A. Mankin" initials="A." surname="Mankin">
              <organization/>
            </author>
            <author fullname="D. Wessels" initials="D." surname="Wessels">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="May" year="2016"/>
            <abstract>
              <t>This document describes the use of Transport Layer Security (TLS) to provide privacy for DNS.  Encryption provided by TLS eliminates opportunities for eavesdropping and on-path tampering with DNS queries in the network, such as discussed in RFC 7626.  In addition, this document specifies two usage profiles for DNS over TLS and provides advice on performance considerations to minimize overhead from using TCP and TLS with DNS.</t>
              <t>This document focuses on securing stub-to-recursive traffic, as per the charter of the DPRIVE Working Group.  It does not prevent future applications of the protocol to recursive-to-authoritative traffic.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7858"/>
          <seriesInfo name="DOI" value="10.17487/RFC7858"/>
        </reference>
        <reference anchor="DoH">
          <front>
            <title>DNS Queries over HTTPS (DoH)</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <date month="October" year="2018"/>
            <abstract>
              <t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS.  Each DNS query-response pair is mapped into an HTTP exchange.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8484"/>
          <seriesInfo name="DOI" value="10.17487/RFC8484"/>
        </reference>
        <reference anchor="RFC7231">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7231"/>
          <seriesInfo name="DOI" value="10.17487/RFC7231"/>
        </reference>
        <reference anchor="RFC1928">
          <front>
            <title>SOCKS Protocol Version 5</title>
            <author fullname="M. Leech" initials="M." surname="Leech">
              <organization/>
            </author>
            <author fullname="M. Ganis" initials="M." surname="Ganis">
              <organization/>
            </author>
            <author fullname="Y. Lee" initials="Y." surname="Lee">
              <organization/>
            </author>
            <author fullname="R. Kuris" initials="R." surname="Kuris">
              <organization/>
            </author>
            <author fullname="D. Koblas" initials="D." surname="Koblas">
              <organization/>
            </author>
            <author fullname="L. Jones" initials="L." surname="Jones">
              <organization/>
            </author>
            <date month="March" year="1996"/>
            <abstract>
              <t>This memo describes a protocol that is an evolution of the previous version of the protocol, version 4 [1]. This new protocol stems from active discussions and prototype implementations.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1928"/>
          <seriesInfo name="DOI" value="10.17487/RFC1928"/>
        </reference>
        <reference anchor="RFC3597">
          <front>
            <title>Handling of Unknown DNS Resource Record (RR) Types</title>
            <author fullname="A. Gustafsson" initials="A." surname="Gustafsson">
              <organization/>
            </author>
            <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="DNAME">
          <front>
            <title>DNAME Redirection in the DNS</title>
            <author fullname="S. Rose" initials="S." surname="Rose">
              <organization/>
            </author>
            <author fullname="W. Wijngaards" initials="W." surname="Wijngaards">
              <organization/>
            </author>
            <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="RFC3225">
          <front>
            <title>Indicating Resolver Support of DNSSEC</title>
            <author fullname="D. Conrad" initials="D." surname="Conrad">
              <organization/>
            </author>
            <date month="December" year="2001"/>
            <abstract>
              <t>In order to deploy DNSSEC (Domain Name System Security Extensions) operationally, DNSSEC aware servers should only perform automatic inclusion of DNSSEC RRs when there is an explicit indication that the resolver can understand those RRs.  This document proposes the use of a bit in the EDNS0 header to provide that explicit indication and describes the necessary protocol changes to implement that notification. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3225"/>
          <seriesInfo name="DOI" value="10.17487/RFC3225"/>
        </reference>
        <reference anchor="RFC2181">
          <front>
            <title>Clarifications to the DNS Specification</title>
            <author fullname="R. Elz" initials="R." surname="Elz">
              <organization/>
            </author>
            <author fullname="R. Bush" initials="R." surname="Bush">
              <organization/>
            </author>
            <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="RFC7871">
          <front>
            <title>Client Subnet in DNS Queries</title>
            <author fullname="C. Contavalli" initials="C." surname="Contavalli">
              <organization/>
            </author>
            <author fullname="W. van der Gaast" initials="W." surname="van der Gaast">
              <organization/>
            </author>
            <author fullname="D. Lawrence" initials="D." surname="Lawrence">
              <organization/>
            </author>
            <author fullname="W. Kumari" initials="W." surname="Kumari">
              <organization/>
            </author>
            <date month="May" year="2016"/>
            <abstract>
              <t>This document describes an Extension Mechanisms for DNS (EDNS0) option that is in active use to carry information about the network that originated a DNS query and the network for which the subsequent response can be cached.  Since it has some known operational and privacy shortcomings, a revision will be worked through the IETF for improvement.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7871"/>
          <seriesInfo name="DOI" value="10.17487/RFC7871"/>
        </reference>
        <reference anchor="ALPN">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="RFC5952">
          <front>
            <title>A Recommendation for IPv6 Address Text Representation</title>
            <author fullname="S. Kawamura" initials="S." surname="Kawamura">
              <organization/>
            </author>
            <author fullname="M. Kawashima" initials="M." surname="Kawashima">
              <organization/>
            </author>
            <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="RFC7050">
          <front>
            <title>Discovery of the IPv6 Prefix Used for IPv6 Address Synthesis</title>
            <author fullname="T. Savolainen" initials="T." surname="Savolainen">
              <organization/>
            </author>
            <author fullname="J. Korhonen" initials="J." surname="Korhonen">
              <organization/>
            </author>
            <author fullname="D. Wing" initials="D." surname="Wing">
              <organization/>
            </author>
            <date month="November" year="2013"/>
            <abstract>
              <t>This document describes a method for detecting the presence of DNS64 and for learning the IPv6 prefix used for protocol translation on an access network.  The method depends on the existence of a well-known IPv4-only fully qualified domain name "ipv4only.arpa.".  The information learned enables nodes to perform local IPv6 address synthesis and to potentially avoid NAT64 on dual-stack and multi-interface deployments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7050"/>
          <seriesInfo name="DOI" value="10.17487/RFC7050"/>
        </reference>
        <reference anchor="RFC6147">
          <front>
            <title>DNS64: DNS Extensions for Network Address Translation from IPv6 Clients to IPv4 Servers</title>
            <author fullname="M. Bagnulo" initials="M." surname="Bagnulo">
              <organization/>
            </author>
            <author fullname="A. Sullivan" initials="A." surname="Sullivan">
              <organization/>
            </author>
            <author fullname="P. Matthews" initials="P." surname="Matthews">
              <organization/>
            </author>
            <author fullname="I. van Beijnum" initials="I." surname="van Beijnum">
              <organization/>
            </author>
            <date month="April" year="2011"/>
            <abstract>
              <t>DNS64 is a mechanism for synthesizing AAAA records from A records. DNS64 is used with an IPv6/IPv4 translator to enable client-server communication between an IPv6-only client and an IPv4-only server, without requiring any changes to either the IPv6 or the IPv4 node, for the class of applications that work through NATs.  This document specifies DNS64, and provides suggestions on how it should be deployed in conjunction with IPv6/IPv4 translators.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6147"/>
          <seriesInfo name="DOI" value="10.17487/RFC6147"/>
        </reference>
        <reference anchor="I-D.draft-ietf-httpbis-semantics">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

   This document updates RFC 3864 and obsoletes RFC 2818, RFC 7231, RFC
   7232, RFC 7233, RFC 7235, RFC 7538, RFC 7615, RFC 7694, and portions
   of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
        </reference>
        <reference anchor="WebSocket">
          <front>
            <title>The WebSocket Protocol</title>
            <author fullname="I. Fette" initials="I." surname="Fette">
              <organization/>
            </author>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov">
              <organization/>
            </author>
            <date month="December" year="2011"/>
            <abstract>
              <t>The WebSocket Protocol enables two-way communication between a client running untrusted code in a controlled environment to a remote host that has opted-in to communications from that code.  The security model used for this is the origin-based security model commonly used by web browsers.  The protocol consists of an opening handshake followed by basic message framing, layered over TCP.  The goal of this technology is to provide a mechanism for browser-based applications that need two-way communication with servers that does not rely on opening multiple HTTP connections (e.g., using XMLHttpRequest or &lt;iframe&gt;s and long polling).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6455"/>
          <seriesInfo name="DOI" value="10.17487/RFC6455"/>
        </reference>
        <reference anchor="base64">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC6066">
          <front>
            <title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <date month="January" year="2011"/>
            <abstract>
              <t>This document provides specifications for existing TLS extensions.  It is a companion document for RFC 5246, "The Transport Layer Security (TLS) Protocol Version 1.2".  The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6066"/>
          <seriesInfo name="DOI" value="10.17487/RFC6066"/>
        </reference>
        <reference anchor="RFC7595">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <author fullname="D. Thaler" initials="D." role="editor" surname="Thaler">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <author fullname="T. Hardie" initials="T." surname="Hardie">
              <organization/>
            </author>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes.  It obsoletes RFC 4395.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="35"/>
          <seriesInfo name="RFC" value="7595"/>
          <seriesInfo name="DOI" value="10.17487/RFC7595"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <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>
        <name>Informative References</name>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org/">
          <front>
            <title>Fetch Living Standard</title>
            <author>
              <organization/>
            </author>
            <date year="2020" month="May"/>
          </front>
        </reference>
        <reference anchor="HTTP3">
          <front>
            <title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>
            <author fullname="Mike Bishop">
              <organization>Akamai</organization>
            </author>
            <date day="2" month="February" year="2021"/>
            <abstract>
              <t>   The QUIC transport protocol has several features that are desirable
   in a transport for HTTP, such as stream multiplexing, per-stream flow
   control, and low-latency connection establishment.  This document
   describes a mapping of HTTP semantics over QUIC.  This document also
   identifies HTTP/2 features that are subsumed by QUIC, and describes
   how HTTP/2 extensions can be ported to HTTP/3.

DO NOT DEPLOY THIS VERSION OF HTTP

   DO NOT DEPLOY THIS VERSION OF HTTP/3 UNTIL IT IS IN AN RFC.  This
   version is still a work in progress.  For trial deployments, please
   use earlier versions.

Note to Readers

   Discussion of this draft takes place on the QUIC working group
   mailing list (quic@ietf.org), which is archived at
   https://mailarchive.ietf.org/arch/search/?email_list=quic.

   Working Group information can be found at https://github.com/quicwg;
   source code and issues list for this draft can be found at
   https://github.com/quicwg/base-drafts/labels/-http.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-34"/>
        </reference>
        <reference anchor="SRV">
          <front>
            <title>A DNS RR for specifying the location of services (DNS SRV)</title>
            <author fullname="A. Gulbrandsen" initials="A." surname="Gulbrandsen">
              <organization/>
            </author>
            <author fullname="P. Vixie" initials="P." surname="Vixie">
              <organization/>
            </author>
            <author fullname="L. Esibov" initials="L." surname="Esibov">
              <organization/>
            </author>
            <date month="February" year="2000"/>
            <abstract>
              <t>This document describes a DNS RR which specifies the location of the server(s) for a specific protocol and domain.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2782"/>
          <seriesInfo name="DOI" value="10.17487/RFC2782"/>
        </reference>
        <reference anchor="AltSvc">
          <front>
            <title>HTTP Alternative Services</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." surname="Reschke">
              <organization/>
            </author>
            <date month="April" year="2016"/>
            <abstract>
              <t>This document specifies "Alternative Services" for HTTP, which allow an origin's resources to be authoritatively available at a separate network location, possibly accessed with a different protocol configuration.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7838"/>
          <seriesInfo name="DOI" value="10.17487/RFC7838"/>
        </reference>
        <reference anchor="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="DNSTerm">
          <front>
            <title>DNS Terminology</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <author fullname="A. Sullivan" initials="A." surname="Sullivan">
              <organization/>
            </author>
            <author fullname="K. Fujiwara" initials="K." surname="Fujiwara">
              <organization/>
            </author>
            <date month="January" year="2019"/>
            <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 sometimes 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 obsoletes RFC 7719 and updates RFC 2308.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="219"/>
          <seriesInfo name="RFC" value="8499"/>
          <seriesInfo name="DOI" value="10.17487/RFC8499"/>
        </reference>
        <reference anchor="URI">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="I-D.bellis-dnsop-http-record">
          <front>
            <title>A DNS Resource Record for HTTP</title>
            <author fullname="Ray Bellis">
              <organization>Internet Systems Consortium, Inc.</organization>
            </author>
            <date day="3" month="November" year="2018"/>
            <abstract>
              <t>   This document specifies an "HTTP" resource record type for the DNS to
   facilitate the lookup of the server hostname of HTTP(s) URIs.  It is
   intended to replace the use of CNAME records for this purpose, and in
   the process provides a solution for the inability of the DNS to allow
   a CNAME to be placed at the apex of a domain name.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bellis-dnsop-http-record-00"/>
        </reference>
        <reference anchor="I-D.ietf-dnsop-aname">
          <front>
            <title>Address-specific DNS aliases (ANAME)</title>
            <author fullname="Tony Finch">
              <organization>University of Cambridge</organization>
            </author>
            <author fullname="Evan Hunt">
              <organization>ISC</organization>
            </author>
            <author fullname="Peter van Dijk">
              <organization>PowerDNS</organization>
            </author>
            <author fullname="Anthony Eden">
              <organization>DNSimple</organization>
            </author>
            <author fullname="Matthijs Mekking">
              <organization>ISC</organization>
            </author>
            <date day="8" month="July" year="2019"/>
            <abstract>
              <t>   This document defines the "ANAME" DNS RR type, to provide similar
   functionality to CNAME, but only for address queries.  Unlike CNAME,
   an ANAME can coexist with other record types.  The ANAME RR allows
   zone owners to make an apex domain name into an alias in a standards
   compliant manner.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-aname-04"/>
        </reference>
      </references>
    </references>
    <section anchor="decoding" numbered="true" toc="default">
      <name>Decoding text in zone files</name>
      <t>DNS zone files are capable of representing arbitrary octet sequences in
basic ASCII text, using various delimiters and encodings.  The algorithm
for decoding these character-strings is defined in <xref section="5.1" sectionFormat="of" target="RFC1035" format="default"/>.
Here we summarize the allowed input to that algorithm, using ABNF:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
; non-special is VCHAR minus DQUOTE, ";", "(", ")", and "\".
non-special = %x21 / %x23-27 / %x2A-3A / %x3C-5B / %x5D-7E
; non-digit is VCHAR minus DIGIT
non-digit   = %x21-2F / %x3A-7E
; dec-octet is a number 0-255 as a three-digit decimal number.
dec-octet   = ( "0" / "1" ) 2DIGIT /
              "2" ( ( %x30-34 DIGIT ) / ( "5" %x30-35 ) )
escaped     = "\" ( non-digit / dec-octet )
contiguous  = 1*( non-special / escaped )
quoted      = DQUOTE *( contiguous / ( ["\"] WSP ) ) DQUOTE
char-string = contiguous / quoted
]]></artwork>
      <t>The decoding algorithm allows <tt>char-string</tt> to represent any <tt>*OCTET</tt>.
In this document, this algorithm is referred to as "character-string decoding".
The algorithm is the same as used by <tt>&lt;character-string&gt;</tt> in RFC 1035,
although the output length in this document is not limited to 255 octets.</t>
      <section anchor="value-list" numbered="true" toc="default">
        <name>Decoding a comma-separated list</name>
        <t>In order to represent lists of items in zone files, this specification uses
comma-separated lists.  When the allowed items in the list cannot contain ","
or "\", this is trivial.  (For simplicity, empty items are not allowed.)
A value-list parser that splits on "," and prohibits items containing "\"
is sufficient to comply with all requirements in this document.</t>
        <t>For implementations that allow "," and "\" in item values, the following
escaping syntax applies:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
item            = 1*OCTET
; item-allowed is OCTET minus "," and "\".
item-allowed    = %x00-2B / %x2D-5B / %x5D-FF
escaped-item    = 1*(item-allowed / "\," / "\\")
comma-separated = [escaped-item *("," escaped-item)]
]]></artwork>
        <t>Decoding of value-lists happens after character-string decoding.
For example, consider these <tt>char-string</tt> SvcParamValues:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
"part1,part2,part3\\,part4\\\\"
part1\,\p\a\r\t2\044part3\092,part4\092\\
]]></artwork>
        <t>These inputs are equivalent: character-string decoding either of them would
produce the same <tt>value</tt>:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
part1,part2,part3\,part4\\
]]></artwork>
        <t>Applying comma-separated list decoding to this <tt>value</tt> would produce a list
of three <tt>item</tt>s:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
part1
part2
part3,part4\
]]></artwork>
      </section>
    </section>
    <section anchor="http-mapping-summary" numbered="true" toc="default">
      <name>HTTP Mapping Summary</name>
      <t>This table serves as a non-normative summary of the HTTP mapping for SVCB
(<xref target="https" format="default"/>).  Future protocol mappings may provide a similar summary table.</t>
      <table align="center">
        <thead>
          <tr>
            <th align="left"> </th>
            <th align="left"> </th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">
              <strong>Mapped scheme</strong></td>
            <td align="left">"https"</td>
          </tr>
          <tr>
            <td align="left">
              <strong>Other affected schemes</strong></td>
            <td align="left">"http", "wss", "ws", (other HTTP-based)</td>
          </tr>
          <tr>
            <td align="left">
              <strong>RR type</strong></td>
            <td align="left">HTTPS (65)</td>
          </tr>
          <tr>
            <td align="left">
              <strong>Name prefix</strong></td>
            <td align="left">None for port 443, else <tt>_$PORT._https</tt></td>
          </tr>
          <tr>
            <td align="left">
              <strong>Automatically Mandatory Keys</strong></td>
            <td align="left">
              <tt>port</tt>, <tt>no-default-alpn</tt></td>
          </tr>
          <tr>
            <td align="left">
              <strong>SvcParam defaults</strong></td>
            <td align="left">
              <tt>alpn</tt>: ["http/1.1"]</td>
          </tr>
          <tr>
            <td align="left">
              <strong>Special behaviors</strong></td>
            <td align="left">HTTP to HTTPS upgrade</td>
          </tr>
          <tr>
            <td align="left">
              <strong>Keys that records must include</strong></td>
            <td align="left">None</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="comparison-with-alternatives" numbered="true" toc="default">
      <name>Comparison with alternatives</name>
      <t>The SVCB and HTTPS RR types closely resemble,
and are inspired by, some existing
record types and proposals.  A complaint with all of the alternatives
is that web clients have seemed unenthusiastic about implementing
them.  The hope here is that by providing an extensible solution that
solves multiple problems we will overcome the inertia and have a path
to achieve client implementation.</t>
      <section anchor="differences-from-the-srv-rr-type" numbered="true" toc="default">
        <name>Differences from the SRV RR type</name>
        <t>An SRV record <xref target="SRV" format="default"/> can perform a similar function to the SVCB record,
informing a client to look in a different location for a service.
However, there are several differences:</t>
        <ul spacing="normal">
          <li>SRV records are typically mandatory, whereas SVCB is intended to be optional
when used with pre-existing protocols.</li>
          <li>SRV records cannot instruct the client to switch or upgrade
protocols, whereas SVCB can signal such an upgrade (e.g. to
HTTP/2).</li>
          <li>SRV records are not extensible, whereas SVCB and HTTPS RRs
can be extended with new parameters.</li>
          <li>SRV records specify a "weight" for unbalanced randomized load-balancing.
SVCB only supports balanced randomized load-balancing, although weights
could be added via a future SvcParam.</li>
        </ul>
      </section>
      <section anchor="differences-from-the-proposed-http-record" numbered="true" toc="default">
        <name>Differences from the proposed HTTP record</name>
        <t>Unlike <xref target="I-D.bellis-dnsop-http-record" format="default"/>, this approach is
extensible to cover Alt-Svc and Encrypted ClientHello use-cases.  Like that
proposal, this addresses the zone apex CNAME challenge.</t>
        <t>Like that proposal, it remains necessary to continue to include
address records at the zone apex for legacy clients.</t>
      </section>
      <section anchor="differences-from-the-proposed-aname-record" numbered="true" toc="default">
        <name>Differences from the proposed ANAME record</name>
        <t>Unlike <xref target="I-D.ietf-dnsop-aname" format="default"/>, this approach is extensible to
cover Alt-Svc and ECH use-cases.  This approach also does not
require any changes or special handling on either authoritative or
primary servers, beyond optionally returning in-bailiwick additional records.</t>
        <t>Like that proposal, this addresses the zone apex CNAME challenge
for clients that implement this.</t>
        <t>However, with this SVCB proposal, it remains necessary to continue
to include address records at the zone apex for legacy clients.
If deployment of this standard is successful, the number of legacy clients
will fall over time.  As the number of legacy clients declines, the operational
effort required to serve these users without the benefit of SVCB indirection
should fall.  Server operators can easily observe how much traffic reaches this
legacy endpoint, and may remove the apex's address records if the observed legacy
traffic has fallen to negligible levels.</t>
      </section>
      <section anchor="comparison-with-separate-rr-types-for-aliasmode-and-servicemode" numbered="true" toc="default">
        <name>Comparison with separate RR types for AliasMode and ServiceMode</name>
        <t>Abstractly, functions of AliasMode and ServiceMode are independent,
so it might be tempting to specify them as separate RR types.  However,
this would result in a serious performance impairment, because clients
cannot rely on their recursive resolver to follow SVCB aliases (unlike
CNAME).  Thus, clients would have to issue queries for both RR types
in parallel, potentially at each step of the alias chain.  Recursive
resolvers that implement the specification would, upon receipt of a
ServiceMode query, emit both a ServiceMode and an AliasMode query to
the authoritative.  Thus, splitting the RR type would double, or in
some cases triple, the load on clients and servers, and would not
reduce implementation complexity.</t>
      </section>
    </section>
    <section anchor="test-vectors" numbered="true" toc="default">
      <name>Test vectors</name>
      <t>These test vectors only contain the RDATA portion of SVCB/HTTPS records in
presentation format, generic format (<xref target="RFC3597" format="default"/>) 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>
      <section anchor="aliasmode" numbered="true" toc="default">
        <name>AliasMode</name>
        <figure>
          <name>AliasMode</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   HTTPS   0 foo.example.com.

\# 19 (
00 00                                              ; priority
03 66 6f 6f 07 65 78 61 6d 70 6c 65 03 63 6f 6d 00 ; target
)

\x00\x00                                           # priority
\x03foo\x07example\x03com\x00                      # target
]]></artwork>
        </figure>
      </section>
      <section anchor="servicemode-1" numbered="true" toc="default">
        <name>ServiceMode</name>
        <figure>
          <name>TargetName is "."</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 .

\# 3 (
00 01      ; priority
00         ; target (root label)
)

\x00\x01   # priority
\x00       # target, root label
]]></artwork>
        </figure>
        <figure>
          <name>Specifies a port</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   16 foo.example.com. port=53

\# 25 (
00 10                                              ; priority
03 66 6f 6f 07 65 78 61 6d 70 6c 65 03 63 6f 6d 00 ; target
00 03                                              ; key 3
00 02                                              ; length 2
00 35                                              ; value
)

\x00\x10                                           # priority
\x03foo\x07example\x03com\x00                      # target
\x00\x03                                           # key 3
\x00\x02                                           # length: 2 bytes
\x00\x35                                           # value
]]></artwork>
        </figure>
        <figure>
          <name>A generic key and unquoted value</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. key667=hello

\# 28 (
00 01                                              ; priority
03 66 6f 6f 07 65 78 61 6d 70 6c 65 03 63 6f 6d 00 ; target
02 9b                                              ; key 667
00 05                                              ; length 5
68 65 6c 6c 6f                                     ; value
)

\x00\x01                                           # priority
\x03foo\x07example\x03com\x00                      # target
\x02\x9b                                           # key 667
\x00\x05                                           # length 5
hello                                              # value
]]></artwork>
        </figure>
        <figure>
          <name>A generic key and quoted value with a decimal escape</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. key667="hello\210qoo"

\# 32 (
00 01                                              ; priority
03 66 6f 6f 07 65 78 61 6d 70 6c 65 03 63 6f 6d 00 ; target
02 9b                                              ; key 667
00 09                                              ; length 9
68 65 6c 6c 6f d2 71 6f 6f                         ; value
)

\x00\x01                                           # priority
\x03foo\x07example\x03com\x00                      # target
\x02\x9b                                           # key 667
\x00\x09                                           # length 9
hello\xd2qoo                                       # value
]]></artwork>
        </figure>
        <figure>
          <name>Two quoted IPv6 hints</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. (
                      ipv6hint="2001:db8::1,2001:db8::53:1"
                      )

\# 55 (
00 01                                              ; priority
03 66 6f 6f 07 65 78 61 6d 70 6c 65 03 63 6f 6d 00 ; target
00 06                                              ; key 6
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\x01                                           # priority
\x03foo\x07example\x03com\x00                      # target
\x00\x06                                           # key 6
\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>An IPv6 hint in IPv4-mapped format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 example.com. ipv6hint="::ffff:198.51.100.100"

\# 35 (
00 01                                              ; priority
07 65 78 61 6d 70 6c 65 03 63 6f 6d 00             ; target
00 06                                              ; key 6
00 10                                              ; length 16
00 00 00 00 00 00 00 00 00 00 ff ff c6 33 64 64    ; address
)

\x00\x01                                           # priority
\x07example\x03com\x00                             # target
\x00\x06                                           # key 6
\x00\x10                                           # length 16
\x00\x00\x00\x00\x00\x00\x00\x00
     \x00\x00\xff\xff\xc6\x33\x64\x64              # address
]]></artwork>
        </figure>
        <figure>
          <name>SvcParamKey ordering is arbitrary in presentation format but sorted in wire format</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   16 foo.example.org. (
                      alpn=h2,h3-19 mandatory=ipv4hint,alpn
                      ipv4hint=192.0.2.1
                      )

\# 48 (
00 10                                              ; priority
03 66 6f 6f 07 65 78 61 6d 70 6c 65 03 6f 72 67 00 ; target
00 00                                              ; key 0
00 04                                              ; param length 4
00 01                                              ; value: key 1
00 04                                              ; value: key 4
00 01                                              ; key 1
00 09                                              ; param length 9
02                                                 ; alpn length 2
68 32                                              ; alpn value
05                                                 ; alpn length 5
68 33 2d 31 39                                     ; alpn value
00 04                                              ; key 4
00 04                                              ; param length 4
c0 00 02 01                                        ; param value
)

\x00\x10                                           # priority
\x03foo\x07example\x03org\x00                      # target
\x00\x00                                           # key 0
\x00\x04                                           # param length 4
\x00\x01                                           # value: key 1
\x00\x04                                           # value: key 4
\x00\x01                                           # key 1
\x00\x09                                           # param length 9
\x02                                               # alpn length 2
h2                                                 # alpn value
\x05                                               # alpn length 5
h3-19                                              # alpn value
\x00\x04                                           # key 4
\x00\x04                                           # param length 4
\xc0\x00\x02\x01                                   # param value
]]></artwork>
        </figure>
        <figure>
          <name>An alpn value with an escaped comma and an escaped backslash in two presentation formats</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   16 foo.example.org. alpn="f\\\\oo\\,bar,h2"
example.com.   SVCB   16 foo.example.org. alpn=f\\\092oo\092,bar,h2

\# 35 (
00 10                                              ; priority
03 66 6f 6f 07 65 78 61 6d 70 6c 65 03 6f 72 67 00 ; target
00 01                                              ; key 1
00 0c                                              ; param length 12
08                                                 ; alpn length 8
66 5c 6f 6f 2c 62 61 72                            ; alpn value
02                                                 ; alpn length 2
68 32                                              ; alpn value
)

\x00\x10                                           # priority
\x03foo\x07example\x03org\x00                      # target
\x00\x01                                           # key 1
\x00\x0c                                           # param length 12
\x08                                               # alpn length 8
f\oo,bar                                           # alpn value
\x02                                               # alpn length 2
h2                                                 # alpn value
]]></artwork>
        </figure>
      </section>
      <section anchor="failure-cases" numbered="true" toc="default">
        <name>Failure cases</name>
        <t>This subsection contains test vectors which are not
compliant with this document. The various reasons for non-compliance
are explained with each example.</t>
        <figure>
          <name>Multiple instances of the same SvcParamKey</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. (
                       key123=abc key123=def
                       )
]]></artwork>
        </figure>
        <figure>
          <name>Missing SvcParamValues that must be nonempty</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. mandatory
example.com.   SVCB   1 foo.example.com. alpn
example.com.   SVCB   1 foo.example.com. port
example.com.   SVCB   1 foo.example.com. ipv4hint
example.com.   SVCB   1 foo.example.com. ipv6hint
]]></artwork>
        </figure>
        <figure>
          <name>The "no-default-alpn" SvcParamKey value must be empty</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. no-default-alpn=abc
]]></artwork>
        </figure>
        <figure>
          <name>A mandatory SvcParam is missing</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. mandatory=key123
]]></artwork>
        </figure>
        <figure>
          <name>The "mandatory" SvcParamKey must not be included in the mandatory list</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. mandatory=mandatory
]]></artwork>
        </figure>
        <figure>
          <name>Multiple instances of the same SvcParamKey in the mandatory list</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
example.com.   SVCB   1 foo.example.com. (
                      mandatory=key123,key123 key123=abc
                      )
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="change-history" numbered="true" toc="default">
      <name>Change history</name>
      <t>(This section to be removed by the RFC editor.)</t>
      <ul spacing="normal">
        <li>
          <t>draft-ietf-dnsop-svcb-https-08
          </t>
          <ul spacing="normal">
            <li>
              <t>Extensive structural and editorial adjustments based on area reviews,
including:
              </t>
              <ul spacing="normal">
                <li>A new section on SVCB-compatible record types</li>
                <li>Reorganized description of client behavior</li>
                <li>Test vectors are now in titled figures</li>
                <li>Adjusted mapping summary</li>
                <li>Improve description of rules for resolver handling of invalid
SvcParamValues.</li>
              </ul>
            </li>
            <li>New text on cross-transport fallback (e.g. QUIC vs. TCP)</li>
            <li>Improved explanation of use with domain-oriented transport proxies</li>
            <li>HTTP terminology adjusted to match draft-ietf-httpbis-semantics</li>
            <li>Improved and corrected IANA instructions</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-https-07
          </t>
          <ul spacing="normal">
            <li>Editorial improvements following AD review.</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-https-06
          </t>
          <ul spacing="normal">
            <li>Add requirements for HTTPS origins that also use Alt-Svc</li>
            <li>Remove requirement for comma-escaping related to unusual ALPN values</li>
            <li>Allow resolvers to reject invalid SvcParamValues, with additional
guidance</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-https-05
          </t>
          <ul spacing="normal">
            <li>Specify interaction with EDNS Client Subnet and Additional section caching</li>
            <li>Rename "echconfig" to "ech"</li>
            <li>Add a suite of test vectors (both valid and invalid) and more examples</li>
            <li>Clarify requirements for resolvers' (non-)use of SvcParams</li>
            <li>Clarify guidance regarding default ALPN values</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-https-04
          </t>
          <ul spacing="normal">
            <li>Simplify the IANA instructions (pure First Come First Served)</li>
            <li>Recommend against publishing chains of &gt;8 aliases</li>
            <li>Clarify requirements for using SVCB with a transport proxy</li>
            <li>Adjust guidance for Port Prefix Naming</li>
            <li>Minor editorial updates</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-https-03
          </t>
          <ul spacing="normal">
            <li>Simplified escaping of comma-separated values</li>
            <li>Reorganized client requirements</li>
            <li>Added a warning about port filtering for cross-protocol attacks</li>
            <li>Clarified self-consistency rules for SvcParams</li>
            <li>Added a non-normative mapping summary table for HTTPS</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-https-02
          </t>
          <ul spacing="normal">
            <li>Added a Privacy Considerations section</li>
            <li>Adjusted resolution fallback description</li>
            <li>Clarified status of SvcParams in AliasMode</li>
            <li>Improved advice on zone structuring and use with Alt-Svc</li>
            <li>Improved examples, including a new Multi-CDN example</li>
            <li>Reorganized text on value-list parsing and SvcPriority</li>
            <li>Improved phrasing and other editorial improvements throughout</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-https-01
          </t>
          <ul spacing="normal">
            <li>Added a "mandatory" SvcParamKey</li>
            <li>Added the ability to indicate that a service does not exist</li>
            <li>Adjusted resolution and ALPN algorithms</li>
            <li>Major terminology revisions for "origin" and CamelCase names</li>
            <li>Revised ABNF</li>
            <li>Include allocated RR type numbers</li>
            <li>Various corrections, explanations, and recommendations</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-https-00
          </t>
          <ul spacing="normal">
            <li>Rename HTTPSSVC RR to HTTPS RR</li>
            <li>Rename "an SVCB" to "a SVCB"</li>
            <li>Removed "design considerations and open issues" section and some other "to be removed" text</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-httpssvc-03
          </t>
          <ul spacing="normal">
            <li>Revised chain length limit requirements</li>
            <li>Revised IANA registry rules for SvcParamKeys</li>
            <li>Require HTTPS clients to implement SNI</li>
            <li>Update terminology for Encrypted ClientHello</li>
            <li>Clarifications: non-default ports, transport proxies, HSTS procedure, WebSocket behavior, wire format, IP hints, inner/outer ClientHello with ECH</li>
            <li>Various textual and ABNF corrections</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-httpssvc-02
          </t>
          <ul spacing="normal">
            <li>All changes to Alt-Svc have been removed</li>
            <li>Expanded and reorganized examples</li>
            <li>Priority zero is now the definition of AliasForm</li>
            <li>Repeated SvcParamKeys are no longer allowed</li>
            <li>The "=" sign may be omitted in a key=value pair if the value is also empty</li>
            <li>In the wire format, SvcParamKeys must be in sorted order</li>
            <li>New text regarding how to handle resolution timeouts</li>
            <li>Expanded description of recursive resolver behavior</li>
            <li>Much more precise description of the intended ALPN behavior</li>
            <li>Match the HSTS specification's language on HTTPS enforcement</li>
            <li>Removed 'esniconfig=""' mechanism and simplified ESNI connection logic</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-httpssvc-01
          </t>
          <ul spacing="normal">
            <li>Reduce the emphasis on conversion between HTTPSSVC and Alt-Svc</li>
            <li>Make the "untrusted channel" concept more precise.</li>
            <li>Make SvcFieldPriority = 0 the definition of AliasForm, instead of a requirement.</li>
          </ul>
        </li>
        <li>
          <t>draft-ietf-dnsop-svcb-httpssvc-00
          </t>
          <ul spacing="normal">
            <li>Document an optimization for optimistic pre-connection. (Chris Wood)</li>
            <li>Relax IP hint handling requirements. (Eric Rescorla)</li>
          </ul>
        </li>
        <li>
          <t>draft-nygren-dnsop-svcb-httpssvc-00
          </t>
          <ul spacing="normal">
            <li>Generalize to an SVCB record, with special-case
handling for Alt-Svc and HTTPS separated out
to dedicated sections.</li>
            <li>Split out a separate HTTPSSVC record for
the HTTPS use-case.</li>
            <li>Remove the explicit SvcRecordType=0/1 and instead
make the AliasForm vs ServiceForm be implicit.
This was based on feedback recommending against
subtyping RR type.</li>
            <li>Remove one optimization.</li>
          </ul>
        </li>
        <li>
          <t>draft-nygren-httpbis-httpssvc-03
          </t>
          <ul spacing="normal">
            <li>Change redirect type for HSTS-style behavior
from 302 to 307 to reduce ambiguities.</li>
          </ul>
        </li>
        <li>
          <t>draft-nygren-httpbis-httpssvc-02
          </t>
          <ul spacing="normal">
            <li>Remove the redundant length fields from the wire format.</li>
            <li>Define a SvcDomainName of "." for SvcRecordType=1
as being the HTTPSSVC RRNAME.</li>
            <li>Replace "hq" with "h3".</li>
          </ul>
        </li>
        <li>
          <t>draft-nygren-httpbis-httpssvc-01
          </t>
          <ul spacing="normal">
            <li>Fixes of record name.  Replace references to "HTTPSVC" with "HTTPSSVC".</li>
          </ul>
        </li>
        <li>
          <t>draft-nygren-httpbis-httpssvc-00
          </t>
          <ul spacing="normal">
            <li>Initial version</li>
          </ul>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAP7oZWEAA9y9e3fbRrYn+n99Clz6zIrkIWmJethWxnNakeVEtx3bLSnJ
nNvuFYMkKOGYBNgAKVlx+3z2u59VuwDQttK5c3uNVh4SCdRz1679/O3BYOBW
+WqeHSUXWXWTT7JknBfTvLhK0mKaLNMqXWSrrErqZTbJZ/kkXeVlkdzkabK6
zpLnry6SLfzPxc8n39EbP1xevrlIzs/rbZeOx1V2c9TxXTIrK3zXTctJAR0c
JdMqna0GebaaDaZFXS4H9c1kPLherZb1YOeJm6YreOjj8+PL008OxpBdldXd
UVKvps7ly+ooWVXrejXa2Xm6M3JplaVHyfdZkVXp3N2W1furqlwvj7DH12+S
X+ADnN/3+KF7n93BE9Oj5KyAaRbZavAch+JcvYIh/5rOywJ6vstqt8yPkr+u
ykk/qctqVWWzGn67W+Avf3MuXa+uy+rIJQOXwE9e1EfJd8PkYnJ9m1ar3+hD
nup3WRF/XFZXaZH/RisL4y7Lq3lGX2SLNJ8fJWP4fz350xV9MZyUi6iTH4fJ
d3l9XS5NFz/m7zP7KfRwlBy/T6G95DKbXBflvLzKYU6ml8WYnv9TdpP9fZ3N
yvVwnEUdnQ6TV3dXVVaYjk6r/L399Gs6yuCd/447/aeCXhzCS84VZbWAFbjJ
jmBHi1n4K0lenF6e/HBETQip9l5kq8l18jK/wY28wJ1Kq2mPHmFS+TG9S0Y7
ox1+K62ushW8RvR09OjRDF8fIkkPb6/T1e0VjuFRzw0GgyQd16sqnQAFXF7n
dQIUul5kxUoPQFYT4feQqHtE1T0i6x6dhSqry3UFh6jKJkBVydb5+bZb3S3x
rTKZpZN8nq9ggNTGvCzfr5dJOUv8hOFoFVk2zab4+CKFXZyURZFN8JvawWdA
oEjQSc2HFUlwDSuR8pHCkcAe5FewYcOEDx6PpHbpfF7eJqm+iR2Ms2RZlTc5
9jerykWyWM9X+XKeJekcDwPtQJIV02WZF6u677IU+rrNV9hhXU5ymInhEXWy
pYOBFSzqJRwT7ADOTDl3MJFZfrWueJa4cHD0eNhZManulivcS1yXy5cXyck8
h0X/IYNBb8NMLq+zOxhUXbqsSMc0wDyt8QVYvXSZfYB9AuoqYD1ur3MYA+xc
UULvZV3n+DwN+uTV8Y+nQ9jXzLMifDBNbtIq53FBc7RqOKx1Le/Rsn78+H/h
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
WunGS1mEF/kbxlHD+YODIsohCA2wy1NSu7J0ilQnkjufq7xWDRBIHQ4oXIag
DPI1CKz/9Q3y0Oy2g/vDm6BD1SJqjeG0zlj07hB08sKltCHe9gUHGaisApa2
ddxa2L7I3PO5Y4mnTlAenDMtrqxRQ+7fa+CgtTP8clJOSYHh25IPJGoHA9DU
QBTwlozh9meve3/V6+VMvA4vJGZHdBhZGCedzGE/5v5tCTdBD42uchJdY6nc
C+Ms5cNKvZmnE9x0snrguzVfmXyhqkzGV29t7l5HRkAW8ERTjTrnI6XNIOe9
2yAEeeVolmfzKXMT4u9LZj1idNBvK2Qou8Pk4mbypsqJux3RA0v5i8mKaJCN
iDA+Jg/Ud3BZazxaPEKYFSwzCS51UMpRmD3mT7G1HT058IzfPLzPkq3nQpp4
GIDOYQyfPsH2j4bJJVlNX5Gd95KMLrjivMPQZpbTBuP6yVVHzydbqJlDy76f
7aTUx9qsiR63tAFHbI/XBsUD4Du6ittAd8kctBbs3AprOQkQesZU4u3sLEVB
wEwMWkcjgfACOwzeRJwhqKLAeK7gjOKy4vutJQO5qFgR1aAJ0J2UcoXBUNgo
PFlXdH+LuFeh+QekJDHWMMcACitWsuWOHlwTHfICAcn1k2M+sdYOwmYmufth
uItErkVz810ExY+pHSWCGu1JJ3IaZC/Xdfi2dnL7TaVFKysrf+N+g1jWnima
LXSacMRBjkmru43TScK8UQFGtTMWYtkWVZPml65WKJnmxWCcgth4m0/eh4ax
UW6eZBqnYpHMpWN1WBrnuYsSQQddT/5ZEbMw4uSeTBs3QRA2QVwEPZuN0NN0
lRIPnYs26SnWUKv7akmeZaG+EePdV4vxnQKKWOdiKagfXy0qsy1QjpZZeyEB
/j6erwawLA6ue/gVfsMb+vGTvScg4eA40Lp2m+Z0OHiV0fwq5jh7DeQrMclv
ecmcrFNknNp2YpYL1j4eSjBLmhnyBaS9KxnmZGi8yVRmIJmg+gYJH3YMCR82
CMbpTfeo2JDOkZPuVXrdmu0hIO9ewwqShPDG+01nm4x9TZOIGB5meUEX6fLL
LXhx0JFpFcgTJZVscj2gl4kXwVgus2qRkyPuzrnXa6Cd8AHZ+9OaTfzkmigX
C/iVDFksu3myliMKbxC/hBtUjNRBfU+A5mGBZrlau346P4Nm0IDzzovy7/gm
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
xVZ/fQEA

-->

</rfc>
