<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.4 (Ruby 2.6.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-radext-radiusv11-09" category="exp" submissionType="IETF" updates="5176, 6614, 7360" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.13.0 -->
  <front>
    <title abbrev="RADIUSv11">RADIUS ALPN and removing MD5</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-radext-radiusv11-09"/>
    <author initials="A." surname="DeKok" fullname="Alan DeKok">
      <organization>FreeRADIUS</organization>
      <address>
        <email>aland@freeradius.org</email>
      </address>
    </author>
    <date year="2024" month="June" day="27"/>
    <area>Internet</area>
    <workgroup>RADEXT Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 69?>

<t>This document defines Application-Layer Protocol Negotiation Extensions for use with RADIUS/TLS and RADIUS/DTLS.  These extensions permit the negotiation of an additional application protocol for RADIUS over (D)TLS.  No changes are made to RADIUS/UDP or RADIUS/TCP.  The extensions allow the negotiation of a transport profile where the RADIUS shared secret is no longer used, and all MD5-based packet signing and attribute obfuscation methods are removed.</t>
      <t>This document updates RFC5176, RFC6614, and RFC 7360.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-radext-radiusv11/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        RADEXT Working Group mailing list (<eref target="mailto:radext@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/radext/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/radext/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/radext-wg/draft-ietf-radext-radiusv11.git"/>.</t>
    </note>
  </front>
  <middle>
    <?line 75?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The RADIUS protocol <xref target="RFC2865"/> uses MD5 <xref target="RFC1321"/> to sign packets, and to obfuscate certain attributes.  Additional transport protocols were defined for TCP (<xref target="RFC6613"/>), TLS (<xref target="RFC6614"/>), and DTLS (<xref target="RFC7360"/>).  However, those transport protocols still relied on MD5.  That is, the shared secret was used along with MD5, even when the RADIUS packets were being transported in (D)TLS.  At the time, the consensus of the RADEXT working group was that this continued use of MD5 was acceptable.  TLS was seen as a simple "wrapper" around RADIUS, while using a fixed shared secret.  The intention at the time was to allow the use of (D)TLS while making essentially no changes to the basic RADIUS encoding, decoding, signing, and packet validation.</t>
      <t>Issues of MD5 security have been known for decades, most most notably in <xref target="RFC6151"/>, and in <xref section="3" sectionFormat="comma" target="RFC6421"/>, among others.  The reliance on MD5 for security makes it impossible to use RADIUS in a FIPS-140 compliant system, as FIPS-140 forbids systems from relying on insecure cryptographic methods for security.  In addition, the use of MD5 in RADIUS/TLS and RADIUS/DLTS adds no security or privacy over that provided by TLS.</t>
      <t>This document defines an Application-Layer Protocol Negotiation (ALPN) <xref target="RFC7301"/> extension for RADIUS over (D)TLS which removes the need to use MD5 for (D)TLS.  We make no changes to UDP or TCP transport.  This extension can best be understood as a transport profile for RADIUS over TLS, rather than a whole-sale revision of the RADIUS protocol.</t>
      <t>Systems which implement this transport profile can be more easily verified to be FIPS-140 compliant.  A preliminary implementation has shown that only minor code changes are required to support RADIUS/1.1 on top of an existing RADIUS/TLS server implementation, which are:</t>
      <ul spacing="normal">
        <li>A method to set the list of supported ALPN protocols before the TLS handshake starts</li>
        <li>After the TLS handshake has completed, a method to query if ALPN has chosen a protocol, and if yes, which protocol was chosen.</li>
        <li>Changes to the packet encoder and decoder, so that the individual packets are not signed, and no attribute is encoded with the historic obfuscation methods.</li>
      </ul>
      <t>That is, the bulk of the ALPN protocol can be left to the underlying TLS implementation.  This document discusses the ALPN exchange in detail in order to give simplified descriptions for the reader, and so that the reader does not have to read or understand all of <xref target="RFC7301"/>.</t>
      <t>The detailed list of changes from historic TLS-based transports to RADIUS/1.1 is as follows:</t>
      <ul spacing="normal">
        <li>ALPN is used for negotiation of this extension,</li>
        <li>TLS 1.3 or later is required,</li>
        <li>All uses of the RADIUS shared secret have been removed,</li>
        <li>The now-unused Request and Response Authenticator fields have been repurposed to carry an opaque Token which identifies requests and responses,</li>
        <li>The functionality of the Identifier field has been replaced by the Token field, and the space previously taken by the Identifier field is now reserved and unused,</li>
        <li>The Message-Authenticator attribute (<xref section="3.2" sectionFormat="comma" target="RFC3579"/>) is not sent in any packet, and if received is ignored,</li>
        <li>Attributes such as User-Password, Tunnel-Password, and MS-MPPE keys are sent encoded as "text" (<xref section="3.4" sectionFormat="comma" target="RFC8044"/>) or "octets" (<xref section="3.5" sectionFormat="comma" target="RFC8044"/>), without the previous MD5-based obfuscation.  This obfuscation is no longer necessary, as the data is secured and kept private through the use of TLS,</li>
        <li>The conclusion of the efforts stemming from <xref target="RFC6421"/> is that crypto-agility in RADIUS is best done via a TLS wrapper, and not by extending the RADIUS protocol.</li>
        <li>
          <xref target="RFC5176"/> is updated to allow the Error-Cause attribute to appear in Access-Reject packets.</li>
      </ul>
      <t>The following items are left unchanged from traditional TLS-based transports for RADIUS:</t>
      <ul spacing="normal">
        <li>The RADIUS packet header is the same size, and the Code and Length fields (<xref section="3" sectionFormat="comma" target="RFC2865"/>) have the same meaning as before,</li>
        <li>The default 4K packet size is unchanged, although <xref target="RFC7930"/> can still be leveraged to use larger packets,</li>
        <li>All attributes which have simple encodings (that is, attributes which do not use MD5 obfuscation) have the same encoding and meaning as before,</li>
        <li>As this extension is a transport profile for one "hop" (client to server connection), it does not impact any other connection used by a client or server.  The only systems which are aware that this transport profile is in use are the client and server who have negotiated the use of this extension on a particular shared connection,</li>
        <li>This extension uses the same ports (2083/tcp and 2083/udp) which are defined for RADIUS/TLS <xref target="RFC6614"/> and RADIUS/DTLS <xref target="RFC7360"/>.</li>
      </ul>
      <t>A major benefit of this extension is that a home server which implements it can also be more easily verified for FIPS-140 compliance.  That is, a home server can remove all uses of MD4 and MD5, which means that those algorithms are provably not used for security purposes.  In that case, however, the home server will not support CHAP, MS-CHAP, or any authentication method which uses MD4 or MD5.  The choice of which authentication method to accept is always left to the home server.  This specification does not change any authentication method carried in RADIUS, and does not mandate (or forbid) the use of any authentication method for any system.</t>
      <t>As for proxies, there was never a requirement that proxies implement CHAP or MS-CHAP authentication.  So far as a proxy is concerned, attributes relating to CHAP and MS-CHAP are simply opaque data that is transported unchanged to the next hop.  It is therefore possible for a FIPS-140 compliant proxy to transport authentication methods which depend on MD4 or MD5, so long as that data is forwarded to a home server which supports those methods.</t>
      <t>We reiterate that the decision to support (or not) any authentication method is entirely site local, and is not a requirement of this specification.  The contents or meaning of any RADIUS attribute other than Message-Authenticator (and similar attributes) are not modified.  The only change to the Message-Authenticator attribute is that it is no longer used in RADIUS/1.1.</t>
      <t>Unless otherwise described in this document, all RADIUS requirements apply to this extension.  That is, this specification defines a transport profile for RADIUS.  It is not an entirely new protocol, and it defines only minor changes to the existing RADIUS protocol.  It does not change the RADIUS packet format, attribute format, etc.  This specification is compatible with all RADIUS attributes, past, present, and future.</t>
      <t>This specification is compatible with existing implementations of RADIUS/TLS and RADIUS/DTLS.  Systems which implement this standard can fall back to historic RADIUS/TLS if no ALPN signaling is performed, and the local configuration permits such fallback.</t>
      <t>This specification is compatible with all existing RADIUS specifications.  There is no need for any RADIUS specification to mention this transport profile by name, or to make provisions for this specification.  This document defines how to transform RADIUS into RADIUS/1.1, and no further discussion of that transformation is necessary.</t>
      <t>We note that this document makes no changes to previous RADIUS specifications.  Existing RADIUS implementations can continue to be used without modification.  Where previous specifications are explicitly mentioned and updated, those updates or changes apply only when the RADIUS/1.1 transport profile is being used.</t>
      <t>In short, when negotiated on a connection, the RADIUS/1.1 transport profile permits implementations to avoid MD5 when signing packets, or when obfuscating certain attributes.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.
<?line -6?>
      </t>
      <t>The following list describes the terminology and abbreviations which are used in this document.</t>
      <ul spacing="normal">
        <li>ALPN</li>
      </ul>
      <ul empty="true">
        <li>
          <t>Application-Layer Protocol Negotiation, as defined in <xref target="RFC7301"/>.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>The Remote Authentication Dial-In User Service protocol, as defined in <xref target="RFC2865"/>, <xref target="RFC2866"/>, and <xref target="RFC5176"/> among others.</t>
          <t>While this protocol can be viewed as "RADIUS/1.0", for simplicity and historical compatibility, we keep the name "RADIUS".</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/UDP</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over the User Datagram Protocol <xref target="RFC2865"/>, <xref target="RFC2866"/>, <xref target="RFC5176"/>, among others.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/TCP</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over the Transmission Control Protocol <xref target="RFC6613"/>.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/TLS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over the Transport Layer Security protocol <xref target="RFC6614"/>.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/DTLS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over the Datagram Transport Layer Security protocol  <xref target="RFC7360"/>.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS over TLS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>Any RADIUS packets transported over TLS or DTLS.  This terminology is used instead of alternatives such as "RADIUS/(D)TLS", or "either RADIUS/TLS or RADIUS/DTLS".  This term is generally used when referring to TLS-layer requirements for RADIUS packet transport.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>historic RADIUS/TLS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over (D)TLS as defined in <xref target="RFC6614"/> and <xref target="RFC7360"/>.  This term does not include the protocol defined in this specification.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/1.1</li>
      </ul>
      <ul empty="true">
        <li>
          <t>The transport profile defined in this document, which stands for "RADIUS version 1.1".  We use RADIUS/1.1 to refer interchangeably to TLS and DTLS transport.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>TLS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>The Transport Layer Security protocol.  Generally when we refer to TLS in this document, we are referring interchangeably to TLS or DTLS transport.</t>
        </li>
      </ul>
    </section>
    <section anchor="the-radius11-transport-profile-for-radius">
      <name>The RADIUS/1.1 Transport profile for RADIUS</name>
      <t>This section describes the ALPN transport profile in detail.  It first gives the name used for ALPN, and then describes how ALPN is configured and negotiated by client and server.  It then concludes by discussing TLS issues such as what to do for ALPN during session resumption.</t>
      <section anchor="alpn-name-for-radius11">
        <name>ALPN Name for RADIUS/1.1</name>
        <t>The ALPN name defined for RADIUS/1.1 is as follows:</t>
        <ul empty="true">
          <li>
            <t>"radius/1.1"</t>
            <ul empty="true">
              <li>
                <t>The protocol defined by this specification.</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>Where ALPN is not configured or is not received in a TLS connection, systems supporting ALPN MUST NOT use RADIUS/1.1.</t>
        <t>Where ALPN is configured, the client signals support by sending ALPN strings signaling which protocols it supports..  The server can accept one of these proposals and reply with a matching ALPN string, or reject this proposal, and not reply with any ALPN string.  A full walk-through of the protocol negotiation is given below.</t>
        <t>Implementations MUST signal ALPN "radius/1.1" in order for it to be used in a connection.  Implementations MUST NOT have an administrative flag which causes a connection to use "radius/1.1", but which does not signal that protocol via ALPN.</t>
        <t>The next step in defining RADIUS/1.1 is to review how ALPN works.</t>
      </section>
      <section anchor="operation-of-alpn">
        <name>Operation of ALPN</name>
        <t>In order to provide a high-level description of ALPN for readers who are not familiar with the details of <xref target="RFC7301"/>, we provide a brief overview here.</t>
        <t>Once a system has been configured to support ALPN, it is negotiated on a per-connection basis as per <xref target="RFC7301"/>.  The negotiation proceeds as follows:</t>
        <t>1) The client sends an ALPN extension in the ClientHello.  This extension lists one or more application protocols by name.  These names are the protocols which the client is claiming to support.</t>
        <t>2) The server receives the extension, and validates the application protocol name(s) against the list it has configured.</t>
        <ul empty="true">
          <li>
            <t>If the server finds no acceptable common protocols (ALPN or otherwise), it closes the connection.</t>
          </li>
        </ul>
        <t>3) Otherwise, the server returns a ServerHello with either no ALPN extension, or an ALPN extension containing only one named application protocol, which needs to be one of the names proposed by the client.</t>
        <ul empty="true">
          <li>
            <t>If the client did not signal ALPN, or the server does not accept the ALPN proposal, the server does not reply with any ALPN name.</t>
          </li>
        </ul>
        <t>4) The client receives the ServerHello, validates the received application protocol (if any) against the name(s) it sent, and records which application protocol was chosen.</t>
        <ul empty="true">
          <li>
            <t>This check is necessary in order for the client to both know which protocol the server has selected, and to validate that the protocol sent by the server is one which is acceptable to the client.</t>
          </li>
        </ul>
        <t>The next step in defining RADIUS/1.1 is to define how ALPN is configured on the client and server, and to give more detailed requirements on its configuration and operation.</t>
      </section>
      <section anchor="configuration-of-alpn-for-radius11">
        <name>Configuration of ALPN for RADIUS/1.1</name>
        <t>Clients or servers supporting this specification can do so by extending their TLS configuration through the addition of a new configuration flag, called "Version" here.  The exact name given below does not need to be used, but it is RECOMMENDED that administrative interfaces or programming interfaces use a similar name in order to provide consistent terminology.  This flag controls how the implementation signals use of this protocol via ALPN.</t>
        <t>When set, this flag contains the list of permitted RADIUS versions as numbers, e.g. "1.0" or "1.1".  The implementation may allow multiple values in one variable, or allow multiple variables, or instead use two configuration for "minimum" and "maximum" allowed versions.  We assume here that there is one variable, which can contain either no value, or else a list of one or more versions which the current implementation supports.  In this specification, the possible values, ALPN strings, and corresponding interpretations are:</t>
        <artwork><![CDATA[
Flag Value  |   ALPN String(s)       | Interpretation
------------------------------------------------------
unset       |                        | no ALPN strings are sent.
1.0         | radius/1.0             | require historic RADIUS/TLS
1.0, 1.1    | radius/1.0, radius/1.1 | allow either historic
            |                        | RADIUS/TLS or RADIUS/1.1.
1.1         | radius/1.1             | require RADIUS/1.1.
]]></artwork>
        <t>This configuration is also extensible to future RADIUS versions if that extension becomes necessary.  New flag values and ALPN names can simply be added to the list.  Implementations can then negotiate the highest version which is supported by both client and server.</t>
        <t>Implementations SHOULD support both historic RADIUS/TLS and RADIUS/1.1.  Such implementations MUST set the default value for this configuratiun flag to "1.0, 1.1".  This setting ensures that both versions of RADIUS can be negotiated.</t>
        <t>Implementations MAY support only RADIUS/1.1.  In which case the default value for this configuration flag MUST be "1.1".  This behavior is NOT RECOMMENDED, as it is incompatible with historic RADIUS/TLS.  This behavior can only be a reasonable default when all (or nearly all) RADIUS clients have been updated to support RADIUS/1.1.</t>
        <t>A more detailed definition of the variable and the meaning of the values is given below.</t>
        <t>Configuration Flag Name</t>
        <ul empty="true">
          <li>
            <t>Version</t>
          </li>
        </ul>
        <t>Values</t>
        <ul empty="true">
          <li>
            <t>When the flag is unset, ALPN is not used.</t>
            <t>Any connection MUST use historic RADIUS/TLS.</t>
            <t>This flag is included here only for logical completeness.  Implementations of this specification SHOULD be configured to always send one or more ALPN strings.  This data signals that the implementation is capable performing ALPN negotiation, even if it is not currently configured to use RADIUS/1.1</t>
            <ul empty="true">
              <li>
                <t>Client Behavior</t>
                <ul empty="true">
                  <li>
                    <t>The client MUST NOT send any protocol name via ALPN.</t>
                  </li>
                </ul>
                <t>Server Behavior</t>
                <ul empty="true">
                  <li>
                    <t>The server MUST NOT signal any protocol name via ALPN.</t>
                    <t>If the server receives an ALPN name from the client, it MUST NOT close the connection.  Instead, it simply does not reply with ALPN, and finishes the TLS connection setup as defined for historic RADIUS/TLS.</t>
                    <t>Note that if a client sends "radius/1.1", the client will see that the server failed to acknowledge this request, and will close the connection.  For any other client configuration, the connection will use historic RADIUS/TLS.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>Other values ("1.0", "1.0, 1.1", "1.1", etc.)</t>
            <ul empty="true">
              <li>
                <t>Client Behavior</t>
                <ul empty="true">
                  <li>
                    <t>The client MUST send the ALPN string(s) associated with the configured version.  e.g. For "1.0", send "radius/1.0".</t>
                    <t>The client will receive either no ALPN response from the server, or an ALPN response of one version string with MUST match one of the strings it sent, or else a TLS alert of "no_application_protocol" (120).</t>
                    <t>If the connection remains open, the client MUST treat the connection as using the matching ALPN version.</t>
                  </li>
                </ul>
                <t>Server Behavior</t>
                <ul empty="true">
                  <li>
                    <t>If the server receives no ALPN name from the client, it MUST use historic RADIUS/TLS.</t>
                    <t>If the server receives one or more ALPN names from the client, it MUST reply with the highest mutually supported version and then use the latest supported version for this connection.</t>
                    <t>If the server receives one or more ALPN names from the client, but none of the names match the versions supported by (or configured on) the server, it MUST reply with a TLS alert of "no_application_protocol" (120), and then MUST close the TLS connection.</t>
                    <t>These requirements for negotiation are not specific to RADIUS/1.1, and therefore can be used unchanged if any new version of RADIUS is defined.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <t>By requiring the default configuration to allow historic RADIUS/TLS, implementations will be able to negotiate both historic RADIUS/TLS connections, and also RADIUS/1.1 connections.  Any other recommended default setting would prevent either the negotiation of historic RADIUS/TLS, or prevent the negotiation of RADIUS/1.1.</t>
        <t>Once administrators verify that both ends of a connection support RADIUS/1.1, and that it has been negotiated successfully, the configurations SHOULD be updated to require RADIUS/1.1.  The connections should be monitored after this change to ensure that the systems continue to remain connected.  If there are connection issues, then the configuration should be reverted to using allow both "radius/1.0" and "radius/1.1" ALPN strings, until such time as the connection problems have been resolved.</t>
        <t>We reiterate that systems implementing this specification, but which are configured with setting that forbid RADIUS/1.1, will behave largely the same as systems which do not implement this specification.  The only difference is that clients may send the ALPN name "radius/1.0".</t>
        <t>Systems implementing RADIUS/1.1 SHOULD NOT be configured by default to forbid that protocol.  That setting exists mainly for completeness, and to give administrators the flexibility to control their own deployments.</t>
        <t>While <xref target="RFC7301"/> does not discuss the possibility of the server sending a TLS alert of "no_application_protocol" (120) when the client does not use ALPN, we believe that this behavior is useful.  As such, servers MAY send a a TLS alert of "no_application_protocol" (120) when the client does not use ALPN.</t>
        <t>However, some TLS implementations may not permit an application to send a TLS alert of its choice, at a time of its choice.   This limitation means that it is not always possible for an application to send the TLS alert as discussed in the previous section.  The impact is that an implementation may attempt to connect, and then see that the connection fails, but not be able to determine why that failure has occurred.  Implementers and administrators should be aware that unexplained connection failures may be due to ALPN negotiation issues.</t>
        <t>The server MAY send this alert during the ClientHello, if it requires ALPN but does not receive it.  That is, there may not always be a need to wait for the TLS connection to be fully established before realizing that no common ALPN protocol can be negotiated.</t>
        <t>Where the client does perform signaling via ALPN and the server determines that there is no compatible application protocol name, then as per <xref section="3.2" sectionFormat="comma" target="RFC7301"/>, it MUST send a TLS alert of "no_application_protocol" (120).</t>
        <t>Whether or not the server sent a TLS alert for no compatible ALPN, it MUST close the connection.  The above requirements on ALPN apply to both new sessions, and to resumed sessions.</t>
        <t>In contrast, there is no need for the client to signal that there are no compatible application protocol names.  The client sends zero or more protocol names, and the server responds as above.  From the point of view of the client, the list it sent results in either a connection failure, or a connection success.</t>
        <t>It is RECOMMENDED that the server logs a descriptive error in this situation, so that an administrator can determine why a particular connection failed.  The log message SHOULD include information about the other end of the connection, such as IP address, certificate information, etc.  Similarly, when the client receives a TLS alert of "no_application_protocol" it SHOULD log a descriptive error message.  Such error messages are critical for helping administrators to diagnose connectivity issues.</t>
        <section anchor="using-protocol-error-for-signaling-alpn-failure">
          <name>Using Protocol-Error for Signaling ALPN Failure</name>
          <t>When it is not possible to send a TLS alert of "no_application_protocol" (120), then the only remaining method for one party to signal the other is to send application data inside of the TLS tunnel.  Therefore, for the situation when a one end of a connection determines that it requires ALPN while the other end does not support ALPN, the end requiring ALPN MAY send a Protocol-Error packet <xref target="RFC7930"/> inside of the tunnel, and then MUST close the connection.  If this is done, the Token field of the Protocol-Error packet cannot be copied from any request, and therefore that field MUST be set to all zeros.</t>
          <t>The Protocol-Error packet SHOULD contain a Reply-Message attribute with a textual string describing the cause of the error.  The packet SHOULD also contain an Error-Cause attribute, with value Unsupported Extension (406).  The packet SHOULD NOT contain other attributes.</t>
          <t>An implementation sending this packet could bypass any RADIUS encoder, and simply write this packet as a predefined, fixed set of data to the TLS connection.  That process would likely be simpler than trying to call the normal RADIUS packet encoder to encode a reply packet with no corresponding request packet.</t>
          <t>As this packet is an unexpected response packet, existing client implementations of RADIUS over TLS will ignore it.  They may either log an error and close the connection, or they may discard the packet and leave the connection open.  If the connection remains open, the end supporting ALPN will close the connection, so there will be no side effects from sending this packet.  Therefore, while using a Protocol-Error packet in this way is unusual, it is both informative and safe.</t>
          <t>The purpose of this packet is not to have the other end of the connection automatically determine what went wrong, and fix it.  Instead, the packet is intended to be (eventually) seen by an administrator, who can then take remedial action.</t>
        </section>
        <section anchor="tabular-summary">
          <name>Tabular Summary</name>
          <t>The preceding text gives a large number of recommendations.  In order to give a simpler description of the outcomes, a table of possible behaviors for client/server values of the Version flag is given below.  This table and the names given below are for informational and descriptive purposes only.</t>
          <figure>
            <name>Possible outcomes for ALPN Negotiation</name>
            <artwork><![CDATA[
                             Server
             no ALPN  |   1.0    | 1.0, 1.1 |    1.1
Client    |--------------------------------------------
----------|
No ALPN   |   TLS        TLS        TLS        Close-S
          |
1.0       |   TLS        TLS        TLS        Alert
          |
1.0, 1.1  |   TLS        TLS        1.1        1.1
          |
1.1       |   Close-C    Alert      1.1        1.1
]]></artwork>
          </figure>
          <t>The table entries above have the following meaning:</t>
          <ul empty="true">
            <li>
              <t>Alert</t>
              <ul empty="true">
                <li>
                  <t>The client sends ALPN, and the server does not agree to the clients ALPN proposal.  The server replies with a TLS alert of "no_application_protocol" (120), and then closes the TLS connection.</t>
                  <t>As the server replies with a TLS alert, the Protocol-Error packet is not used here.</t>
                </li>
              </ul>
              <t>Close-C</t>
              <ul empty="true">
                <li>
                  <t>The client sends ALPN, but the server does not respond with ALPN.  The client closes the connection.</t>
                  <t>As noted in the previous section, the client MAY send a Protocol-Error packet to the server before closing the connection.</t>
                </li>
              </ul>
              <t>Close-S</t>
              <ul empty="true">
                <li>
                  <t>The client does not send ALPN string(s), but the server requires ALPN.  The server closes the connection.</t>
                  <t>As noted in the previous section, the server MAY send a Protocol-Error packet to the client before closing the connection.  The server MAY also send a TLS alert of "no_application_protocol" (120) before closing the connection.</t>
                </li>
              </ul>
              <t>TLS</t>
              <ul empty="true">
                <li>
                  <t>Historic RADIUS/TLS is used.  The client either sends no ALPN string, or sends "radius/1.0".  The server either replies with no ALPN string, or with "radius/1.0".  The connection MUST use historic RADIUS/TLS.</t>
                </li>
              </ul>
              <t>1.1</t>
              <ul empty="true">
                <li>
                  <t>The client sends the ALPN string "radius/1.1.  The server acknowledges this negotiation with a reply of "radius/1.1", and then RADIUS/1.1 is used.</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>Implementations should note that this table may be extended in future specifications.  The above text is informative, and does not mandate that only the above ALPN strings are used.  The actual ALPN negotiation takes place as defined in the preceding sections of this document, and in <xref target="RFC7301"/>.</t>
        </section>
      </section>
      <section anchor="miscellaneous-items">
        <name>Miscellaneous Items</name>
        <t>Implementations of this specification MUST require TLS version 1.3 or later.</t>
        <t>The use of the ALPN string "radius/1.0" is technically unnecessary, as it is largely equivalent to not sending any ALPN string.  However, that value is useful for RADIUS administrators.  A system which sends the ALPN string "radius/1.0" is explicitly signaling that it supports ALPN negotiation, but that it is not currently configured to support RADIUS/1.1.  That information can be used by administrators to determine which devices are capable of ALPN.</t>
        <t>The use of the ALPN string "radius/1.0" also permits server implementations to send a TLS alert of "no_application_protocol" (120) when it cannot find a matching ALPN string.  Experiments with TLS library implementations suggest that in some cases it is possible to send that TLS alert when ALPN is not used.  However, such a scenario is not discussed on <xref target="RFC7301"/>, and is likely not universal.  As a result, ALPN as defined in <xref target="RFC7301"/> permits servers to send that TLS alert in situations where it would be otherwise forbidden, or perhaps unsupported.</t>
        <t>Finally, defining ALPN strings for all known RADIUS versions will make it easier to support additional ALPN strings if that functionality is ever needed.</t>
      </section>
      <section anchor="session-resumption">
        <name>Session Resumption</name>
        <t><xref section="3.1" sectionFormat="comma" target="RFC7301"/> states that ALPN is negotiated on each connection, even if session resumption is used:</t>
        <ul empty="true">
          <li>
            <t>When session resumption or session tickets <xref target="RFC5077"/> are used, the previous contents of this extension are irrelevant, and only the values in the new handshake messages are considered.</t>
          </li>
        </ul>
        <t>In order to prevent down-bidding attacks, RADIUS systems which negotiate the "radius/1.1" protocol MUST associate that information with the session ticket, and enforce the use of "radius/1.1" on session resumption.  That is, if "radius/1.1" was negotiated for a session, both clients and servers MUST behave as if the RADIUS/1.1 flag was set to "require" for that session.</t>
        <t>A client which is resuming a "radius/1.1" connection MUST advertise only the capability to do "radius/1.1" for the resumed session.  That is, even if the client configuration allows historic RADIUS/TLS for new connections, it MUST signal "radius/1.1" when resuming a session which had previously negotiated "radius/1.1".</t>
        <t>Similarly, when a server does resumption for a session which had previously negotiated "radius/1.1".   If the client attempts to resume the sessions without signaling the use of RADIUS/1.1, the server MUST close the connection.  The server MUST send an appropriate TLS error, and also SHOULD log a descriptive message as described above.</t>
        <t>In contrast, there is no requirement for a client or server to force the use of <xref target="RFC6614"/> RADIUS/TLS on session resumption.  Clients are free to signal support for "radius/1.1" on resumed sessions, even if the original session did not negotiate "radius/1.1".  Servers are free to accept this request, and to negotiate the use of "radius/1.1" for such sessions.</t>
      </section>
    </section>
    <section anchor="radius11-packet-and-attribute-formats">
      <name>RADIUS/1.1 Packet and Attribute Formats</name>
      <t>This section describes the application-layer data which is sent inside of (D)TLS when using the RADIUS/1.1 protocol.  Unless otherwise discussed herein, the application-layer data is unchanged from traditional RADIUS.  This protocol is only used when "radius/1.1" has been negotiated by both ends of a connection.</t>
      <section anchor="radius11-packet-format">
        <name>RADIUS/1.1 Packet Format</name>
        <t>When RADIUS/1.1 is used, the RADIUS header is modified from standard RADIUS.  While the header has the same size, some fields have different meaning.  The Identifier and the Request / Response Authenticator fields are no longer used in RADIUS/1.1.  Any operations which depend on those fields MUST NOT be performed.  As packet signing and security are handled by the TLS layer, RADIUS-specific cryptographic primitives are no longer in RADIUS/1.1.</t>
        <t>A summary of the RADIUS/1.1 packet format is shown below.  The fields are transmitted from left to right.</t>
        <figure anchor="Header">
          <name>The RADIUS/1.1 Packet Format</name>
          <artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|     Code      |  Reserved-1   |            Length             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                             Token                             |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
