<?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.19 (Ruby 3.1.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-iotops-mud-acceptable-urls-00" category="std" consensus="true" updates="8520" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.1 -->
  <front>
    <title abbrev="mud-acceptable-urls">Authorized update to MUD URLs</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-iotops-mud-acceptable-urls-00"/>
    <author initials="M." surname="Richardson" fullname="Michael Richardson">
      <organization>Sandelman Software Works</organization>
      <address>
        <email>mcr+ietf@sandelman.ca</email>
      </address>
    </author>
    <author initials="W." surname="Pan" fullname="Wei Pan">
      <organization>Huawei Technologies</organization>
      <address>
        <email>william.panwei@huawei.com</email>
      </address>
    </author>
    <author initials="E." surname="Lear" fullname="Eliot Lear">
      <organization>Cisco Systems</organization>
      <address>
        <email>lear@cisco.com</email>
      </address>
    </author>
    <date year="2025" month="May" day="07"/>
    <area>Operations</area>
    <workgroup>IOTOPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 71?>

<t>This document provides a way for an RFC8520 Manufacturer Usage Description
(MUD) definitions to declare what are acceptable replacement MUD URLs for a device.</t>
      <t>RFCEDITOR-please-remove: this document is being worked on at: https://github.com/mcr/iot-mud-acceptable-urls</t>
    </abstract>
  </front>
  <middle>
    <?line 78?>

<section anchor="introduction">
      <name>Introduction</name>
      <t><xref target="RFC8520"/> provides a standardized way to describe how a specific purpose
device makes use of Internet resources and associated suggested network behavior.
The behaviors are described in a MUD file hosted in its manufacturer's server.
The device provides a MUD URL to the MUD controller, which can locate this MUD file
and determine the required network authorization of the device.</t>
      <t>In some cases, e.g., the firmware update, the network behaviors of the device may change,
and the description in the original MUD file will no longer apply.
To solve this problem, there are two common ways which the manufacturer can use.</t>
      <t>One is to change what is in the MUD file, i.e., update the MUD file in place, whenever the behavior of the firmware changes.
<xref target="updatemudfiles"/> discusses three scenarios for updating the MUD file and the corresponding potential issues.</t>
      <t>The other is to change which MUD file is processed by changing the MUD URL.
<xref target="updatemudurls"/> describes the common sources of MUD URLs and the problems and threats faced by each type of source when updating the MUD URL.
This document proposes an enhanced mechanism of how to securely update the MUD URL in <xref target="proposedmechanism"/>.</t>
      <t>There are also some assumptions and prerequisites in this document.</t>
      <t>While MUD files may include signatures, <xref target="RFC8520"/> does not mandate checking them, and
there is not a clear way to connect the entity which signed the MUD file to the device itself.
This document limits itself to situations in which the MUD file is signed,
and that the MUD controller has been configured to always check the signatures,
rejecting files whose signatures do not validate.</t>
      <t><xref target="RFC8520"/> does not specify how MUD controllers establish their trust in the manufacturers' signing key:
there are many possible solutions from manual configuration of trust anchors,
some kind of automatic configuration during onboarding,
or a Trust on First Use (TOFU) mechanism that accepts the signer on first use.
How this initial trust is established is not important for this document,
it is sufficient that some satisfactory initial trust is established.</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>
    </section>
    <section anchor="updatemudfiles">
      <name>Risk analysis of updating the MUD files in place</name>
      <t>This section explains three scenarios where updating the MUD file in place
could cause security issues for the devices involved.
This section explains why changing the MUD url to point to a new file is important.</t>
      <section anchor="adding-capabilities">
        <name>Adding capabilities</name>
        <t>For situations where new capabilities are added to the firmware, the MUD file will detail the new access that the new firmware requires.
This may involve new incoming or outgoing connections that should be authorized.
Devices that have been upgraded to the new firmware will make use of the new features.
Devices that have not been upgraded to the new firmware may have new connections that are authorized, but which the device does not use (outgoing connections), or which the device is not prepared to respond to (new incoming connections).</t>
        <t>It is possible that older versions of the firmware have vulnerabilities that were not easily exploitable due to the MUD file preventing particular kinds of access.
For example, an older firmware could have no credentials required (or default credentials) access via telnet on port 23 or HTTP on port 80.
The MUD file protected the device such that it could either not be accessed at all, or access was restricted to connections from a controller only.</t>
        <t>Useful and needed upgrades to the firmware could add credentials to that service, allowing it to be opened up for more general access.
The new MUD file would provide for such access, but when combined with the weak security of the old firmware, it results in a compromised device.</t>
        <t>While there is an argument that old firmware was insecure and should be replaced, it is often the case that the upgrade process involves downtime, or can introduce risks due to needed evaluations not having been completed yet.</t>
      </section>
      <section anchor="removing-capabilities">
        <name>Removing capabilities</name>
        <t>For situations where existing capabilities prove to be a problem and are to be turned off or removed in subsequent versions of the firmware, the MUD file will be updated to disallow connections that previously were allowed.</t>
        <t>In this case, the new MUD file will forbid some connections, which the old firmware still expects to do.
As explained in the previous section, upgrades may not always occur immediately upon releasing the new firmware.</t>
        <t>In this case, the old device will be performing unwanted connections, and the MUD controller will be alerting the network owner that the device is misbehaving rather than not being upgraded.
This causes a false-positive situation (see <xref target="boycrieswolf"/>), leading to real security issues being ignored.
This is a serious issue as documented also in <xref target="boywolfinfosec"/>, and <xref target="falsemalware"/>.</t>
      </section>
      <section anchor="significant-changes-to-protocols">
        <name>Significant changes to protocols</name>
        <t><xref target="I-D.ietf-opsawg-mud-tls"/> suggests MUD definitions to allow examination of TLS protocol details.
Such a profile may be very specific to the TLS library which is shipped in a device.
Changes to the library (including bug fixes) may cause significant changes to
the profile, requiring changes to the profile described in the MUD file.
Such changes are likely neither forward nor backward compatible with other
versions, and in place updates to MUD files are therefore not advised.</t>
      </section>
      <section anchor="motivation-for-updating-mud-urls">
        <name>Motivation for updating MUD URLs</name>
        <t>While many small tweaks to a MUD file can be done in place, the situation
described above, particularly when it comes to removing capabilities will
suggest that changes to the MUD URL are in order.
A strategy for doing this securely is needed, and the rest of this document
provides a mechanism to do this securely.</t>
      </section>
    </section>
    <section anchor="updatemudurls">
      <name>Updating the MUD URLs</name>
      <t>MUD URLs can come from a number of sources:</t>
      <ul spacing="normal">
        <li>
          <t>IDevID Extensions</t>
        </li>
        <li>
          <t>DHCP option</t>
        </li>
        <li>
          <t>LLDP TLV</t>
        </li>
        <li>
          <t><xref target="RFC9238"/> standardizes scanning MUD URLs from QRcodes.</t>
        </li>
      </ul>
      <t>The IDevID mechanism provides a URL that is asserted cryptographically by a manufacturer.
However, it is difficult for manufacturers to update the IDevID of a device which is already in a box.</t>
      <t>The DHCP and LLDP mechanisms are not signed, but are asserted by the device.
A firmware update may update what MUD URL is emitted.
Sufficiently well targeted malware would also be able to change the MUD URL that is emitted.</t>
      <t>The QRcode mechanism is usually done via paper/stickers, and is typically not under the control of the device itself at all.
However, being applied by a human and not easily changed, a MUD URL obtained in this fashion is likely as trustworthy as the rest of the vendors packaging.
(It may not, due to mixups in labeling represent the correct device, but this is a human coordination issue, and is out of scope for this document.)</t>
      <t>The manufacturer can use all the four mechanisms above when manufacturing the device.
But when considering updating the firmware, it seems like only the DHCP and LLDP mechanisms
are sufficiently easy to send the new MUD URL.
Because of that sensitivity, they may also be easily changed by malware!</t>
      <t>There are mitigating mechanisms which may be enough to deal with this problem when MUD
files are signed by the manufacturer.</t>
      <t><xref section="13.2" sectionFormat="comma" target="RFC8520"/> explains how to verify MUD File Signatures.
That document does not define a way for a MUD controller to determine who should sign the MUD file for a particular device.</t>
      <t><xref target="RFC8520"/> leaves this for a local policy.
This document establishes one such local policy.
There are a number of other processes that could be used, it is expected that
many such industrial vertical will work out supply chain arrangements or other
heuristics to supply appropriate anchors.</t>
      <section anchor="leveraging-the-manufacturer-signature">
        <name>Leveraging the manufacturer signature</name>
        <t>The first time a signature of the MUD file related to a particular device-type
is verified by the MUD controller, the identity of the signing authority is recorded.
That it, the signing authority is pinned.
This policy means that subsequent MUD files must be signed by the same entity in order to be accepted.</t>
        <t>The trust and acceptance of the first signer may come from many sources.
The first signature could be from a manually configured trust anchor in the MUD controller.
The first signature could be Trust on First Use (TOFU), with the URL coming from a trusted IDevID certificate.</t>
        <t>Based upon this process, an update to the MUD URL would be valid if the new
MUD file was signed by the same entity that signed the previous entry.
This mechanism permits a replacement URL to be any URL that the same
manufacturer can provide.</t>
      </section>
      <section anchor="concerns-about-same-signer-mechanism">
        <name>Concerns about same-signer mechanism</name>
        <t>There is still a potential threat: a manufacturer which has many products may
have a MUD definition for another product that has the privileges that the
malware desires.</t>
        <t>The malware could simply change the MUD URL expressed by DHCP or LLDP to that
of another product, and it will be accepted by the MUD controller as valid,
since the MUD file is signed by the same manufacturer.
(e.g., The malware in a BrandName refriderator claims to be a BrandName Washing
Machine, and therefore gets the priviledges of the other device)</t>
        <t>This works as long as manufacturers use a single key to sign all products.
Some manufacturers could sign each product with a different key.
Such manufacturers would probably then collect all the signing keys into a certificate infrastructure (PKI), with a single manufacturer CA key.</t>
        <t>In this case, the question then becomes whether the MUD controller should pin the End-Entity (EE) certificate, or the CA certificate.</t>
        <t>Pinning the End-Entity (EE) certificate defends against malware that changes the product type, but prevents the manufacturer from being able to cycle the validity of the End-Entity certificate for cryptographic hygiene reasons.</t>
        <t>Pinning the CA certificate allows the EE certificate to change, but may not defend against product type changes.</t>
        <t>It is possible to invent policy mechanisms that would link the EE certificate to a value that is in the MUD file.
This could be a policy OID, or could involve some content in a subjectAltName.
Future work could go in that direction.
This document proposes a simpler solution.</t>
      </section>
    </section>
    <section anchor="proposedmechanism">
      <name>Proposed mechanism for updating MUD URLs</name>
      <t>The document proposes to limit what MUD URLs are considered valid from the device, limiting new MUD URLs to be variations of the initial (presumed to be secure) URL.</t>
      <t>The first MUD file which is defined for a device can come from an IDevID (which is considered more secure),
or via Trust on First Use with DHCP or LLDP or other mechanisms. This first, initially trusted, MUD file will be called the "root" MUD file.</t>
      <t>A MUD file contains a self-referential MUD-URL attribute that points to
the MUD file itself located on the vendor's website.
While the IDevID, DHCP and LLDP mechanisms only transmit a URL, there are
some newer, not yet standardized proposals that would fetch an entire MUD
file from the device, such as <xref target="I-D.jimenez-t2trg-mud-coap"/>.</t>
      <t>The MUD-URL MUST always be an Absolute URI: see <xref target="RFC3986"/> section 4.3.</t>
      <t>The URL found in the MUD-URL attribute is to be called the canonical MUD URL for the device.</t>
      <t>The MUD-SIGNATURE attribute in the MUD file SHOULD be a relative URI (see <xref target="RFC3986"/> section 4.2) with the (hierarchical) base URI for this reference being the MUD-URL attribute.</t>
      <t>When pinning the signature, the MUD manager SHOULD use the
SubjectKeyIdentifier (SKI) <xref section="4.2.1.2" sectionFormat="comma" target="RFC5280"/> of the Certificate
Authority (CA) when pinning the certificate authority.  With this, the chain of Subject
Names and/or SubjectAltNames leading to the (end entity) signing certificate
needs to be recorded.
The MUD manager may need additional trust anchors (including previously
pinned ones) in order to verify that CA certificate.
This process allows for the manufacturer to generate new end-entity signing
certificates, as the certificates for this key expire.</t>
      <section anchor="small-changes-to-the-mud-url">
        <name>Small Changes to the MUD URL</name>
        <t>Subsequent MUD files are considered valid if:</t>
        <ul spacing="normal">
          <li>
            <t>they have the same initial Base-URI as the MUD-URL, but may have a different final part</t>
          </li>
          <li>
            <t>they are signed by an equivalent End Entity (same trusted CA and same Subject Name) as the "root" MUD file.</t>
          </li>
        </ul>
        <t>Section 5.2 of <xref target="RFC3986"/> details many cases for calculating the Base-URI.</t>
        <t>Section 3.3 of <xref target="RFC3986"/> explains how the different parts of the URL are
described.
As explained in that section, a <em>path</em> component consists of a series of
<em>segment</em> seperated by slash ("/") characters.
The new URL is considered acceptable if it contains the same series of
segments in its path, excepting that the last segment may be different.</t>
        <t>For a simple example, if the canonical MUD-URL is http://example.com/hello/there/file.json then
any URL that starts with http://example.com/hello/there/ would be acceptable, such as
http://example.com/hello/there/revision2.json.</t>
        <t>One problem with these small changes is that malware could still express a
MUD file that was previously valid, but which should no longer considered
accurate.
This is a rollback attack.
This might result in the malware being able to reach destinations that turned
out to be a mistake; a security fault.
In order to combat this, MUD managers SHOULD keep track of the list of
MUD-URLs that they have successfully retrieved, and if a device ever suggests a URL that was
previously used, then the MUD manager should suspect that is a rollback attack.
MUD managers are not typically resource constrained, and while the
list of URLs could grow without bound, it is unlikely to be a burden.
A site with thousands of similar devices could keep a common list of URLs.</t>
      </section>
      <section anchor="big-changes-to-the-mud-url">
        <name>Big Changes to the MUD URL</name>
        <t>Once a new MUD file is accepted, either by reloading an existing file from
the same URL, or via the Small Changes mechanism described above, then the
MUD-URL attribute in this file becomes the new canonical MUD file.
The contained MUD-URL attribute in the file need not be related in any way to
the existing MUD-URL.</t>
        <t>As a result, any subsequent updates MUST be relative to the new MUD-URL in
this file.</t>
        <t>This rule enables the location of the MUD file to change over time based upon
the needs of the organization.</t>
      </section>
      <section anchor="merger-acquisitions-and-key-changes">
        <name>Merger, Acquisitions and Key Changes</name>
        <t>The above process allows for a manufacturer to rework its file structure.
They can change web server host names, so long as they retain the old structure long enough for  all devices to upgrade at least once.</t>
        <t>The process also allows a manufacturer to change the EE certificate and Certification Authority used for signing.</t>
        <section anchor="file-structure-change">
          <name>Changing file structure</name>
          <t>A manufacturer has been hosting a MUD file at https://example.com/household/products/mudfiles/toaster.json
and wishes to move it to https://example.com/mudfiles/toasters/model1945/mud.json</t>
          <t>The manufacturer creates a new MUD file at the new location.</t>
          <t>Then the manufacturer changes the MUD-URL contained with the files at the old location to have a value of https://example.com/mudfiles/toasters/model1945/mud.json.
Note that in order for MUD controllers to reload the old file, it MUST have been served with an appropriate ETag, and appropriate Expires or Cache Control headers <xref section="5.3" sectionFormat="comma" target="RFC9111"/>.
If control over caching is not possible for the manufacturer, then they need to do this in two steps, with the first step creating a new MUD file at an acceptable location (in the above example, perhaps: https://example.com/household/products/mudfiles/toaster0.json ).
The device then will have to do two firmware updates: one to switch to the intermediate URL, and a second one to switch to the desired final URL.</t>
          <t>The manufacturer must continue to serve the files from the old location for some time, or to return an HTTP 301 (Moved Permanently) redirecting to the new location.</t>
        </section>
        <section anchor="changing-hosting-urls">
          <name>Changing hosting URLs</name>
          <t>A manufacturer has been hosting a MUD file at https://example.com/household/products/mudfiles/toaster.json
and wishes to move it to https://mud.example/hosthold/products/mudfiles/toaster.json</t>
          <t>The scenario is much the same as for <xref target="file-structure-change"/>, and can be handled in the same fashion.
This situation is likely to occur when one company acquires another.</t>
          <t>Note, however, that a 301 Redirect that changed the hostname SHOULD NOT be accepted by MUD controllers.</t>
        </section>
        <section anchor="changing-signing-authority">
          <name>Changing Signing Authority</name>
          <t>A manufacturer has been signing MUD files using an EE Certificate with subjectAltName foo.example, issued by an internal Certification Authority BAZ.</t>
          <t>The manufacturer wishes to begin signing with an EE Certificate with subjectAltname foo.example, but now signed by a public CA (call it: Fluffy).</t>
          <t>The manufacturer first creates a new MUD file with a new detached signature file.
Within this signature file, the manufacturer places a certificate chain: Internal-CA BAZ-&gt;Fluffy,
and then the Fluffy Certificate, and then the foo.example certificate issued from Fluffy.</t>
          <t>This supports changing certification authorities, but it does not support changing the Subject Name of the signing entity.</t>
        </section>
      </section>
    </section>
    <section anchor="polling-for-changes-in-mud-files">
      <name>Polling for changes in MUD files</name>
      <t>The MUD file update mechanisms described in <xref target="updatemudfiles"/> requires that the MUD controller poll for updates.
The MUD controller will receive no signal about a change from the device because the URL will not have changed.</t>
      <t>The manufacturer SHOULD serve MUD files from a source for which ETag <xref section="2.3" sectionFormat="of" target="RFC7232"/> may be generated.
Static files on disk satisfy this requirement.
MUD files generated from a database process might not.
The use of ETag allows a MUD controller to more efficiently poll for changes in the file.</t>
      <t>A manufacturer should also serve MUD files with an HTTP Max-Age header as per <xref section="5.2.2.8" sectionFormat="of" target="RFC7234"/>.</t>
      <t>The MUD controller should take the Max-Age as an indication of when to next poll for updates to the MUD file.
Values of less than 1 hour, or more than 1 month should be considered out of range, and clamped into the range (1 hour, 1 month).</t>
      <t>MUD controllers SHOULD add some random jitter to the timing of their requests.
MUD controllers MAY use a single HTTP(S)/1.1 connection to retrieve all resources at the same destination.</t>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>The MUD URL could contain sensitive information such as the model number and even firmware revision numbers.
Thus, the MUD URL may identify the make, model and revision of a device.</t>
      <t><xref target="RFC8520"/> already identifies this privacy concern, and suggests use of TLS so that the HTTP requests that retrieve the MUD file do not divulge that level of detail.</t>
      <t>The requirement for the MUD controller to poll for changes to MUD files results in multiple interactions between the MUD controller and the manufacturer whereas a more naive implementation might only interact once.
Even if HTTPS used, an observer of the traffic to that manufacturer will be revealing, and <xref target="RFC8520"/> goes on to suggest use of a proxy as well.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document makes no requests to IANA.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Prior to the standardization of the process in this document, if a device was infiltrated by malware, and said malware wished to make accesses beyond what the current MUD file allowed, the malware would have to:</t>
      <ol spacing="normal" type="1"><li>
          <t>arrange for an equivalent MUD file to be visible somewhere on the Internet</t>
        </li>
        <li>
          <t>depend upon the MUD controller either not checking signatures, or</t>
        </li>
        <li>
          <t>somehow get the manufacturer to sign the alternate MUD file</t>
        </li>
        <li>
          <t>announce this new URL via DHCP or LLDP, updating the MUD controller with the new permissions.</t>
        </li>
      </ol>
      <t>One way to accomplish (3) is to leverage the existence of MUD files created by the manufacturer for different classes of devices.
Such files would already be signed by the same manufacturer, eliminating the need to spoof a signature.</t>
      <t>With the standardization of the process in this document, then the attacker can no longer point to arbitrary MUD files in step 4, but can only make use of MUD files that the manufacturer has already provided for this device.</t>
      <t>Manufacturers are advised to maintain an orderly layout of MUD files in their web servers,
with each unique product having its own directory/pathname.</t>
      <t>The process described updates only MUD controllers and the processes that manufacturers use to manage the location of their MUD files.</t>
      <t>A manufacturer which has not managed their MUD files in the way described here can deploy new directories of per-product MUD files, and then can update the existing MUD files in place to point to the new URLs
using the MUD-URL attribute.</t>
      <t>There is therefore no significant flag day: MUD controllers may implement the new policy without significant concern about backwards compatibility.</t>
      <section anchor="updating-files-vs-updating-mud-urls">
        <name>Updating files vs Updating MUD URLs</name>
        <t>Device developers need to consider whether to make a change by updating a MUD file, or updating the MUD URL.</t>
        <t>MUD URLs can only be updated by shipping a new firmware.
It is reasonable to update the MUD URL whenever a new firmware release causes new connectivity to be required.
The updated mechanism defined in this document makes this a secure operation, and there is no practical limitation on the number of files that a web server can hold.</t>
        <t>In place updates to a MUD file should be restricted to cases where it turns out that the description was inaccurate: a missing connection, an inadvertent one authorized, or just incorrect information.</t>
        <t>Developers should be aware that many enterprise websites use outsourced content distribution networks, and MUD controllers are likely to cache files for some time.
Changes to MUD files will take some time to propagate through the various caches.
An updated MUD URL will however, not experience any cache issues, but can not be deployed with a firmware update.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC3986" target="https://www.rfc-editor.org/info/rfc3986" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3986.xml">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC8520" target="https://www.rfc-editor.org/info/rfc8520" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8520.xml">
          <front>
            <title>Manufacturer Usage Description Specification</title>
            <author fullname="E. Lear" initials="E." surname="Lear"/>
            <author fullname="R. Droms" initials="R." surname="Droms"/>
            <author fullname="D. Romascanu" initials="D." surname="Romascanu"/>
            <date month="March" year="2019"/>
            <abstract>
              <t>This memo specifies a component-based architecture for Manufacturer Usage Descriptions (MUDs). The goal of MUD is to provide a means for end devices to signal to the network what sort of access and network functionality they require to properly function. The initial focus is on access control. Later work can delve into other aspects.</t>
              <t>This memo specifies two YANG modules, IPv4 and IPv6 DHCP options, a Link Layer Discovery Protocol (LLDP) TLV, a URL, an X.509 certificate extension, and a means to sign and verify the descriptions.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8520"/>
          <seriesInfo name="DOI" value="10.17487/RFC8520"/>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <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="RFC5280" target="https://www.rfc-editor.org/info/rfc5280" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5280.xml">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.ietf-opsawg-mud-tls" target="https://datatracker.ietf.org/doc/html/draft-ietf-opsawg-mud-tls-18" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-opsawg-mud-tls.xml">
          <front>
            <title>Manufacturer Usage Description (MUD) (D)TLS Profiles for IoT Devices</title>
            <author fullname="Tirumaleswar Reddy.K" initials="T." surname="Reddy.K">
              <organization>Nokia</organization>
            </author>
            <author fullname="Dan Wing" initials="D." surname="Wing">
              <organization>Citrix Systems, Inc.</organization>
            </author>
            <author fullname="Blake Anderson" initials="B." surname="Anderson">
              <organization>Cisco Systems, Inc.</organization>
            </author>
            <date day="23" month="August" year="2024"/>
            <abstract>
              <t>This memo extends the Manufacturer Usage Description (MUD) specification to allow manufacturers to define (D)TLS profile parameters. This allows a network security service to identify unexpected (D)TLS usage, which can indicate the presence of unauthorized software, malware, or security policy-violating traffic on an endpoint.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-opsawg-mud-tls-18"/>
        </reference>
        <reference anchor="RFC9238" target="https://www.rfc-editor.org/info/rfc9238" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9238.xml">
          <front>
            <title>Loading Manufacturer Usage Description (MUD) URLs from QR Codes</title>
            <author fullname="M. Richardson" initials="M." surname="Richardson"/>
            <author fullname="J. Latour" initials="J." surname="Latour"/>
            <author fullname="H. Habibi Gharakheili" initials="H." surname="Habibi Gharakheili"/>
            <date month="May" year="2022"/>
            <abstract>
              <t>This informational document details a protocol to load Manufacturer Usage Description (MUD) definitions from RFC 8520 for devices that do not have them integrated.</t>
              <t>This document is published to inform the Internet community of this mechanism to allow interoperability and to serve as a basis of other standards work if there is interest.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9238"/>
          <seriesInfo name="DOI" value="10.17487/RFC9238"/>
        </reference>
        <reference anchor="RFC7232" target="https://www.rfc-editor.org/info/rfc7232" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7232.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP/1.1 conditional requests, including metadata header fields for indicating state changes, request header fields for making preconditions on such state, and rules for constructing the responses to a conditional request when one or more preconditions evaluate to false.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7232"/>
          <seriesInfo name="DOI" value="10.17487/RFC7232"/>
        </reference>
        <reference anchor="RFC7234" target="https://www.rfc-editor.org/info/rfc7234" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7234.xml">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7234"/>
          <seriesInfo name="DOI" value="10.17487/RFC7234"/>
        </reference>
        <reference anchor="IEEE_802.1AR-2018">
          <front>
            <title>IEEE Standard for Local and Metropolitan Area Networks - Secure Device Identity</title>
            <author>
              <organization>IEEE</organization>
            </author>
            <date year="2018" month="August"/>
          </front>
          <seriesInfo name="IEEE" value="802.1AR-2018"/>
          <seriesInfo name="DOI" value="10.1109/IEEESTD.2018.8423794"/>
        </reference>
        <reference anchor="boycrieswolf" target="https://fablesofaesop.com/the-boy-who-cried-wolf.html">
          <front>
            <title>The Boy Who Cried Wolf</title>
            <author>
              <organization/>
            </author>
            <date year="2020" month="January" day="18"/>
          </front>
        </reference>
        <reference anchor="boywolfinfosec" target="https://www.infosecurity-magazine.com/opinions/security-alerts-boy-cried-wolf/">
          <front>
            <title>Security Alerts - A Case of the Boy Who Cried Wolf?</title>
            <author>
              <organization/>
            </author>
            <date year="2020" month="January" day="18"/>
          </front>
        </reference>
        <reference anchor="falsemalware" target="https://www.scmagazine.com/home/security-news/false-malware-alerts-cost-organizations-1-27m-annually-report-says/">
          <front>
            <title>False malware alerts cost organizations $1.27M annually, report says</title>
            <author>
              <organization/>
            </author>
            <date year="2020" month="January" day="18"/>
          </front>
        </reference>
        <reference anchor="I-D.jimenez-t2trg-mud-coap" target="https://datatracker.ietf.org/doc/html/draft-jimenez-t2trg-mud-coap-00" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.jimenez-t2trg-mud-coap.xml">
          <front>
            <title>Using MUD on CoAP environments</title>
            <author fullname="Jaime Jimenez" initials="J." surname="Jimenez">
              <organization>Ericsson</organization>
            </author>
            <date day="9" month="March" year="2020"/>
            <abstract>
              <t>This document provides some guidelines on how to add Manufacturer Usage Descriptions (MUD) to CoAP environments.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-jimenez-t2trg-mud-coap-00"/>
        </reference>
        <reference anchor="RFC9111" target="https://www.rfc-editor.org/info/rfc9111" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9111.xml">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
      </references>
    </references>
    <?line 446?>

<section anchor="appendices">
      <name>Appendices</name>
    </section>
    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
      <name>Contributors</name>
      <contact initials="J." surname="Yang" fullname="Jie Yang">
        <organization/>
        <address>
          <email>jay.yang@huawei.com</email>
        </address>
      </contact>
      <contact initials="T." surname="Tang" fullname="Tianqing Tang">
        <organization/>
        <address>
          <email>tangtianqing@huawei.com</email>
        </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA81863YbR5Lm/3qKGnnPMTkLgCIlj2XunummJXrMGcnSiNT4
9P7xSRQSQFqFKnRlFSG0jt5ln2WfbOOLiLwUALVn59d2n26BdclLZFy/iKjp
dFr0rq/tdXkz9Ou2c3+zi3LYLkxvy74t33x4VX54/9oXZj7v7ON1uRkWU1NV
dtubeW2nQ1f7YtFWjdnQEIvOLPups/1y6tq+3frpicenT58Whdt212XfDb6/
evr0h6dXhemsuS7fbm1netc2vtitrsu7tw9v392Xv7bdR9esyn/p2mFbfNzR
jaa3XWP76SvMWMh6/XX54rurp0Vl+uvS94ui2Lrrkv7zTVmZphy8LU3XmX15
5palqetyb/152Xbl2vh1ubadLUrac3WNG/TTt13f2aW/5iEWdmmGuvegit7f
b+Q2/iwMk++6mJauoWtvZuV7V61Nt/BtQw8Lgd7gkq3Ht9qOtnpvmoWtN7TO
+3bZ74gcvG3MYzfG1UT5qvvvIO2ffXh0Vpkw3a+z8p1J8/xqnf7Ng/88mB1d
ebDVumnrduVsNu7O1bUzm9nWNPTQn9f87KxqN2Hs21n52pouDn5b0+GGSzz+
S+ertrzf+95uspFreuTPFe7xcEXVNn3n5kMPOpXlVMf7V2fLv5hmVeCs9NXf
zX62p2v5crJXHpxp/gqWeDh4r6e/e705erdpuw1x1qPFzO9/evnshxf/pD/B
NNfEks0yf+Zu+mrGnExsbHYr5uS+9vrOD1fPXujP76+eXaWfz/nd29vb3148
vZpd3ryfXj295EeJt0TQvsXt8p6WuiAeKGnW8nVbmbqkC+Ub23fttq0d3S5v
SCjKX2y/AyeUUx7k3lYDMccr++gqW94tbEPD7r/le4EH8XsqR4O5+G9IyHWJ
xUyfvuAr3nbECNi2vCHrJiHKFq43Xr29uy4vn84uL5/+cIGn7h9ezXB/9uL5
1bPvf3jOzw0dydu677f++uLCWWs/beu2szP8nNFqLkhRDBta8EV6a97uKyxj
19bLEZWePKxt+WO7L39dt+VLemRBAlEvn8gzpltZkvInYbYl1Itvl4b+b4sT
v+jXdkqDT3frdooZFlNMMVv3m/rJiCBXT6dPL6e8VXoeD4Ek3lbj5TDdidLl
TW07UgPT8qZ8aUintMuyP7nUP31lrbvdbqZT8IjTjVmZv7nG8rrbrWugAC/i
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

-->

</rfc>