|                           Reserved-2                          |
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  Attributes ...
+-+-+-+-+-+-+-+-+-+-+-+-+-
]]></artwork>
        </figure>
        <t>Code</t>
        <ul empty="true">
          <li>
            <t>The Code field is one octet, and identifies the type of RADIUS packet.</t>
            <t>The meaning of the Code field is unchanged from previous RADIUS specifications.</t>
          </li>
        </ul>
        <t>Reserved-1</t>
        <ul empty="true">
          <li>
            <t>The Reserved-1 field is one octet.</t>
            <t>This field was previously used as the "Identifier" in historic RADIUS/TLS.  It is now unused, as the Token field replaces it both as the way to identify requests, and to associate responses with requests.</t>
            <t>When sending packets, the Reserved-1 field MUST be set to zero.  The Reserved-1 field MUST be ignored when receiving a packet.</t>
          </li>
        </ul>
        <t>Length</t>
        <ul empty="true">
          <li>
            <t>The Length field is two octets.</t>
            <t>The meaning of the Length field is unchanged from previous RADIUS specifications.</t>
          </li>
        </ul>
        <t>Token</t>
        <ul empty="true">
          <li>
            <t>The Token field is four octets, and aids in matching requests and
replies, as a replacement for the Identifier field.  The RADIUS server can detect a duplicate request if it receives
the same Token value for two packets on a particular connection.</t>
            <t>All values are possible for the Token field.  Implementations MUST treat the Token as an opaque blob when comparing Token values.</t>
            <t>Further requirements are given below in <xref target="sending-packets"/> for sending packets, and in <xref target="receiving-packets"/> for receiving packets.</t>
          </li>
        </ul>
        <t>Reserved-2</t>
        <ul empty="true">
          <li>
            <t>The Reserved-2 field is twelve (12) octets in length.</t>
            <t>These octets MUST be set to zero when sending a packet.</t>
            <t>These octets MUST be ignored when receiving a packet.</t>
            <t>These octets are reserved for future protocol extensions.</t>
          </li>
        </ul>
      </section>
      <section anchor="the-token-field">
        <name>The Token Field</name>
        <t>This section describes in more detail how the Token field is used.</t>
        <section anchor="sending-packets">
          <name>Sending Packets</name>
          <t>The Token field MUST change for every new unique packet which is sent on the same connection. For DTLS transport, it is possible to retransmit duplicate packets, in which case the Token value MUST NOT be changed when a duplicate packet is (re)sent.  When the contents of a retransmitted packet change for any reason (such changing Acct-Delay-Time as discussed in <xref section="5.2" sectionFormat="comma" target="RFC2866"/>), the Token value MUST be changed.  Note that on reliable transports, packets are never retransmitted, and therefore every new packet which is sent has a unique Token value.</t>
          <t>We note that in previous RADIUS specifications, the Identifier field could have the same value for different packets on the same connection.  For example, Access-Request (Code 1) and Accounting-Request (Code 4) packets could both use ID 3, and still be treated as different packets.  This overlap required that RADIUS clients and servers track the Identifier field, not only on a per-connection basis, but also on a per-Code basis.  This behavior adds complexity to implementations.</t>
          <t>In contrast, the Token values MUST be generated from a 32-bit counter which is unique to each connection.  Such a counter SHOULD be initialized to a random value, taken from a random number generator, whenever a new connection is opened.  The counter MUST then be incremented for every unique new packet which is sent by the client.  Retransmissions of the same packet MUST use the same unchanged Token value.  As the Token value is mandated to be unique per packet, a duplicate Token value is the only way that a server can detect duplicate transmissions.</t>
          <t>This counter method ensures that the Tokens are unique, and are also independent of any Code value in the RADIUS packet header.  This method is mandated because any other method of generating unique and non-conflicting Token values is more complex, with no additional benefit and only the likelihood of increased bugs and interoperability issues.  Any other method for generating Token values would require substantially more resources to track outstanding Token values and their associated expiry times.  The chance that initial values are re-used across two connections is one in 2^32, which is acceptable.</t>
          <t>The purpose for initializing the Token to a random counter is to aid administrators in debugging systems.  If the Token values always used the same sequence, then it would easier for a person to confuse different packets which have the same Token value.  By instead starting with a random value, those values are more evenly distributed across the set of allowed values, and are therefore more likely to be unique.</t>
          <t>As there is no special meaning for the Token, there is no meaning when a counter "wraps" around from a high value back to zero.  The originating system can simply continue to increment the Token value without taking any special action in that situation.</t>
          <t>Once a RADIUS response to a request has been received and there is no need to track the packet any longer, the Token value can be reused.  This reuse happens only when the counter "wraps around" after 2^32 packets have been sent over one connection.  This method of managing the counter automatically ensures a long delay (i.e. 2^32 packets) between multiple uses of the same Token value.   This large number of packets ensures that the only possible situation where there may be conflict is when a client sends billions of packets a second across one connection, or when a client sends billions of packets without receiving replies.  We suggest that such situations are vanishingly rare.  The best solution to those situations would be to limit the number out outstanding packets over one connection to a number much lower than billions.</t>
          <t>If a RADIUS client has multiple independent subsystems which send packets to a server, each subsystem MAY open a new connection which is unique to that subsystem.  There is no requirement that all packets go over one particular connection.  That is, despite the use of a 32-bit Token field, RADIUS/1.1 clients are still permitted to open multiple source ports as discussed in <xref target="RFC2865"/> Section 2.5.</t>
          <t>While multiple connections from client to server are allowed, We reiterate the suggestion of <xref section="3.3" sectionFormat="comma" target="RFC3539"/> that a single connection is preferred to multiple connections.  The use of a single connection can improve throughput and latency, while simplifying the clients efforts to determine server status.</t>
        </section>
        <section anchor="receiving-packets">
          <name>Receiving Packets</name>
          <t>A server which receives RADIUS/1.1 packets MUST perform packet deduplication for all situations where it is required by RADIUS.  Where RADIUS does not require deduplication (e.g. TLS transport), the server SHOULD NOT do deduplication.  However, DTLS transport is UDP-based, and therefore still requires deduplication.</t>
          <t>When using RADIUS/1.1, implementations MUST do deduplication only on the Token field, and not on any other field or fields in the packet header. A server MUST treat the Token as being an opaque field with no intrinsic meaning.  This requirement makes the receiver behavior independent of the methods by which the Counter is generated.</t>
          <t>Where Token deduplication is done, it MUST be done on a per-connection basis.  If two packets which are received on different connections contain the same Token value, then those packets MUST be treated as distinct (i.e. different) packets.  Systems performing deduplication MAY still track the packet Code, Length, and Attributes which is associated with a Token value.  If it determines that the sender is re-using Token values for distinct outstanding packets, then an error should be logged, and the connection MUST be closed.  There is no way to negotiate correct behavior in the protocol.  Either the parties both operate normally and can communicate, or one end misbehaves, and no communication is possible.</t>
          <t>Once a reply has been sent, a system doing deduplication SHOULD cache the replies as discussed in <xref section="2.2.2" sectionFormat="comma" target="RFC5080"/>:</t>
          <ul empty="true">
            <li>
              <t>Each cache entry SHOULD be purged after a period of time.  This time
SHOULD be no less than 5 seconds, and no more than 30 seconds.  After
about 30 seconds, most RADIUS clients and end users will have given
up on the authentication request.  Therefore, there is little value
in having a larger cache timeout.</t>
            </li>
          </ul>
          <t>This change from RADIUS means that the Identifier field is no longer useful for RADIUS/1.1.  The Reserved-1 field (previously used as the Identifier) MUST be set to zero when encoding all RADIUS/1.1 packets.  Implementations of RADIUS/1.1 which receive packets MUST ignore this field.</t>
        </section>
      </section>
    </section>
    <section anchor="attribute-handling">
      <name>Attribute handling</name>
      <t>Most attributes in RADIUS have no special encoding "on the wire", or any special meaning between client and server.  Unless discussed in this section, all RADIUS attributes are unchanged in this specification.  This requirement includes attributes which contain a tag, as defined in <xref target="RFC2868"/>.</t>
      <section anchor="obfuscated-attributes">
        <name>Obfuscated Attributes</name>
        <t>Since the (D)TLS layer provides for connection authentication, integrity checks, and confidentiality, there is no need to hide the contents of an attribute on a hop-by-hop basis.  As a result, all attributes defined as being obfuscated via the shared secret no longer have the obfuscation step applied when RADIUS/1.1 is used.  Instead, those attributes MUST be encoded using the encoding for the underlying data type, with any encryption / obfuscation step omitted.  For example, the User-Password attribute is no longer obfuscated, and is instead sent as data type "text".</t>
        <t>There are risks from sending passwords over the network, even when they are protected by TLS.  One such risk comes from the common practice of multi-hop RADIUS routing.  As all security in RADIUS is on a hop-by-hop basis, every proxy which receives a RADIUS packet can see (and modify) all of the information in the packet.  Sites wishing to avoid proxies SHOULD use dynamic peer discovery <xref target="RFC7585"/>, which permits clients to make connections directly to authoritative servers for a realm.</t>
        <t>There are others ways to mitigate these risks.  The simplest is to follow the requirements of <xref section="2.4" sectionFormat="comma" target="RFC6614"/> item (3) and <xref section="10.4" sectionFormat="comma" target="RFC7360"/>, which mandates that RADIUS over TLS implementations validate the peer before sending any RADIUS traffic.</t>
        <t>Another way to mitigate these risks is for the system being authenticated to use an authentication protocol which never sends passwords (e.g. EAP-pwd <xref target="RFC5931"/>), or which sends passwords protected by a TLS tunnel (e.g. EAP-TTLS <xref target="RFC5281"/>).  The processes to choose and configuring an authentication protocol are strongly site-dependent, so further discussion of these issues are outside of the scope of this document.  The goal here is to ensure that the reader has enough information to make an informed decision.</t>
        <t>We note that as the RADIUS shared secret is no longer used in this specification, it is no longer possible or necessary for any attribute to be obfuscated on a hop-by-hop basis using the previous methods defined for RADIUS.</t>
        <section anchor="user-password">
          <name>User-Password</name>
          <t>The User-Password attribute (<xref section="5.2" sectionFormat="comma" target="RFC2865"/>) MUST be encoded the same as any other attribute of data type 'string' (<xref section="3.5" sectionFormat="comma" target="RFC8044"/>).</t>
          <t>The contents of the User-Password field MUST be at least one octet in length, and MUST NOT be more than 128 octets in length.  This limitation is maintained from <xref section="5.2" sectionFormat="comma" target="RFC2865"/> for compatibility with historic transports.</t>
          <t>Note that the User-Password attribute is not of data type 'text'.  The original reason in <xref target="RFC2865"/> was because the attribute was encoded as an opaque and obfuscated binary blob.  We maintain that data type here, even though the attribute is no longer obfuscated.  The contents of the User-Password attribute do not have to be printable text, or UTF-8 data as per the definition of the 'text' data type in <xref section="3.4" sectionFormat="comma" target="RFC8044"/>.</t>
          <t>However, implementations should be aware that passwords are often printable text, and where the passwords are printable text, it can be useful to store and display them as printable text.  Where implementations can process non-printable data in the 'text' data type, they MAY use the data type 'text' for User-Password.</t>
        </section>
        <section anchor="chap-challenge">
          <name>CHAP-Challenge</name>
          <t><xref section="5.3" sectionFormat="comma" target="RFC2865"/> allows for the CHAP challenge to be taken from either the CHAP-Challenge attribute (<xref section="5.40" sectionFormat="comma" target="RFC2865"/>), or the Request Authenticator field.  Since RADIUS/1.1 connections no longer use a Request Authenticator field, it is no longer possible to use the Request Authenticator field as the CHAP-Challenge when this transport profile is used.</t>
          <t>Clients which send CHAP-Password attribute (<xref section="5.3" sectionFormat="comma" target="RFC2865"/>) in an Access-Request packet over a RADIUS/1.1 connection MUST also include a CHAP-Challenge attribute (<xref section="5.40" sectionFormat="comma" target="RFC2865"/>).</t>
          <t>Proxies may need to receive Access-Request packets over a non-RADIUS/1.1 transport and then forward those packets over a RADIUS/1.1 connection.  In that case, if the received Access-Request packet contains a CHAP-Password attribute but no CHAP-Challenge attribute, the proxy MUST create a CHAP-Challenge attribute in the proxied packet using the contents from the incoming Request Authenticator of the received packet.</t>
        </section>
        <section anchor="tunnel-password">
          <name>Tunnel-Password</name>
          <t>The Tunnel-Password attribute (<xref section="3.5" sectionFormat="comma" target="RFC2868"/>) MUST be encoded the same as any other attribute of data type 'string' which contains a tag, such as Tunnel-Client-Endpoint (<xref section="3.3" sectionFormat="comma" target="RFC2868"/>).  Since the attribute is no longer obfuscated in RADIUS/1.1, there is no need for a Salt field or Data-Length fields as described in <xref section="3.5" sectionFormat="comma" target="RFC2868"/>, and the textual value of the password can simply be encoded as-is.</t>
          <t>Note that the Tunnel-Password attribute is not of data type 'text'.  The original reason in <xref target="RFC2868"/> was because the attribute was encoded as an opaque and obfuscated binary blob.  We maintain that data type here, even though the attribute is no longer obfuscated.  The contents of the Tunnel-Password attribute do not have to be printable text, or UTF-8 data as per the definition of the 'text' data type in <xref section="3.4" sectionFormat="comma" target="RFC8044"/>.</t>
          <t>However, implementations should be aware that passwords are often printable text, and where the passwords are printable text, it can be useful to store and display them as printable text.  Where implementations can process non-printable data in the 'text' data type, they MAY use the data type 'text' for Tunnel-Password.</t>
        </section>
        <section anchor="vendor-specific-attributes">
          <name>Vendor-Specific Attributes</name>
          <t>Any Vendor-Specific attribute which uses similar obfuscation MUST be encoded as per their base data type.  Specifically, the MS-MPPE-Send-Key and MS-MPPE-Recv-Key attributes (<xref section="2.4" sectionFormat="comma" target="RFC2548"/>) MUST be encoded as any other attribute of data type 'string' (<xref section="3.4" sectionFormat="comma" target="RFC8044"/>).</t>
        </section>
      </section>
      <section anchor="message-authenticator">
        <name>Message-Authenticator</name>
        <t>The Message-Authenticator attribute (<xref section="3.2" sectionFormat="comma" target="RFC3579"/>) MUST NOT be sent over a RADIUS/1.1 connection.  That attribute is not used or needed in RADIUS/1.1.</t>
        <t>If the Message-Authenticator attribute is received over a RADIUS/1.1 connection, the attribute MUST be silently discarded, or treated as an "invalid attribute", as defined in <xref section="2.8" sectionFormat="comma" target="RFC6929"/>.  That is, the Message-Authenticator attribute is no longer used to sign packets for the RADIUS/1.1 transport.  Its existence (or not) in this transport is meaningless.</t>
        <t>A system which receives a Message-Authenticator attribute in a packet MUST treat it as an "invalid attribute" as defined in <xref section="2.8" sectionFormat="comma" target="RFC6929"/>.  That is, the packet can still be processed, even if the Message-Authenticator attribute is ignored.</t>
        <t>For proxies, the Message-Authenticator attribute has always been defined as being created and consumed on a "hop by hop" basis.  That is, a proxy which received a Message-Authenticator attribute from a client would never forward that attribute as-is to another server.  Instead, the proxy would either suppress, or re-create, the Message-Authenticator attribute in the outgoing request.  This existing behavior is leveraged in RADIUS/1.1 to suppress the use of Message-Authenticator over a RADIUS/1.1 connection.</t>
        <t>A proxy may receive an Access-Request packet over a RADIUS/1.1 connection, and then forward that packet over a RADIUS/UDP or a RADIUS/TCP connection.  In that situation, the proxy SHOULD add a Message-Authenticator attribute to every Access-Request packet which is sent over an insecure transport protocol.</t>
        <t>The original text in <xref section="3.3" sectionFormat="comma" target="RFC3579"/>, "Note 1" paragraph required that the Message-Authenticator attribute be present for certain Access-Request packets.  It also required the use of Message-Authenticator when the Access-Request packet contained an EAP-Message attribute.  Experience has shown that some RADIUS clients never use the Message-Authenticator, even for the situations where its use is suggested.</t>
        <t>When the Message-Authenticator attribute is missing from Access-Request packets, it is often possible to trivially forge or replay those packets.  As such, this document RECOMMENDS that RADIUS clients always include Message-Authenticator in Access-Request packets when using UDP or TCP transport.  As the scope of this document is limited to defining RADIUS/1.1, we cannot mandate that behavior here.  Instead, we can note that there are no known negatives to this behavior, and there are definite positives, such as increased security.</t>
      </section>
      <section anchor="message-authentication-code">
        <name>Message-Authentication-Code</name>
        <t>Similarly, the Message-Authentication-Code attribute defined in <xref section="3.3" sectionFormat="comma" target="RFC6218"/> MUST NOT be sent over a RADIUS/1.1 connection.  If it is received in a packet, it MUST be treated as "invalid attribute" as defined in <xref section="2.8" sectionFormat="comma" target="RFC6929"/>.</t>
        <t>As the Message-Authentication-Code attribute is no longer used in RADIUS/1.1, the related MAC-Randomizer attribute <xref section="3.2" sectionFormat="comma" target="RFC6218"/> MUST NOT be sent over a RADIUS/1.1 connection.  If it is received in a packet, it MUST be treated as "invalid attribute" as defined in <xref section="2.8" sectionFormat="comma" target="RFC6929"/>.</t>
      </section>
      <section anchor="chap-ms-chap-etc">
        <name>CHAP, MS-CHAP, etc.</name>
        <t>While some attributes such as CHAP-Password, etc. depend on insecure cryptographic primitives such as MD5, these attributes are treated as opaque blobs when sent between a RADIUS client and server.  The contents of the attributes are not obfuscated, and they do not depend on the RADIUS shared secret.  As a result, these attributes are unchanged in RADIUS/1.1.</t>
        <t>A server implementing this specification can proxy CHAP, MS-CHAP, etc. without any issue.  A home server implementing this specification can authenticate CHAP, MS-CHAP, etc. without any issue.</t>
      </section>
      <section anchor="original-packet-code">
        <name>Original-Packet-Code</name>
        <t><xref section="4" sectionFormat="comma" target="RFC7930"/> defines an Original-Packet-Code attribute.  This attribute is needed because otherwise it is impossible to correlate the Protocol-Error response packet with a particular request packet.  The definition in <xref section="4" sectionFormat="comma" target="RFC7930"/> describes the reasoning behind this need:</t>
        <ul empty="true">
          <li>
            <t>The Original-Packet-Code contains the code
from the request that generated the protocol error so that clients
can disambiguate requests with different codes and the same ID.</t>
          </li>
        </ul>
        <t>This attribute is no longer needed in RADIUS/1.1.  The Identifier field is unused, so it impossible for two requests to have the "same" ID.  Instead, the Token field permits clients and servers to correlate requests and responses, independent of the Code value being used.</t>
        <t>Therefore, the Original-Packet-Code attribute (<xref section="4" sectionFormat="comma" target="RFC7930"/>) MUST NOT be sent over a RADIUS/1.1 connection.  If it is received in a packet, it MUST be treated as "invalid attribute" as defined in <xref section="2.8" sectionFormat="comma" target="RFC6929"/>.</t>
      </section>
    </section>
    <section anchor="other-considerations-when-using-alpn">
      <name>Other Considerations when using ALPN</name>
      <t>Most of the differences between RADIUS and RADIUS/1.1 are in the packet header and attribute handling, as discussed above.  The remaining issues are a small set of unrelated topics, and are discussed here.</t>
      <section anchor="protocol-error">
        <name>Protocol-Error</name>
        <t>There are a number of situations where a RADIUS server is unable to respond to a request.  One situation is where the server depends on a database, and the database is down.  While arguably the server should close all incoming connections when it is unable to do anything, this action is not always effective.  A client may aggressively try to open new connections, or send packets to an unconnected UDP destination where the server is not listening.  Another situation where the server is unable to respond is when the server is proxying packets, and the outbound connections are either full or failed.</t>
        <t>In all RADIUS spercifications prior to this one, there is no way for the server to send a client the positive signal that it received a request, but is unable to send a response.  Instead, the server usually just discards the request, which to the client is indistinguishable from the situation where the server is down.  This failure case is made worse by the fact that perhaps some proxied packets succeed while others fail.  The client can only conclude then that the server is randomly dropping packets, and is unreliable.</t>
        <t>It would be very useful for servers to signal to clients that they have received a request, but are unable to process it.  This specification uses the Protocol-Error packet <xref section="4" sectionFormat="comma" target="RFC7930"/> as that signal.  The use of Protocol-Error allows for both hop-by-hop signaling in the case of proxy forwarding errors, and also for end-to-end signaling of server to client.  Such signaling should greatly improve the robustness of the RADIUS protocol.</t>
        <t>When a RADIUS/1.1 server determines that it is unable to process an Access-Request or Accounting-Request packet, it MUST respond with a Protocol-Error packet containing an Error-Cause attribute.  A proxy which cannot forward the packet MUST respond with either 502 (Request Not Routable (Proxy)), or 505 (Other Proxy Processing Error).  This requirement is to help distinguish failures in the proxy chain from failures at the home server,</t>
        <t>For a home server, if none of the Error-Cause values match the reason for the failure, then the value 506 (Resources Unavailable) MUST be used.</t>
        <t>When a RADIUS proxy receives a Protocol-Error reply, it MUST examine the value of the Error-Cause attribute.  If there is no Error-Cause attribute, or its value is something other than 502 (Request Not Routable (Proxy)), 505 (Other Proxy Processing Error), or 506 (Resources Unavailable), the proxy MUST return the Protocol-Error response packet to the client, and include the Error-Cause attribute from the response it received.  This process allows for full "end to end" signaling of servers to clients.</t>
        <t>In all situations other then outlined in the preceding paragraph, a client which receives a Protocol-Error reply MUST re-process the original outgoing packet through the client forwarding algorithm.  This requirement includes both clients which originate RADIUS traffic, and proxies which see an Error-Cause attribute of 502 (Request Not Routable (Proxy)), or 505 (Other Proxy Processing Error).</t>
        <t>The expected result of this processing is that the client forwards the packet to a different server.  Clients MUST NOT forward the packet over the same connection, and SHOULD NOT forward it to over a different connection to the same server.</t>
        <t>This process may continue over multiple connections and multiple servers, until the client either times out the request, or fails to find a forwarding destination for the packet.  A proxy which is unable to forward a packet MUST reply with a Protocol-Error packet containing Error-Cause, as defined above.  A client which originates packets MUST treat such a request as if it had received no response.</t>
        <t>This behavior is intended to improve the stability of the RADIUS protocol by addressing issues first raised in <xref section="2.8" sectionFormat="comma" target="RFC3539"/>.</t>
      </section>
      <section anchor="status-server">
        <name>Status-Server</name>
        <t><xref section="2.6.5" sectionFormat="comma" target="RFC6613"/>, and by extension <xref target="RFC7360"/>, suggest that the Identifier value zero (0) be reserved for use with Status-Server as an application-layer watchdog.  This practice MUST NOT be used for RADIUS/1.1, as the Identifier field is not used in this transport profile.</t>
        <t>The rationale for reserving one value of the Identifier field was the limited number of Identifiers available (256), and the overlap in Identifiers between Access-Request packets and Status-Server packets.  If all 256 Identifier values had been used to send Access-Request packets, then there would be no Identifier value available for sending a Status-Server packet.</t>
        <t>In contrast, the Token field allows for 2^32 outstanding packets on one RADIUS/1.1 connection.  If there is a need to send a Status-Server packet, it is nearly always possible to allocate a new value for the Token field.  If instead there are 2^32 outstanding packets for one connection, then it is likely that something has gone catastrophically wrong.  In that case, the safest way forward is likely to just close the connection.</t>
      </section>
      <section anchor="proxies">
        <name>Proxies</name>
        <t>A RADIUS proxy normally decodes and then re-encodes all attributes, included obfuscated ones.  A RADIUS proxy will not generally rewrite the content of the attributes it proxies (unless site-local policy requires such a rewrite).  While some attributes may be modified due to administrative or policy rules on the proxy, the proxy will generally not rewrite the contents of attributes such as User-Password, Tunnel-Password, CHAP-Password, MS-CHAP-Password, MS-MPPE keys, etc.  All attributes are therefore transported through a RADIUS/1.1 connection without changing their values or contents.</t>
        <t>A proxy may negotiate RADIUS/1.1 (or not) with a particular client or clients, and it may negotiate RADIUS/1.1 (or not) with a server or servers it connect to, in any combination.  As a result, this specification is fully compatible with all past, present, and future RADIUS attributes.</t>
      </section>
    </section>
    <section anchor="other-radius-considerations">
      <name>Other RADIUS Considerations</name>
      <t>This section discusses issues in RADIUS which need to be addressed in order to support ALPN, but which aren't direcly part of the RADIUS/1.1 protocol.</t>
      <section anchor="crypto-agility">
        <name>Crypto-Agility</name>
        <t>The crypto-agility requirements of <xref target="RFC6421"/> are addressed in <xref section="C" sectionFormat="comma" target="RFC6614"/>, and in <xref section="10.1" sectionFormat="comma" target="RFC7360"/>.  This specification makes no changes from, or additions to, those specifications.  The use of ALPN, and the removal of MD5 has no impact on security or privacy of the protocol.</t>
        <t>RADIUS/TLS has been widely deployed in at least eduroam <xref target="RFC7593"/> and <xref target="EDUROAM"/> and in OpenRoaming <xref target="OPENROAMING"/>.  RADIUS/DTLS has seen less adoption, but it is known to be supported in many RADIUS clients and servers.</t>
        <t>It is RECOMMENDED that all implementations of historic RADIUS/TLS be updated to support this specification.  Where a system already implements RADIUS over TLS, the additional effort to implement this specification is minimal.  Once implementations support it, administrators can gain the benefit of it with little or no configuration changes.  This specification is backwards compatible with <xref target="RFC6614"/> and <xref target="RFC7360"/>.  It is only potentially subject to down-bidding attacks if implementations do not enforce ALPN negotiation correctly on session resumption.</t>
        <t>All crypto-agility needed or used by this specification is implemented in TLS.  This specification also removes all cryptographic primitives from the application-layer protocol (RADIUS) being transported by TLS.  As discussed in the following section, this specification also bans the development of all new cryptographic or crypto-agility methods in the RADIUS protocol.</t>
      </section>
      <section anchor="error-cause-attribute">
        <name>Error-Cause Attribute</name>
        <t>The Error-Cause attribute is defined in <xref target="RFC5176"/>. The "Table of Attributes" section given in <xref section="3.6" sectionFormat="comma" target="RFC5176"/> permits that attribute to appear in CoA-NAK and Disconnect-NAK packets.  As no other packet type is listed, the implication is that the Error-Cause attribute cannot appear in any other packet.  <xref target="RFC7930"/> also permits Error-Cause to appear in Protocol-Error packets.</t>
        <t>However, <xref section="2.6.1" sectionFormat="comma" target="RFC5080"/> suggests that Error-Cause may appear in Access-Reject packets.  No explanation is given for this change from <xref target="RFC5176"/>.  There is not even an acknowledgment that this suggestion is a change from any previous specification.  We correct that issue here.</t>
        <t>This specification updates <xref target="RFC5176"/> to allow the Error-Cause attribute to appear in Access-Reject packets.  It is RECOMMENDED that implementations include the Error-Cause attribute in Access-Reject packets where appropriate.</t>
        <t>That is, the reason for sending the Access-Reject packet (or Protocol-Error packet) may match a defined Error-Cause value.  In that case, it is useful for implementations to send an Error-Cause attribute with that value.  This behavior can help RADIUS system administrators debug issues in complex proxy chains.</t>
        <t>For example, a proxy may normally forward Access-Request packets which contain EAP-Message attributes.  The proxy can determine if the contents of the EAP-Message are invalid, for example if the first octet has value larger than 4.  In that case, there may be no benefit to forwarding the packet, as the home server will reject it.  It may then then possible for the proxy (with the knowledge and consent of involved parties) to immediately reply with an Access-Reject containing an Error-Cause attribute with value 202 for "Invalid EAP Packet (Ignored)".</t>
        <t>Another possibility is that if a proxy is configured to forward packets for a particular realm, but it has determined that there are no available connections to the next hop for that realm.  In that case, it may be possible for the proxy (again with the knowledge and consent of involved parties) to reply with an Access-Reject containing an Error-Cause attribute with value 502 for "Request Not Routable (Proxy)"</t>
        <t>These examples are given only for illustrative and informational purposes.  While it is useful to return an informative value for the Error-Cause attribute, proxies can only modify the traffic they forward with the explicit knowledge and consent of all involved parties.</t>
      </section>
      <section anchor="future-standards">
        <name>Future Standards</name>
        <t>Future work may define new attributes, packet types, etc.  It is important to be able to do such work without requiring that every new standard mention RADIUS/1.1 explicitly.  This document defines RADIUS/1.1 as having functional overlap with legacy RADIUS: the protocol state machine is unchanged, the packet header Code field is unchanged, and the attribute format is largely unchanged.  As a result, any new packet Code or attribute defined for RADIUS is explicitly compatible with RADIUS/1.1: the field contents and meanings are identical.  The only difference between the two protocols is that obfuscated attributes in RADIUS are not obfuscated in RADIUS/1.1, and this document defines how that mapping is done.</t>
        <t>Any future specification needs to mention RADIUS/1.1 only if it adds fields to the RADIUS/1.1 packet header.  Otherwise, transport considerations for RADIUS/1.1 are identical to RADIUS over (D)TLS.</t>
        <t>We reiterate that this specification defines a new transport profile for RADIUS.  It does not define a completely new protocol.  Any future specification which defines a new attribute MUST define it for RADIUS/UDP first, after which those definitions can be applied to this transport profile.</t>
        <t>New specifications MAY define new attributes which use the obfuscation methods for User-Password as defined in <xref section="5.2" sectionFormat="comma" target="RFC2865"/>, or for Tunnel-Password as defined in <xref section="3.5" sectionFormat="comma" target="RFC2868"/>.  There is no need for those specifications to describe how those new attributes are transported in RADIUS/1.1.  Since RADIUS/1.1 does not use MD5, any obfuscated attributes will by definition be transported as their underlying data type, "text" (<xref section="3.4" sectionFormat="comma" target="RFC8044"/>) or "string" (<xref section="3.5" sectionFormat="comma" target="RFC8044"/>).</t>
        <t>New RADIUS specifications MUST NOT define attributes which can only be transported via RADIUS over TLS.  The RADIUS protocol has no way to signal the security requirements of individual attributes.  Any existing implementation will handle these new attributes as "invalid attributes" (<xref section="2.8" sectionFormat="comma" target="RFC6929"/>), and could forward them over an insecure link.  As RADIUS security and signaling is hop-by-hop, there is no way for a RADIUS client or server to even know if such forwarding is taking place.  For these reasons and more, it is therefore inappropriate to define new attributes which are only secure if they use a secure transport layer.</t>
        <t>The result is that specifications do not need to mention this transport profile, or make any special provisions for dealing with it.  This specification defines how RADIUS packet encoding, decoding, signing, and verification are performed when using RADIUS/1.1.  So long as any future specification uses the existing encoding, etc. schemes defined for RADIUS, no additional text in future documents is necessary in order to be compatible with RADIUS/1.1.</t>
        <t>We note that it is theoretically possible for future standards to define new cryptographic primitives for use with RADIUS/UDP.  In that case, those documents would likely have to describe how to transport that data in RADIUS/1.1.  We believe that such standards are unlikely to be published, as other efforts in the RADEXT working group are forbidding such updates to RADIUS.</t>
      </section>
    </section>
    <section anchor="implementation-status">
      <name>Implementation Status</name>
      <t>(This section to be removed by the RFC editor.)</t>
      <t>This specification is being implemented (client and server) in the FreeRADIUS project which is hosted on GitHub at https://github.com/FreeRADIUS/freeradius-server/tree/v3.2.x  The code implementation "diff" is approximately 1,000 lines, including build system changes and changes to configuration parsers.</t>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>This specification requires secure transport for RADIUS.  RADIUS/1.1. has all of the privacy benefits of RADIUS/TLS <xref target="RFC6614"/> and RADIUS/DTLS <xref target="RFC7360"/>, and none of the privacy or security issues of RADIUS/UDP <xref target="RFC2865"/> or RADIUS/TCP <xref target="RFC6613"/>.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The primary focus of this document is addressing security considerations for RADIUS.  This specification relies on TLS and associated ALPN negotiation for much of its security.  We refer the reader to <xref target="RFC8446"/> and <xref target="RFC7360"/> for discussions of the security of those protocols.  The discussion in this section is limited to issues unique to this specification.</t>
      <t>Implementations should rely on the underlying TLS library to perform ALPN version negotiation.  That is, implementations should supply a list of permitted ALPN strings to the TLS library, and let it return the negotiated value.</t>
      <t>There are few other opportunities for security issues.  If an implementation gets ALPN negotiation wrong, then the wrong application data will be transported inside of TLS.  While RADIUS/1.0 and RADIUS/1.1 share similar packet formats, the protocols are not mutually compatible.</t>
      <t>RADIUS/1.0 requests sent over a RADIUS/1.1 connection may be accepted by the RADIUS/1.1 server, as the server will ignore the ID field, and try to use portions of the Request Authenticator as a Token.  However, the reply from the RADIUS/1.1 server will fail the Response Authenticator validation by the RADIUS/1.0 client.  The responses will therefore be dropped.  The client will generally log these failures, and an administrator will address the issue.</t>
      <t>RADIUS/1.1 requests sent over a RADIUS/1.0 connection will generally be discarded the the RADIUS/1.0 server, as the packets will fail the Request Authenticator checks.  That is, all request packets such as Accounting-Request, CoA-Request, and Disconnect-Request will be discarded by the server.  For Access-Request packets containing EAP-Message, the packets will be missing Message-Authenticator, and will therefore be discarded by the server.  Other Access-Request packets contain obfuscated attributes such as User-Password will have those attributes decoded to nonsense, and will thus result in Access-Reject responses.</t>
      <t>RADIUS/1.1 Access-Request packets containing non-obfuscated attributes such as CHAP-Password may be accepted by a RADIUS/1.0 server but the response will contain a Response Authenticator (i.e. MD5 hash), and not a Token which matches the Token in the request.  A similar analysis applies for Access-Request packets containing Service-Type = Authorize-Only.</t>
      <t>In conclusion, any mismatch of versions between client and server will result in most request packets being discarded by the server, and all response packets being discarded by the client.  The two protocols are therefore incompatible, and safe from misconfigurations or erroneous implementations.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA is requested to update the "TLS Application-Layer Protocol Negotiation (ALPN) Protocol IDs" registry with two new entries:</t>
      <artwork><![CDATA[
Protocol: RADIUS/1.0
Id. Sequence: 0x72 0x61 0x64 0x69 0x75 0x73 0x2f 0x31 0x2e 0x30
    ("radius/1.0")
Reference:  This document

Protocol: RADIUS/1.1
Id. Sequence: 0x72 0x61 0x64 0x69 0x75 0x73 0x2f 0x31 0x2e 0x31
    ("radius/1.1")
Reference:  This document
]]></artwork>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>In hindsight, the decision to retain MD5 for historic RADIUS/TLS was likely wrong.  It was an easy decision to make in the short term, but it has caused ongoing problems which this document addresses.</t>
      <t>Thanks to Bernard Aboba, Karri Huhtanen, Heikki Vatiainen, Alexander Clouter, Michael Richardson, Hannes Tschofenig, Matthew Newton, and Josh Howlett for reviews and feedback.</t>
    </section>
    <section anchor="changelog">
      <name>Changelog</name>
      <t>(This section to be removed by the RFC editor.)</t>
      <t>draft-dekok-radext-sradius-00</t>
      <ul empty="true">
        <li>
          <t>Initial Revision</t>
        </li>
      </ul>
      <t>draft-dekok-radext-radiusv11-00</t>
      <ul empty="true">
        <li>
          <t>Use ALPN from RFC 7301, instead of defining a new port.  Drop the name "SRADIUS".</t>
          <t>Add discussion of Original-Packet-Code</t>
        </li>
      </ul>
      <t>draft-dekok-radext-radiusv11-01</t>
      <ul empty="true">
        <li>
          <t>Update formatting.</t>
        </li>
      </ul>
      <t>draft-dekok-radext-radiusv11-02</t>
      <ul empty="true">
        <li>
          <t>Add Flag field and description.</t>
          <t>Minor rearrangements and updates to text.</t>
        </li>
      </ul>
      <t>draft-dekok-radext-radiusv11-03</t>
      <ul empty="true">
        <li>
          <t>Remove Flag field and description based on feedback and expected use-cases.</t>
          <t>Use "radius/1.0" instead of "radius/1"</t>
          <t>Consistently refer to the specification as "RADIUSv11", and consistently quote the ALPN name as "radius/1.1"</t>
          <t>Add discussion of future attributes and future crypto-agility work.</t>
        </li>
      </ul>
      <t>draft-dekok-radext-radiusv11-04</t>
      <ul empty="true">
        <li>
          <t>Remove "radius/1.0" as it is unnecessary.</t>
          <t>Update Introduction with more historical background, which motivates the rest of the section.</t>
          <t>Change Identifier field to be reserved, as it is entirely unused.</t>
          <t>Update discussion on clear text passwords.</t>
          <t>Clarify discussion of Status-Server, User-Password, and Tunnel-Password.</t>
          <t>Give high level summary of ALPN, clear up client / server roles, and remove "radius/1.0" as it is unnecessary.</t>
          <t>Add text on RFC6421.</t>
        </li>
      </ul>
      <t>draft-dekok-radext-radiusv11-05</t>
      <ul empty="true">
        <li>
          <t>Clarify naming.  "radius/1.1" is the ALPN name.  "RADIUS/1.1" is the transport profile.</t>
          <t>Clarify that future specifications do not need to make provisions for dealing with this transport profile.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>Typos and word smithing.</t>
          <t>Define and use "RADIUS over TLS" instead of RADIUS/(D)TLS.</t>
          <t>Many cleanups and rework based on feedback from Matthew Newton.</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-00</t>
      <ul empty="true">
        <li>
          <t>No changes from previous draft.</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-01</t>
      <ul empty="true">
        <li>
          <t>Move to "experimental" based on WG feedback.</t>
          <t>Many cleanups based on review from Matthew Newton</t>
          <t>Removed requirement for supporting TLS-PSK.</t>
          <t>This document does not deprecate new cryptographic work in RADIUS.  The "deprecating insecure transports" document does that.</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-02</t>
      <ul empty="true">
        <li>
          <t>Note that we also update RFC 7930</t>
          <t>Minor updates to text.</t>
          <t>Add text explaining why "allow" is the default, and how to upgrade to "require"</t>
          <t>Discuss the use of the TLS alert "no_application_protocol" (120), and its limitations.</t>
          <t>Suggest the use of Protocol-Error as an application signal when it is not possible to send a "no_application_protocol" TLS alert.</t>
          <t>Update discussion of Message-Authenticator, and suggest that RADIUS/1.1 proxies always add Message-Authenticator to Access-Request packets being sent over UDP or TCP.</t>
          <t>Add term "historic RADIUS/TLS" as it is simpler than more awkward "6614 or 7360".</t>
          <t>Re-add ALPN "radius/1.0" based on comments from Heikki.  It signals that the system is ALPN-capable, among other.</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-03</t>
      <ul empty="true">
        <li>
          <t>Rename to "RADIUS ALPN and removing MD5"</t>
          <t>Add a few things missed when re-adding "radius/1.0"</t>
          <t>Clarify wording in a number of places.</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-04</t>
      <ul empty="true">
        <li>
          <t>Address github issues 3..9</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-05</t>
      <ul empty="true">
        <li>
          <t>Add discussion of Protocol-Error as per-link signalling.</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-06</t>
      <ul empty="true">
        <li>
          <t>Review from Paul Wouters</t>
          <t>Clarify client handling of Protocol-Error</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-07</t>
      <ul empty="true">
        <li>
          <t>Clarifications as requested by Jan-Frederik</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-08</t>
      <ul empty="true">
        <li>
          <t>Review from Claudio Allocchio</t>
        </li>
      </ul>
      <t>draft-ietf-radext-radiusv11-09</t>
      <ul empty="true">
        <li>
          <t>Review from Barry Lieba</t>
        </li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC2865">
          <front>
            <title>Remote Authentication Dial In User Service (RADIUS)</title>
            <author fullname="C. Rigney" initials="C." surname="Rigney"/>
            <author fullname="S. Willens" initials="S." surname="Willens"/>
            <author fullname="A. Rubens" initials="A." surname="Rubens"/>
            <author fullname="W. Simpson" initials="W." surname="Simpson"/>
            <date month="June" year="2000"/>
            <abstract>
              <t>This document describes a protocol for carrying authentication, authorization, and configuration information between a Network Access Server which desires to authenticate its links and a shared Authentication Server. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2865"/>
          <seriesInfo name="DOI" value="10.17487/RFC2865"/>
        </reference>
        <reference anchor="RFC6421">
          <front>
            <title>Crypto-Agility Requirements for Remote Authentication Dial-In User Service (RADIUS)</title>
            <author fullname="D. Nelson" initials="D." role="editor" surname="Nelson"/>
            <date month="November" year="2011"/>
            <abstract>
              <t>This memo describes the requirements for a crypto-agility solution for Remote Authentication Dial-In User Service (RADIUS). This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6421"/>
          <seriesInfo name="DOI" value="10.17487/RFC6421"/>
        </reference>
        <reference anchor="RFC6929">
          <front>
            <title>Remote Authentication Dial In User Service (RADIUS) Protocol Extensions</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <author fullname="A. Lior" initials="A." surname="Lior"/>
            <date month="April" year="2013"/>
            <abstract>
              <t>The Remote Authentication Dial-In User Service (RADIUS) protocol is nearing exhaustion of its current 8-bit Attribute Type space. In addition, experience shows a growing need for complex grouping, along with attributes that can carry more than 253 octets of data. This document defines changes to RADIUS that address all of the above problems.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6929"/>
          <seriesInfo name="DOI" value="10.17487/RFC6929"/>
        </reference>
        <reference anchor="RFC6614">
          <front>
            <title>Transport Layer Security (TLS) Encryption for RADIUS</title>
            <author fullname="S. Winter" initials="S." surname="Winter"/>
            <author fullname="M. McCauley" initials="M." surname="McCauley"/>
            <author fullname="S. Venaas" initials="S." surname="Venaas"/>
            <author fullname="K. Wierenga" initials="K." surname="Wierenga"/>
            <date month="May" year="2012"/>
            <abstract>
              <t>This document specifies a transport profile for RADIUS using Transport Layer Security (TLS) over TCP as the transport protocol. This enables dynamic trust relationships between RADIUS servers. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6614"/>
          <seriesInfo name="DOI" value="10.17487/RFC6614"/>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl"/>
            <author fullname="A. Popov" initials="A." surname="Popov"/>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="E. Stephan" initials="E." surname="Stephan"/>
            <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="RFC7360">
          <front>
            <title>Datagram Transport Layer Security (DTLS) as a Transport Layer for RADIUS</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="September" year="2014"/>
            <abstract>
              <t>The RADIUS protocol defined in RFC 2865 has limited support for authentication and encryption of RADIUS packets. The protocol transports data in the clear, although some parts of the packets can have obfuscated content. Packets may be replayed verbatim by an attacker, and client-server authentication is based on fixed shared secrets. This document specifies how the Datagram Transport Layer Security (DTLS) protocol may be used as a fix for these problems. It also describes how implementations of this proposal can coexist with current RADIUS systems.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7360"/>
          <seriesInfo name="DOI" value="10.17487/RFC7360"/>
        </reference>
        <reference anchor="RFC8044">
          <front>
            <title>Data Types in RADIUS</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>RADIUS specifications have used data types for two decades without defining them as managed entities. During this time, RADIUS implementations have named the data types and have used them in attribute definitions. This document updates the specifications to better follow established practice. We do this by naming the data types defined in RFC 6158, which have been used since at least the publication of RFC 2865. We provide an IANA registry for the data types and update the "RADIUS Attribute Types" registry to include a Data Type field for each attribute. Finally, we recommend that authors of RADIUS specifications use these types in preference to existing practice. This document updates RFCs 2865, 3162, 4072, 6158, 6572, and 7268.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8044"/>
          <seriesInfo name="DOI" value="10.17487/RFC8044"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC1321">
          <front>
            <title>The MD5 Message-Digest Algorithm</title>
            <author fullname="R. Rivest" initials="R." surname="Rivest"/>
            <date month="April" year="1992"/>
            <abstract>
              <t>This document describes the MD5 message-digest algorithm. The algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. This memo provides information for the Internet community. It does not specify an Internet standard.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1321"/>
          <seriesInfo name="DOI" value="10.17487/RFC1321"/>
        </reference>
        <reference anchor="RFC2548">
          <front>
            <title>Microsoft Vendor-specific RADIUS Attributes</title>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <date month="March" year="1999"/>
            <abstract>
              <t>This document describes the set of Microsoft vendor-specific RADIUS attributes. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2548"/>
          <seriesInfo name="DOI" value="10.17487/RFC2548"/>
        </reference>
        <reference anchor="RFC2866">
          <front>
            <title>RADIUS Accounting</title>
            <author fullname="C. Rigney" initials="C." surname="Rigney"/>
            <date month="June" year="2000"/>
            <abstract>
              <t>This document describes a protocol for carrying accounting information between a Network Access Server and a shared Accounting Server. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2866"/>
          <seriesInfo name="DOI" value="10.17487/RFC2866"/>
        </reference>
        <reference anchor="RFC2868">
          <front>
            <title>RADIUS Attributes for Tunnel Protocol Support</title>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <author fullname="D. Leifer" initials="D." surname="Leifer"/>
            <author fullname="A. Rubens" initials="A." surname="Rubens"/>
            <author fullname="J. Shriver" initials="J." surname="Shriver"/>
            <author fullname="M. Holdrege" initials="M." surname="Holdrege"/>
            <author fullname="I. Goyret" initials="I." surname="Goyret"/>
            <date month="June" year="2000"/>
            <abstract>
              <t>This document defines a set of RADIUS (Remote Authentication Dial In User Service) attributes designed to support the provision of compulsory tunneling in dial-up networks. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2868"/>
          <seriesInfo name="DOI" value="10.17487/RFC2868"/>
        </reference>
        <reference anchor="RFC3539">
          <front>
            <title>Authentication, Authorization and Accounting (AAA) Transport Profile</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="J. Wood" initials="J." surname="Wood"/>
            <date month="June" year="2003"/>
            <abstract>
              <t>This document discusses transport issues that arise within protocols for Authentication, Authorization and Accounting (AAA). It also provides recommendations on the use of transport by AAA protocols. This includes usage of standards-track RFCs as well as experimental proposals. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3539"/>
          <seriesInfo name="DOI" value="10.17487/RFC3539"/>
        </reference>
        <reference anchor="RFC3579">
          <front>
            <title>RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="P. Calhoun" initials="P." surname="Calhoun"/>
            <date month="September" year="2003"/>
            <abstract>
              <t>This document defines Remote Authentication Dial In User Service (RADIUS) support for the Extensible Authentication Protocol (EAP), an authentication framework which supports multiple authentication mechanisms. In the proposed scheme, the Network Access Server (NAS) forwards EAP packets to and from the RADIUS server, encapsulated within EAP-Message attributes. This has the advantage of allowing the NAS to support any EAP authentication method, without the need for method- specific code, which resides on the RADIUS server. While EAP was originally developed for use with PPP, it is now also in use with IEEE 802. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3579"/>
          <seriesInfo name="DOI" value="10.17487/RFC3579"/>
        </reference>
        <reference anchor="RFC5176">
          <front>
            <title>Dynamic Authorization Extensions to Remote Authentication Dial In User Service (RADIUS)</title>
            <author fullname="M. Chiba" initials="M." surname="Chiba"/>
            <author fullname="G. Dommety" initials="G." surname="Dommety"/>
            <author fullname="M. Eklund" initials="M." surname="Eklund"/>
            <author fullname="D. Mitton" initials="D." surname="Mitton"/>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a currently deployed extension to the Remote Authentication Dial In User Service (RADIUS) protocol, allowing dynamic changes to a user session, as implemented by network access server products. This includes support for disconnecting users and changing authorizations applicable to a user session. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5176"/>
          <seriesInfo name="DOI" value="10.17487/RFC5176"/>
        </reference>
        <reference anchor="RFC6151">
          <front>
            <title>Updated Security Considerations for the MD5 Message-Digest and the HMAC-MD5 Algorithms</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="L. Chen" initials="L." surname="Chen"/>
            <date month="March" year="2011"/>
            <abstract>
              <t>This document updates the security considerations for the MD5 message digest algorithm. It also updates the security considerations for HMAC-MD5. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6151"/>
          <seriesInfo name="DOI" value="10.17487/RFC6151"/>
        </reference>
        <reference anchor="RFC6218">
          <front>
            <title>Cisco Vendor-Specific RADIUS Attributes for the Delivery of Keying Material</title>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <author fullname="T. Zhang" initials="T." surname="Zhang"/>
            <author fullname="J. Walker" initials="J." surname="Walker"/>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines a set of vendor-specific RADIUS Attributes designed to allow both the secure transmission of cryptographic keying material and strong authentication of any RADIUS message. These attributes have been allocated from the Cisco vendor-specific space and have been implemented by multiple vendors. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6218"/>
          <seriesInfo name="DOI" value="10.17487/RFC6218"/>
        </reference>
        <reference anchor="RFC6613">
          <front>
            <title>RADIUS over TCP</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="May" year="2012"/>
            <abstract>
              <t>The Remote Authentication Dial-In User Server (RADIUS) protocol has, until now, required the User Datagram Protocol (UDP) as the underlying transport layer. This document defines RADIUS over the Transmission Control Protocol (RADIUS/TCP), in order to address handling issues related to RADIUS over Transport Layer Security (RADIUS/TLS). It permits TCP to be used as a transport protocol for RADIUS only when a transport layer such as TLS or IPsec provides confidentiality and security. This document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6613"/>
          <seriesInfo name="DOI" value="10.17487/RFC6613"/>
        </reference>
        <reference anchor="RFC7585">
          <front>
            <title>Dynamic Peer Discovery for RADIUS/TLS and RADIUS/DTLS Based on the Network Access Identifier (NAI)</title>
            <author fullname="S. Winter" initials="S." surname="Winter"/>
            <author fullname="M. McCauley" initials="M." surname="McCauley"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This document specifies a means to find authoritative RADIUS servers for a given realm. It is used in conjunction with either RADIUS over Transport Layer Security (RADIUS/TLS) or RADIUS over Datagram Transport Layer Security (RADIUS/DTLS).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7585"/>
          <seriesInfo name="DOI" value="10.17487/RFC7585"/>
        </reference>
        <reference anchor="RFC7593">
          <front>
            <title>The eduroam Architecture for Network Roaming</title>
            <author fullname="K. Wierenga" initials="K." surname="Wierenga"/>
            <author fullname="S. Winter" initials="S." surname="Winter"/>
            <author fullname="T. Wolniewicz" initials="T." surname="Wolniewicz"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>This document describes the architecture of the eduroam service for federated (wireless) network access in academia. The combination of IEEE 802.1X, the Extensible Authentication Protocol (EAP), and RADIUS that is used in eduroam provides a secure, scalable, and deployable service for roaming network access. The successful deployment of eduroam over the last decade in the educational sector may serve as an example for other sectors, hence this document. In particular, the initial architectural choices and selection of standards are described, along with the changes that were prompted by operational experience.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7593"/>
          <seriesInfo name="DOI" value="10.17487/RFC7593"/>
        </reference>
        <reference anchor="RFC7930">
          <front>
            <title>Larger Packets for RADIUS over TCP</title>
            <author fullname="S. Hartman" initials="S." surname="Hartman"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>The RADIUS-over-TLS experiment described in RFC 6614 has opened RADIUS to new use cases where the 4096-octet maximum size limit of a RADIUS packet proves problematic. This specification extends the RADIUS-over-TCP experiment (RFC 6613) to permit larger RADIUS packets. This specification compliments other ongoing work to permit fragmentation of RADIUS authorization information. This document registers a new RADIUS code, an action that required IESG approval.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7930"/>
          <seriesInfo name="DOI" value="10.17487/RFC7930"/>
        </reference>
        <reference anchor="EDUROAM" target="https://eduroam.org">
          <front>
            <title>eduroam</title>
            <author initials="" surname="eduroam" fullname="eduroam">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="OPENROAMING" target="https://wballiance.com/openroaming/">
          <front>
            <title>OpenRoaming: One global Wi-Fi network</title>
            <author initials="W. B." surname="Alliance" fullname="Wireless Broadband Alliance">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC5077">
          <front>
            <title>Transport Layer Security (TLS) Session Resumption without Server-Side State</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <author fullname="H. Zhou" initials="H." surname="Zhou"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a mechanism that enables the Transport Layer Security (TLS) server to resume sessions and avoid keeping per-client session state. The TLS server encapsulates the session state into a ticket and forwards it to the client. The client can subsequently resume a session using the obtained ticket. This document obsoletes RFC 4507. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5077"/>
          <seriesInfo name="DOI" value="10.17487/RFC5077"/>
        </reference>
        <reference anchor="RFC5931">
          <front>
            <title>Extensible Authentication Protocol (EAP) Authentication Using Only a Password</title>
            <author fullname="D. Harkins" initials="D." surname="Harkins"/>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This memo describes an Extensible Authentication Protocol (EAP) method, EAP-pwd, which uses a shared password for authentication. The password may be a low-entropy one and may be drawn from some set of possible passwords, like a dictionary, which is available to an attacker. The underlying key exchange is resistant to active attack, passive attack, and dictionary attack. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5931"/>
          <seriesInfo name="DOI" value="10.17487/RFC5931"/>
        </reference>
        <reference anchor="RFC5281">
          <front>
            <title>Extensible Authentication Protocol Tunneled Transport Layer Security Authenticated Protocol Version 0 (EAP-TTLSv0)</title>
            <author fullname="P. Funk" initials="P." surname="Funk"/>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>EAP-TTLS is an EAP (Extensible Authentication Protocol) method that encapsulates a TLS (Transport Layer Security) session, consisting of a handshake phase and a data phase. During the handshake phase, the server is authenticated to the client (or client and server are mutually authenticated) using standard TLS procedures, and keying material is generated in order to create a cryptographically secure tunnel for information exchange in the subsequent data phase. During the data phase, the client is authenticated to the server (or client and server are mutually authenticated) using an arbitrary authentication mechanism encapsulated within the secure tunnel. The encapsulated authentication mechanism may itself be EAP, or it may be another authentication protocol such as PAP, CHAP, MS-CHAP, or MS-CHAP-V2. Thus, EAP-TTLS allows legacy password-based authentication protocols to be used against existing authentication databases, while protecting the security of these legacy protocols against eavesdropping, man-in-the-middle, and other attacks. The data phase may also be used for additional, arbitrary data exchange. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5281"/>
          <seriesInfo name="DOI" value="10.17487/RFC5281"/>
        </reference>
        <reference anchor="RFC5080">
          <front>
            <title>Common Remote Authentication Dial In User Service (RADIUS) Implementation Issues and Suggested Fixes</title>
            <author fullname="D. Nelson" initials="D." surname="Nelson"/>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="December" year="2007"/>
            <abstract>
              <t>This document describes common issues seen in Remote Authentication Dial In User Service (RADIUS) implementations and suggests some fixes. Where applicable, ambiguities and errors in previous RADIUS specifications are clarified. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5080"/>
          <seriesInfo name="DOI" value="10.17487/RFC5080"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <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>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
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
c5IMJ/8HXBpTumEYAQA=

-->

</rfc>
