<?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.6.17 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-dbb-netmod-acl-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.1 -->
  <front>
    <title abbrev="Enhanced ACLs">Extensions to the Access Control Lists (ACLs) YANG Model</title>
    <seriesInfo name="Internet-Draft" value="draft-dbb-netmod-acl-02"/>
    <author fullname="Oscar Gonzalez de Dios">
      <organization>Telefonica</organization>
      <address>
        <email>oscar.gonzalezdedios@telefonica.com</email>
      </address>
    </author>
    <author fullname="Samier Barguil">
      <organization>Telefonica</organization>
      <address>
        <email>samier.barguilgiraldo.ext@telefonica.com</email>
      </address>
    </author>
    <author fullname="Mohamed Boucadair">
      <organization>Orange</organization>
      <address>
        <email>mohamed.boucadair@orange.com</email>
      </address>
    </author>
    <date year="2022" month="October" day="24"/>
    <area>Operations and Management</area>
    <workgroup>netmod</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>RFC 8519 defines a YANG data model for Access Control Lists
(ACLs). This document discusses a set of extensions that fix many of
the limitations of the ACL model as initially defined in RFC 8519.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Network Modeling Working Group mailing list (netmod@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/netmod/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/oscargdd/draft-dbb-netmod-enhanced-acl"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t><xref target="RFC8519"/> defines Access control lists (ACLs) as a
user-ordered set of filtering rules. The model targets the
configuration of the filtering behaviour of a device. However, the
model structure, as defined in <xref target="RFC8519"/>, suffers from a set of limitations. This
document describes these limitations and proposes an enhanced ACL
structure. The YANG module in this document is solely based
on augmentations to the ACL YANG module defined in <xref target="RFC8519"/>.</t>
      <t>The motivation of such enhanced ACL structure is discussed in detail in <xref target="ps"/>.</t>
      <t>When managing ACLs, it is common for network operators to group
match elements in pre-defined sets. The consolidation into group matches
allows for reducing the number of rules, especially in large scale
networks. If it is needed, for example, to find a match against 100
IP addresses (or prefixes), a single rule will suffice rather than creating
individual Access Control Entries (ACEs) for each IP address (or prefix). In
doing so, implementations would optimize the performance of matching
lists vs multiple rules matching.</t>
      <t>The enhanced ACL structure is also meant to facilitate the management of
network operators. Instead of entering the IP address or port number
literals, using user-named lists decouples the creation of the rule
from the management of the sets. Hence, it is possible to remove/add
 entries to the list without redefining the (parent) ACL
rule.</t>
      <t>In addition, the notion of Access Control List (ACL) and defined sets
 is generalized so that it is not device-specific as per <xref target="RFC8519"/>.  ACLs
 and defined sets may be defined at network / administrative domain level
 and associated to devices. This approach facilitates the reusability across multiple
  network elements. For example, managing the IP prefix sets from a network
   level makes it easier to maintain by the security groups.</t>
      <t>Network operators maintain sets of IP prefixes that are related to each other,
e.g., deny-lists or accept-lists that are associated with those provided by a
 VPN customer. These lists are maintained and manipulated by security expert teams.</t>
      <t>Note that ACLs are used locally in devices but are triggered by other
tools such as DDoS mitigation <xref target="RFC9132"/> or BGP Flow Spec <xref target="RFC8955"/>
        <xref target="RFC8956"/>. Therefore, supporting means to easily map to the filtering rules conveyed in
messages triggered by  these tools is valuable from a network operation standpoint.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The keywords <strong>MUST</strong>, <strong>MUST NOT</strong>, <strong>REQUIRED</strong>, <strong>SHALL</strong>, <strong>SHALL NOT</strong>, <strong>SHOULD</strong>,
<strong>SHOULD NOT</strong>, <strong>RECOMMENDED</strong>, <strong>MAY</strong>, and <strong>OPTIONAL</strong>, when they appear in this
document, are to be interpreted as described in <xref target="RFC2119"/>.</t>
      <t>The terminology for describing YANG modules is defined in <xref target="RFC7950"/>.
The meaning of the symbols in the tree diagrams is defined in
<xref target="RFC8340"/>.</t>
      <t>In addition to the terms defined in <xref target="RFC8519"/>, this document makes use of the following terms:</t>
      <ul spacing="normal">
        <li>Defined set: Refers to reusable description of one or multiple information elements (e.g., IP address, IP prefix, port number, or ICMP type).</li>
      </ul>
    </section>
    <section anchor="ps">
      <name>Problem Statement &amp; Gap Analysis</name>
      <section anchor="ps-sets">
        <name>Suboptimal Configuration: Lack of Support for Lists of Prefixes</name>
        <t>IP prefix related data nodes, e.g., "destination-ipv4-network" or
   "destination-ipv6-network", do not support handling a list of IP
   prefixes, which may then lead to having to support large numbers of ACL entries in a configuration file.</t>
        <t>The same issue
is encountered when ACLs have to be in place to mitigate DDoS
attacks (e.g., <xref target="RFC9132"/> when a set of sources are involved in such
an attack. The situation is even worse when both a list of sources
and destination prefixes are involved.</t>
        <t><xref target="example"/> shows an example of the required ACL configuration for filtering traffic from two prefixes.</t>
        <figure anchor="example">
          <name>Example Illustrating Sub-optimal Use of the ACL Model with a Prefix List</name>
          <artwork><![CDATA[
{
  "ietf-access-control-list:acls": {
    "acl": [
      {
        "name": "first-prefix",
        "type": "ipv6-acl-type",
        "aces": {
          "ace": [
            {
              "name": "my-test-ace",
              "matches": {
                "ipv6": {
                  "destination-ipv6-network":
                    "2001:db8:6401:1::/64",
                  "source-ipv6-network":
                    "2001:db8:1234::/96",
                  "protocol": 17,
                  "flow-label": 10000
                },
                "udp": {
                  "source-port": {
                    "operator": "lte",
                    "port": 80
                  },
                  "destination-port": {
                    "operator": "neq",
                    "port": 1010
                  }
                }
              },
              "actions": {
                "forwarding": "accept"
              }
            }
          ]
        }
      },
      {
        "name": "second-prefix",
        "type": "ipv6-acl-type",
        "aces": {
          "ace": [
            {
              "name": "my-test-ace",
              "matches": {
                "ipv6": {
                  "destination-ipv6-network":
                    "2001:db8:6401:c::/64",
                  "source-ipv6-network":
                    "2001:db8:1234::/96",
                  "protocol": 17,
                  "flow-label": 10000
                },
                "udp": {
                  "source-port": {
                    "operator": "lte",
                    "port": 80
                  },
                  "destination-port": {
                    "operator": "neq",
                    "port": 1010
                  }
                }
              },
              "actions": {
                "forwarding": "accept"
              }
            }
          ]
        }
      }
    ]
  }
}
]]></artwork>
        </figure>
        <t>Such a configuration is suboptimal for both:
- Network controllers that
   need to manipulate large files.  All or a subset for this
   configuration will need to be passed to the underlying network
   devices</t>
        <ul spacing="normal">
          <li>Devices may receive such a confirguration and thus will need to maintain it locally.</li>
        </ul>
        <t>(<xref target="example_1"/> depicts an example of an optimized structure:</t>
        <figure anchor="example_1">
          <name>Example Illustrating Optimal Use of the ACL Model in a Network Context.</name>
          <artwork><![CDATA[
{
  "ietf-access-control-list:acls": {
    "acl": [
      {
        "name": "prefix-list-support",
        "type": "ipv6-acl-type",
        "aces": {
          "ace": [
            {
              "name": "my-test-ace",
              "matches": {
                "ipv6": {
                  "destination-ipv6-network": [
                    "2001:db8:6401:1::/64",
                    "2001:db8:6401:c::/64"
                  ],
                  "source-ipv6-network":
                    "2001:db8:1234::/96",
                  "protocol": 17,
                  "flow-label": 10000
                },
                "udp": {
                  "source-port": {
                    "operator": "lte",
                    "port": 80
                  },
                  "destination-port": {
                    "operator": "neq",
                    "port": 1010
                  }
                }
              },
              "actions": {
                "forwarding": "accept"
              }
            }
          ]
        }
      }
    ]
  }
}
]]></artwork>
        </figure>
      </section>
      <section anchor="manageability-impossibility-to-use-aliases-or-defined-sets">
        <name>Manageability: Impossibility to Use Aliases or Defined Sets</name>
        <t>The same approach as the one discussed for IP prefixes can be generalized by introduing the concept of "aliases" or "defined sets".</t>
        <t>The defined sets are reusable definitions across several ACLs. Each category is modelled in YANG as a list of parameters related to the class it represents. The following sets can be considered:</t>
        <ul spacing="normal">
          <li>Prefix sets: Used to create lists of IPv4 or IPv6 prefixes.</li>
          <li>Protocol sets: Used to create a list of protocols.</li>
          <li>Port number sets: Used to create lists of TCP or UDP port values
   (or any other transport protocol that makes uses of port numbers).
   The identity of the protocols is identified by the protocol set, if
   present.  Otherwise, a set applies to any protocol.</li>
          <li>ICMP sets: Uses to create lists of ICMP-based filters. This applies only when the protocol is set to ICMP or ICMPv6.</li>
        </ul>
        <t>A candidate structure is shown in <xref target="example_sets"/>:</t>
        <figure anchor="example_sets">
          <name>Examples of Defined Sets.</name>
          <artwork type="ascii-art"><![CDATA[
     +--rw defined-sets
     |  +--rw prefix-sets
     |  |  +--rw prefix-set* [name]
     |  |     +--rw name        string
     |  |     +--rw ip-prefix*   inet:ip-prefix
     |  +--rw port-sets
     |  |  +--rw port-set* [name]
     |  |     +--rw name    string
     |  |     +--rw port*   inet:port-number
     |  +--rw protocol-sets
     |  |  +--rw protocol-set* [name]
     |  |     +--rw name             string
     |  |     +--rw protocol-name*   identityref
     |  +--rw icmp-type-sets
     |     +--rw icmp-type-set* [name]
     |        +--rw name     string
     |        +--rw types* [type]
     |           +--rw type              uint8
     |           +--rw code?             uint8
     |           +--rw rest-of-header?   binary
]]></artwork>
        </figure>
      </section>
      <section anchor="bind-acls-to-devices-not-only-interfaces">
        <name>Bind ACLs to Devices, Not Only Interfaces</name>
        <t>In the context of network management, an ACL may be enforced in many
   network locations.  As such, the ACL module should allow for binding an
   ACL to multiple devices, not only (abstract) interfaces.</t>
        <t>The ACL name must, thus, be unique at the scale of the network, but the same name may be used in many devices when enforcing node-specific ACLs.</t>
      </section>
      <section anchor="ps-frag">
        <name>Partial or Lack of IPv4/IPv6 Fragment Handling</name>
        <t><xref target="RFC8519"/> does not support fragment handling capability for IPv6 but
offers a partial support for IPv4 by means of 'flags'.  Nevertheless,
the use of 'flags' is problematic since it does not allow a bitmask
to be defined.  For example, setting other bits not covered by the
'flags' filtering clause in a packet will allow that packet to get
through (because it won't match the ACE).</t>
        <t>Defining a new IPv4/IPv6 matching field called 'fragment' is thus required to efficiently handle fragment-related filtering rules.</t>
      </section>
      <section anchor="ps-flags">
        <name>Suboptimal TCP Flags Handling</name>
        <t><xref target="RFC8519"/> supports including flags in the TCP match fields, however
   that structure does not support matching operations as those
   supported in BGP Flow Spec.  Defining this field to be defined as a
   flag bitmask together with a set of operations is meant to
   efficiently handle TCP flags filtering rules.</t>
      </section>
      <section anchor="ps-rate">
        <name>Rate-Limit Action</name>
        <t><xref target="RFC8519"/> specifies that forwarding actions can be 'accept' (i.e., accept matching
   traffic), 'drop' (i.e., drop matching traffic without sending any
   ICMP error message), or 'reject' (i.e., drop matching traffic and send an ICMP error message to the source). However, there are situations where the matching traffic can be accepted, but with a rate-limit policy. Such capability is not currently supported by <xref target="RFC8519"/>.</t>
      </section>
      <section anchor="ps-pf">
        <name>Payload-based Filtering</name>
        <t>Some transport protocols use existing protocols (e.g., TCP or UDP) as substrate. The match criteria for such protocols may rely upon the 'protocol' under 'l3', TCP/UDP match criteria, part of the TCP/UDP payload, or a combination thereof. <xref target="RFC8519"/> does not support matching based on the payload.</t>
        <t>Likewise, the current version of the ACL model does not support filtering of encapsulated traffic.</t>
      </section>
      <section anchor="reuse-the-acls-content-across-several-devices">
        <name>Reuse the ACLs Content Across Several Devices</name>
        <t>Having a global network view of the ACLs is highly valuable for service providers. An ACL could be defined and applied
following the hierarchy of the network topology. So, an ACL can be
defined at the network level and, then, that same ACL can be used (or referenced to)
in several devices (including termination points) within the same network.</t>
        <t>This network/device ACLs differentiation introduces several new
requirements, e.g.:</t>
        <ul spacing="normal">
          <li>An ACL name can be used at both network and device levels.</li>
          <li>An ACL content updated at the network level should imply
a transaction that updates the relevant content in all the nodes using this
ACL.</li>
          <li>ACLs defined at the device level have a local meaning for the specific node.</li>
          <li>A device can be associated with a router, a VRF, a
logical system, or a virtual node. ACLs can be applied in physical and
logical infrastructure.</li>
        </ul>
      </section>
    </section>
    <section anchor="overall-module-structure">
      <name>Overall Module Structure</name>
      <section anchor="enhanced-acl">
        <name>Enhanced ACL</name>
        <figure anchor="enh-acl-tree">
          <name>Enhanced ACL tree</name>
          <artwork type="ascii-art"><![CDATA[
module: ietf-acl-enh
  augment /ietf-acl:acls/ietf-acl:acl:
    +--rw defined-sets
       +--rw ipv4-prefix-sets
       |  +--rw prefix-set* [name]
       |     +--rw name           string
       |     +--rw description?   string
       |     +--rw prefix*        inet:ipv4-prefix
       +--rw ipv6-prefix-sets
       |  +--rw prefix-set* [name]
       |     +--rw name           string
       |     +--rw description?   string
       |     +--rw prefix*        inet:ipv6-prefix
       +--rw port-sets
       |  +--rw port-set* [name]
       |     +--rw name    string
       |     +--rw port* [id]
       |        +--rw id                              string
       |        +--rw (port)?
       |           +--:(port-range-or-operator)
       |              +--rw port-range-or-operator
       |                 +--rw (port-range-or-operator)?
       |                    +--:(range)
       |                    |  +--rw lower-port    inet:port-number
       |                    |  +--rw upper-port    inet:port-number
       |                    +--:(operator)
       |                       +--rw operator?     operator
       |                       +--rw port          inet:port-number
       +--rw protocol-sets
       |  +--rw protocol-set* [name]
       |     +--rw name        string
       |     +--rw protocol*   union
       +--rw icmp-type-sets
          +--rw icmp-type-set* [name]
             +--rw name     string
             +--rw types* [type]
                +--rw type              uint8
                +--rw code?             uint8
                +--rw rest-of-header?   binary
  augment /ietf-acl:acls/ietf-acl:acl/ietf-acl:aces/ietf-acl:ace
            /ietf-acl:matches:
    +--rw (payload)?
       +--:(prefix-pattern)
          +--rw prefix-pattern {match-on-payload}?
             +--rw offset?       identityref
             +--rw offset-end?   uint64
             +--rw operator?     operator
             +--rw prefix?       binary
  augment /ietf-acl:acls/ietf-acl:acl/ietf-acl:aces/ietf-acl:ace
            /ietf-acl:matches/ietf-acl:l3/ietf-acl:ipv4:
    +--rw ipv4-fragment
    |  +--rw operator?   operator
    |  +--rw type?       fragment-type
    +--rw source-ipv4-prefix-list?        leafref
    +--rw destination-ipv4-prefix-list?   leafref
    +--rw next-header-set?                leafref
  augment /ietf-acl:acls/ietf-acl:acl/ietf-acl:aces/ietf-acl:ace
            /ietf-acl:matches/ietf-acl:l3/ietf-acl:ipv6:
    +--rw ipv6-fragment
    |  +--rw operator?   operator
    |  +--rw type?       fragment-type
    +--rw source-ipv6-prefix-list?        leafref
    +--rw destination-ipv6-prefix-list?   leafref
    +--rw protocol-set?                   leafref
  augment /ietf-acl:acls/ietf-acl:acl/ietf-acl:aces/ietf-acl:ace
            /ietf-acl:matches/ietf-acl:l4/ietf-acl:tcp:
    +--rw flags-bitmask
    |  +--rw operator?   operator
    |  +--rw bitmask?    uint16
    +--rw source-tcp-port-set?
    |       -> ../../../../defined-sets/port-sets/port-set/name
    +--rw destination-tcp-port-set?
            -> ../../../../defined-sets/port-sets/port-set/name
  augment /ietf-acl:acls/ietf-acl:acl/ietf-acl:aces/ietf-acl:ace
            /ietf-acl:matches/ietf-acl:l4/ietf-acl:udp:
    +--rw source-udp-port-set?
    |       -> ../../../../defined-sets/port-sets/port-set/name
    +--rw destination-udp-port-set?
            -> ../../../../defined-sets/port-sets/port-set/name
  augment /ietf-acl:acls/ietf-acl:acl/ietf-acl:aces/ietf-acl:ace
            /ietf-acl:matches/ietf-acl:l4/ietf-acl:icmp:
    +--rw icmp-set?   leafref
  augment /ietf-acl:acls/ietf-acl:acl/ietf-acl:aces/ietf-acl:ace
            /ietf-acl:actions:
    +--rw rate-limit?   decimal64
]]></artwork>
        </figure>
      </section>
      <section anchor="defined-sets">
        <name>Defined sets</name>
        <t>The augmented ACL structure includes several containers to manage reusable sets of elements that can be matched in an ACL entry.
Each set is uniquely identified by a name, and can be called from the relevant entry. The following sets are defined:</t>
        <ul spacing="normal">
          <li>IPv4 prefix set: It contains a list of IPv4 prefixes. A match will be considered if the IP address (source or destination, depending on the ACL entry) is contained in any of the prefixes.</li>
          <li>IPv6 prefix set: It contains a list of IPv6 prefixes. A match will be considered if the IP address (source or destination, depending on the ACL entry) is contained in any of the prefixes.</li>
          <li>Port sets: It contains a list of port numbers to be used in TCP / UDP entries. The ports can be individual port numbers, a range of ports, and an operation.</li>
          <li>Protocol sets: It contains a list of protocol values. Each protocol can be identified either by a number (e.g., 17) or a name (e.g., UDP).</li>
          <li>ICMP sets: It contains a list of ICMP types, each of them identified by a type value, optionally the code and the rest of the header.</li>
        </ul>
      </section>
      <section anchor="tcp-flags-handling">
        <name>TCP Flags Handling</name>
        <t>The augmented ACL structure includes a new leaf 'flags-bitmask' to better handle flags.</t>
        <t>Clients that support both 'flags-bitmask' and 'flags' matching fields MUST NOT set these fields in the same request.</t>
        <t><xref target="example_4"/> shows an example of a request to install a filter to discard incoming TCP messages having all flags unset.</t>
        <figure anchor="example_4">
          <name>Example to Deny TCP Null Attack Messages</name>
          <artwork type="ascii-art"><![CDATA[
  {
     "ietf-access-control-list:acls": {
       "acl": [{
         "name": "tcp-flags-example",
         "aces": {
           "ace": [{
             "name": "null-attack",
             "matches": {
               "tcp": {
                 "flags-bitmask": {
                   "operator": "not any",
                   "bitmask": 4095
                 }
               }
             },
             "actions": {
               "forwarding": "drop"
             }
           }]
         }
       }]
     }
   }
]]></artwork>
        </figure>
      </section>
      <section anchor="fragments-handling">
        <name>Fragments Handling</name>
        <t>The augmented ACL structure includes a new leaf 'fragment' to better handle fragments.</t>
        <t>Clients that support both 'fragment' and 'flags' matching fields MUST NOT set these fields in the same request.</t>
        <t><xref target="example_2"/> shows the content of a POST request to allow the traffic destined to 198.51.100.0/24 and UDP port number 53, but to drop all fragmented
packets.  The following ACEs are defined (in this order):</t>
        <ul spacing="normal">
          <li>"drop-all-fragments" ACE: discards all fragments.</li>
          <li>"allow-dns-packets" ACE: accepts DNS packets destined to 198.51.100.0/24.</li>
        </ul>
        <figure anchor="example_2">
          <name>Example Illustrating Candidate Filtering of IPv4 Fragmented Packets.</name>
          <artwork type="ascii-art"><![CDATA[
{
     "ietf-access-control-list:acls": {
       "acl": [
         {
           "name": "dns-fragments",
           "type": "ipv4-acl-type",
           "aces": {
             "ace": [
               {
                 "name": "drop-all-fragments",
                 "matches": {
                   "ipv4": {
                     "ipv4-fragment": {
                       "operator": "match",
                       "type": "isf"
                     }
                   }
                 },
                 "actions": {
                   "forwarding": "drop"
                 }
               },
               {
                 "name": "allow-dns-packets",
                 "matches": {
                   "ipv4": {
                     "destination-ipv4-network": "198.51.100.0/24"
                   },
                   "udp": {
                     "destination-port": {
                       "operator": "eq",
                       "port": 53
                     }
                   },
                   "actions": {
                     "forwarding": "accept"
                   }
                 }
               }
             ]
           }
         }
       ]
     }
   }
]]></artwork>
        </figure>
        <t><xref target="example_3"/> shows an example of the body of a POST request to allow the traffic destined to 2001:db8::/32 and UDP port number 53, but to drop all fragmented packets. The following ACEs are defined (in this order):</t>
        <ul spacing="normal">
          <li>"drop-all-fragments" ACE: discards all fragments (including atomic fragments). That is, IPv6 packets that include a Fragment header (44) are dropped.</li>
          <li>"allow-dns-packets" ACE: accepts DNS packets destined to 2001:db8::/32.</li>
        </ul>
        <figure anchor="example_3">
          <name>Example Illustrating Candidate Filtering of IPv6 Fragmented Packets.</name>
          <artwork type="ascii-art"><![CDATA[
    {
     "ietf-access-control-list:acls": {
       "acl": [
         {
           "name": "dns-fragments",
           "type": "ipv6-acl-type",
           "aces": {
             "ace": [
               {
                 "name": "drop-all-fragments",
                 "matches": {
                   "ipv6": {
                     "ipv6-fragment": {
                       "operator": "match",
                       "type": "isf"
                     }
                   }
                 },
                 "actions": {
                   "forwarding": "drop"
                 }
               },
               {
                 "name": "allow-dns-packets",
                 "matches": {
                   "ipv6": {
                     "destination-ipv6-network": "2001:db8::/32"
                   },
                   "udp": {
                     "destination-port": {
                       "operator": "eq",
                       "port": 53
                     }
                   }
                 },
                 "actions": {
                   "forwarding": "accept"
                 }
               }
             ]
           }
         }
       ]
     }
   }
]]></artwork>
        </figure>
      </section>
      <section anchor="rate-limit-traffic">
        <name>Rate-Limit Traffic</name>
        <t>In order to support rate-limiting (see <xref target="ps-rate"/>), a new action called "rate-limit" is defined.</t>
        <t>(#example_5) shows an ACL example to rate-limit incoming SYNs during a SYN flood attack.</t>
        <figure anchor="example_5">
          <name>Example Rate-Limit Incoming TCP SYNs</name>
          <artwork type="ascii-art"><![CDATA[
  {
     "ietf-access-control-list:acls": {
       "acl": [{
         "name": "tcp-flags-example-with-rate-limit",
         "aces": {
           "ace": [{
             "name": "rate-limit-syn",
             "matches": {
               "tcp": {
                 "flags-bitmask": {
                   "operator": "match",
                   "bitmask": 2
                 }
               }
             },
             "actions": {
               "forwarding": "accept",
               "rate-limit": "20.00"
             }
           }]
         }
       }]
     }
   }
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="yang-modules">
      <name>YANG Modules</name>
      <section anchor="enhanced-acl-1">
        <name>Enhanced ACL</name>
        <sourcecode type="ascii-art" markers="true" name="ietf-acl-enh@2022-10-24.yang"><![CDATA[
module ietf-acl-enh {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-acl-enh";
  prefix enh-acl;

  import ietf-inet-types {
    prefix inet;
    reference
      "RFC 6991: Common YANG Data Types";
  }
  import ietf-access-control-list {
    prefix ietf-acl;
    reference
      "RFC 8519: YANG Data Model for Network Access
                 Control Lists (ACLs), Section 4.1";
  }
  import ietf-packet-fields {
    prefix packet-fields;
    reference
      "RFC 8519: YANG Data Model for Network Access
                 Control Lists (ACLs), Section 4.2";
  }

  organization
    "IETF NETMOD Working Group";
  contact
    "WG Web:   <https://datatracker.ietf.org/wg/netmod/>
     WG List:  <mailto:netmod@ietf.org>

     Author:    Mohamed Boucadair
               <mailto:mohamed.boucadair@orange.com>
     Author:    Samier Barguil
               <mailto:samier.barguilgiraldo.ext@telefonica.com>
     Author:    Oscar Gonzalez de Dios
               <mailto:oscar.gonzalezdedios@telefonica.com>";
  description
    "This module contains YANG definitions for enhanced ACLs.

     Copyright (c) 2022 IETF Trust and the persons identified as
     authors of the code. All rights reserved.

     Redistribution and use in source and binary forms, with or
     without modification, is permitted pursuant to, and subject
     to the license terms contained in, the Revised BSD License
     set forth in Section 4.c of the IETF Trust's Legal Provisions
     Relating to IETF Documents
     (http://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX; see
     the RFC itself for full legal notices.";

  revision 2022-10-24 {
    description
      "Initial revision.";
    reference
      "RFC XXXX: Extensions to the Access Control Lists (ACLs)
                 YANG Model";
  }

  feature match-on-payload {
    description
      "Match based on a pattern is supported.";
  }

  identity offset-type {
    description
      "Base identity for payload offset type.";
  }

  identity layer3 {
    base offset-type;
    description
      "IP header.";
  }

  identity layer4 {
    base offset-type;
    description
      "Transport header (e.g., TCP or UDP).";
  }

  identity payload {
    base offset-type;
    description
      "Transport payload. For example, this represents the beginning
       of the TCP data right after any TCP options.";
  }

  typedef operator {
    type bits {
      bit not {
        position 0;
        description
          "If set, logical negation of operation.";
      }
      bit match {
        position 1;
        description
          "Match bit.  This is a bitwise match operation
           defined as '(data & value) == value'.";
      }
      bit any {
        position 2;
        description
          "Any bit.  This is a match on any of the bits in
           bitmask.  It evaluates to 'true' if any of the bits
           in the value mask are set in the data,
           i.e., '(data & value) != 0'.";
         }
       }
       description
         "Specifies how to apply the defined bitmask.
          'any' and 'match' bits must not be set simultaneously.";
    }
    description
      "How to apply the defined bitmask.";
  }

  typedef fragment-type {
    type bits {
      bit df {
        position 0;
        description
          "Don't fragment bit for IPv4.
           Must be set to 0 when it appears in an IPv6 filter.";
      }
      bit isf {
        position 1;
        description
          "Is a fragment.";
      }
      bit ff {
        position 2;
        description
          "First fragment.";
      }
      bit lf {
        position 3;
        description
          "Last fragment.";
      }
    }
    description
      "Different fragment types to match against.";
  }

  grouping tcp-flags {
    description
      "Operations on TCP flags.";
    leaf operator {
      type operator;
      default "match";
      description
        "How to interpret the TCP flags.";
    }
    leaf bitmask {
      type uint16;
      description
        "The bitmask matches the last 4 bits of byte 12
        and byte 13 of the TCP header.  For clarity, the 4 bits
        of byte 12 corresponding to the TCP data offset field
        are not included in any matching.";
    }
  }

  grouping fragment-fields {
    description
      "Operations on fragment types.";
    leaf operator {
      type operator;
      default "match";
      description
        "How to interpret the fragment type.";
    }
    leaf type {
      type fragment-type;
      description
        "What fragment type to look for.";
    }
  }

  grouping payload {
    description
      "Operations on payload match.";
    leaf offset {
      type identityref {
        base offset-type;
      }
      description
        "Indicates the payload offset.";
    }
    leaf offset-end {
      type uint64;
      description
        "Indicates the number of bytes to cover when
         performing the prefix match.";
    }
    leaf operator {
      type operator;
      default "match";
      description
        "How to interpret the prefix match.";
    }
    leaf prefix {
      type binary;
      description
        "The pattern to match against.";
    }
  }

  augment "/ietf-acl:acls/ietf-acl:acl" {
    description
      "add a new container to store sets (prefix
       sets, port sets, etc";
    container defined-sets {
      description
        "Predefined sets of attributes used in policy match
         statements.";
      container ipv4-prefix-sets {
        description
          "Data definitions for a list of IPv4 or IPv6
           prefixes which are matched as part of a policy.";
        list prefix-set {
          key "name";
          description
            "List of the defined prefix sets.";
          leaf name {
            type string;
            description
              "Name of the prefix set -- this is used as a label to
               reference the set in match conditions.";
          }
          leaf description {
            type string;
            description
              "Defined Set description.";
          }
          leaf-list prefix {
            type inet:ipv4-prefix;
            description
              "List of IPv4 prefixes to be used in match
               conditions.";
          }
        }
      }
      container ipv6-prefix-sets {
        description
          "Data definitions for a list of IPv6 prefixes
           which are matched as part of a policy.";
        list prefix-set {
          key "name";
          description
            "List of the defined prefix sets.";
          leaf name {
            type string;
            description
              "Name of the prefix set -- this is used as a label to
               reference the set in match conditions.";
          }
          leaf description {
            type string;
            description
              "A textual description of the prefix list.";
          }
          leaf-list prefix {
            type inet:ipv6-prefix;
            description
              "List of IPv6 prefixes to be used in match
               conditions.";
          }
        }
      }
      container port-sets {
        description
          "Data definitions for a list of ports which can
           be matched in policies.";
        list port-set {
          key "name";
          description
            "List of port set definitions.";
          leaf name {
            type string;
            description
              "Name of the port set -- this is used as a label to
               reference the set in match conditions.";
          }
          list port {
            key "id";
            description
              "Port numbers along with the operator on which to
               match.";
            leaf id {
              type string;
              description
                "Identifier of the list of port numbers.";
            }
            choice port {
              description
                "Choice of specifying the port number or referring
                 to a group of port numbers.";
              container port-range-or-operator {
                description
                  "Indicates a set of ports.";
                uses packet-fields:port-range-or-operator;
              }
            }
          }
        }
      }
      container protocol-sets {
        description
          "Data definitions for a list of protocols which can
           be matched in policies.";
        list protocol-set {
          key "name";
          description
            "List of protocol set definitions.";
          leaf name {
            type string;
            description
              "Name of the protocols set -- this is used as a label to
               reference the set in match conditions.";
          }
          leaf-list protocol {
            type union {
              type uint8;
              type string; //Check if we can reuse an IANA-maintained module
            }
            description
              "Value of the protocl set.";
          }
        }
      }
      container icmp-type-sets {
        description
          "Data definitions for a list of ICMP types which can
           be matched in policies.";
        list icmp-type-set {
          key "name";
          description
            "List of ICMP type set definitions.";
          leaf name {
            type string;
            description
              "Name of the ICMP type set -- this is used as a label to
               reference the set in match conditions.";
          }
          list types {
            key "type";
            description
              "Includes a list of ICMP types.";
            uses packet-fields:acl-icmp-header-fields;
          }
        }
      }
    }
  }

  augment "/ietf-acl:acls/ietf-acl:acl/ietf-acl:aces"
        + "/ietf-acl:ace/ietf-acl:matches" {
    description
      "Add a new match types.";
    choice payload {
      description
        "Match a prefix pattern.";
      container prefix-pattern {
        if-feature "match-on-payload";
        description
          "Rule to perform payload-based match.";
        uses payload;
      }
    }
  }

  augment "/ietf-acl:acls/ietf-acl:acl/ietf-acl:aces"
        + "/ietf-acl:ace/ietf-acl:matches/ietf-acl:l3/ietf-acl:ipv4" {
    description
      "Handle non-initial and initial fragments for IPv4 packets.";
    container ipv4-fragment {
      description
        "Indicates how to handle IPv4 fragments.";
      uses fragment-fields;
    }
    leaf source-ipv4-prefix-list {
      type leafref {
        path "../../../../defined-sets/ipv4-prefix-sets/prefix-set/name";
      }
      description
        "A reference to a prefix list to match the source address.";
    }
    leaf destination-ipv4-prefix-list {
      type leafref {
        path "../../../../defined-sets/ipv4-prefix-sets/prefix-set/name";
      }
      description
        "A reference to a prefix list to match the destination address.";
    }
    leaf next-header-set {
      type leafref {
        path "../../../../defined-sets/protocol-sets/protocol-set/name";
      }
      description
        "A reference to a protocol set to match the next-header field.";
    }
  }

  augment "/ietf-acl:acls/ietf-acl:acl/ietf-acl:aces"
        + "/ietf-acl:ace/ietf-acl:matches/ietf-acl:l3/ietf-acl:ipv6" {
    description
      "Handles non-initial and initial fragments for IPv6 packets.";
    container ipv6-fragment {
      description
        "Indicates how to handle IPv6 fragments.";
      uses fragment-fields;
    }
    leaf source-ipv6-prefix-list {
      type leafref {
        path "../../../../defined-sets/ipv6-prefix-sets/prefix-set/name";
      }
      description
        "A reference to a prefix list to match the source address.";
    }
    leaf destination-ipv6-prefix-list {
      type leafref {
        path "../../../../defined-sets/ipv6-prefix-sets/prefix-set/name";
      }
      description
        "A reference to a prefix list to match the destination address.";
    }
    leaf protocol-set {
      type leafref {
        path "../../../../defined-sets/protocol-sets/protocol-set/name";
      }
      description
        "A reference to a protocol set to match the protocol field.";
    }
  }

  augment "/ietf-acl:acls/ietf-acl:acl/ietf-acl:aces"
        + "/ietf-acl:ace/ietf-acl:matches/ietf-acl:l4/ietf-acl:tcp" {
    description
      "Handles TCP flags and port sets.";
    container flags-bitmask {
      description
        "Indicates how to handle TCP flags.";
      uses tcp-flags;
    }
    leaf source-tcp-port-set {
      type leafref {
        path "../../../../defined-sets/port-sets/port-set/name";
      }
      description
        "A reference to a port set to match the source port.";
    }
    leaf destination-tcp-port-set {
      type leafref {
        path "../../../../defined-sets/port-sets/port-set/name";
      }
      description
        "A reference to a port set to match the destination port.";
    }
  }

  augment "/ietf-acl:acls/ietf-acl:acl/ietf-acl:aces"
        + "/ietf-acl:ace/ietf-acl:matches/ietf-acl:l4/ietf-acl:udp" {
    description
      "Handle UDP port sets.";
    leaf source-udp-port-set {
      type leafref {
        path "../../../../defined-sets/port-sets/port-set/name";
      }
      description
        "A reference to a port set to match the source port.";
    }
    leaf destination-udp-port-set {
      type leafref {
        path "../../../../defined-sets/port-sets/port-set/name";
      }
      description
        "A reference to a port set to match the destination port.";
    }
  }

  augment "/ietf-acl:acls/ietf-acl:acl/ietf-acl:aces"
        + "/ietf-acl:ace/ietf-acl:matches/ietf-acl:l4/ietf-acl:icmp" {
    description
      "Handle ICMP type sets.";
    leaf icmp-set {
      type leafref {
        path "../../../../defined-sets/icmp-type-sets/icmp-type-set/name";
      }
      description
        "A reference to an ICMP type set to match the ICMP type field.";
    }
  }

  augment "/ietf-acl:acls/ietf-acl:acl/ietf-acl:aces"
        + "/ietf-acl:ace/ietf-acl:actions" {
    description
      "Rate-limit action.";
    leaf rate-limit {
      when "../ietf-acl:forwarding = 'ietf-acl:accept'" {
        description
          "Rate-limit valid only when accept action is used.";
      }
      type decimal64 {
        fraction-digits 2;
      }
      units "bytes per second";
      description
        "Indicates a rate-limit for the matched traffic.";
    }
  }
}
]]></sourcecode>
      </section>
    </section>
    <section anchor="security-considerations-tbc">
      <name>Security Considerations (TBC)</name>
      <t>The YANG modules specified in this document define a schema for data
   that is designed to be accessed via network management protocol such
   as NETCONF <xref target="RFC6241"/> or RESTCONF <xref target="RFC8040"/>.  The lowest NETCONF layer
   is the secure transport layer, and the mandatory-to-implement secure
   transport is Secure Shell (SSH) <xref target="RFC6242"/>.  The lowest RESTCONF layer
   is HTTPS, and the mandatory-to-implement secure transport is TLS
   <xref target="RFC8446"/>.</t>
      <t>The Network Configuration Access Control Model (NACM) <xref target="RFC8341"/> provides the means to restrict access for particular NETCONF or RESTCONF users to a preconfigured subset of all available NETCONF or RESTCONF protocol operations and content.</t>
      <t>There are a number of data nodes defined in this YANG module that are writable/creatable/deletable (i.e., config true, which is the default). These data nodes may be considered sensitive or vulnerable in some network environments. Write operations (e.g., edit-config) to these data nodes without proper protection can have a negative effect on network operations. These are the subtrees and data nodes and their sensitivity/vulnerability:</t>
      <ul spacing="normal">
        <li>TBC</li>
      </ul>
      <t>Some of the readable data nodes in this YANG module may be considered sensitive or vulnerable in some network environments. It is thus important to control read access (e.g., via get, get-config, or notification) to these data nodes. These are the subtrees and data nodes and their sensitivity/vulnerability:</t>
      <ul spacing="normal">
        <li>TBC</li>
      </ul>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="uri-registration">
        <name>URI Registration</name>
        <t>This document requests IANA to register the following URI in the "ns"
   subregistry within the "IETF XML Registry" <xref target="RFC3688"/>:</t>
        <artwork type="ascii-art"><![CDATA[
         URI: urn:ietf:params:xml:ns:yang:ietf-acl-enh
         Registrant Contact: The IESG.
         XML: N/A; the requested URI is an XML namespace.
]]></artwork>
      </section>
      <section anchor="yang-module-name-registration">
        <name>YANG Module Name Registration</name>
        <t>This document requests IANA to register the following YANG module in
   the "YANG Module Names" subregistry <xref target="RFC6020"/> within the "YANG
   Parameters" registry.</t>
        <artwork type="ascii-art"><![CDATA[
         name: ietf-acl-enh
         namespace: urn:ietf:params:xml:ns:yang:ietf-ietf-acl-enh
         maintained by IANA: N
         prefix: enh-acl
         reference: RFC XXXX
]]></artwork>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC8519">
          <front>
            <title>YANG Data Model for Network Access Control Lists (ACLs)</title>
            <author fullname="M. Jethanandani" initials="M." surname="Jethanandani">
              <organization/>
            </author>
            <author fullname="S. Agarwal" initials="S." surname="Agarwal">
              <organization/>
            </author>
            <author fullname="L. Huang" initials="L." surname="Huang">
              <organization/>
            </author>
            <author fullname="D. Blair" initials="D." surname="Blair">
              <organization/>
            </author>
            <date month="March" year="2019"/>
            <abstract>
              <t>This document defines a data model for Access Control Lists (ACLs). An ACL is a user-ordered set of rules used to configure the forwarding behavior in a device.  Each rule is used to find a match on a packet and define actions that will be performed on the packet.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8519"/>
          <seriesInfo name="DOI" value="10.17487/RFC8519"/>
        </reference>
        <reference anchor="RFC8956">
          <front>
            <title>Dissemination of Flow Specification Rules for IPv6</title>
            <author fullname="C. Loibl" initials="C." role="editor" surname="Loibl">
              <organization/>
            </author>
            <author fullname="R. Raszuk" initials="R." role="editor" surname="Raszuk">
              <organization/>
            </author>
            <author fullname="S. Hares" initials="S." role="editor" surname="Hares">
              <organization/>
            </author>
            <date month="December" year="2020"/>
            <abstract>
              <t>"Dissemination of Flow Specification Rules" (RFC 8955) provides a Border Gateway Protocol (BGP) extension for the propagation of traffic flow information for the purpose of rate limiting or filtering IPv4 protocol data packets. </t>
              <t>This document extends RFC 8955 with IPv6 functionality. It also updates RFC 8955 by changing the IANA Flow Spec Component Types registry.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8956"/>
          <seriesInfo name="DOI" value="10.17487/RFC8956"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC7950">
          <front>
            <title>The YANG 1.1 Data Modeling Language</title>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund">
              <organization/>
            </author>
            <date month="August" year="2016"/>
            <abstract>
              <t>YANG is a data modeling language used to model configuration data, state data, Remote Procedure Calls, and notifications for network management protocols.  This document describes the syntax and semantics of version 1.1 of the YANG language.  YANG version 1.1 is a maintenance release of the YANG language, addressing ambiguities and defects in the original specification.  There are a small number of backward incompatibilities from YANG version 1.  This document also specifies the YANG mappings to the Network Configuration Protocol (NETCONF).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7950"/>
          <seriesInfo name="DOI" value="10.17487/RFC7950"/>
        </reference>
        <reference anchor="RFC6241">
          <front>
            <title>Network Configuration Protocol (NETCONF)</title>
            <author fullname="R. Enns" initials="R." role="editor" surname="Enns">
              <organization/>
            </author>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund">
              <organization/>
            </author>
            <author fullname="J. Schoenwaelder" initials="J." role="editor" surname="Schoenwaelder">
              <organization/>
            </author>
            <author fullname="A. Bierman" initials="A." role="editor" surname="Bierman">
              <organization/>
            </author>
            <date month="June" year="2011"/>
            <abstract>
              <t>The Network Configuration Protocol (NETCONF) defined in this document provides mechanisms to install, manipulate, and delete the configuration of network devices.  It uses an Extensible Markup Language (XML)-based data encoding for the configuration data as well as the protocol messages.  The NETCONF protocol operations are realized as remote procedure calls (RPCs).  This document obsoletes RFC 4741.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6241"/>
          <seriesInfo name="DOI" value="10.17487/RFC6241"/>
        </reference>
        <reference anchor="RFC8040">
          <front>
            <title>RESTCONF Protocol</title>
            <author fullname="A. Bierman" initials="A." surname="Bierman">
              <organization/>
            </author>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund">
              <organization/>
            </author>
            <author fullname="K. Watsen" initials="K." surname="Watsen">
              <organization/>
            </author>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes an HTTP-based protocol that provides a programmatic interface for accessing data defined in YANG, using the datastore concepts defined in the Network Configuration Protocol (NETCONF).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8040"/>
          <seriesInfo name="DOI" value="10.17487/RFC8040"/>
        </reference>
        <reference anchor="RFC6242">
          <front>
            <title>Using the NETCONF Protocol over Secure Shell (SSH)</title>
            <author fullname="M. Wasserman" initials="M." surname="Wasserman">
              <organization/>
            </author>
            <date month="June" year="2011"/>
            <abstract>
              <t>This document describes a method for invoking and running the Network Configuration Protocol (NETCONF) within a Secure Shell (SSH) session as an SSH subsystem.  This document obsoletes RFC 4742.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6242"/>
          <seriesInfo name="DOI" value="10.17487/RFC6242"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC8341">
          <front>
            <title>Network Configuration Access Control Model</title>
            <author fullname="A. Bierman" initials="A." surname="Bierman">
              <organization/>
            </author>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund">
              <organization/>
            </author>
            <date month="March" year="2018"/>
            <abstract>
              <t>The standardization of network configuration interfaces for use with the Network Configuration Protocol (NETCONF) or the RESTCONF protocol requires a structured and secure operating environment that promotes human usability and multi-vendor interoperability.  There is a need for standard mechanisms to restrict NETCONF or RESTCONF protocol access for particular users to a preconfigured subset of all available NETCONF or RESTCONF protocol operations and content.  This document defines such an access control model.</t>
              <t>This document obsoletes RFC 6536.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="91"/>
          <seriesInfo name="RFC" value="8341"/>
          <seriesInfo name="DOI" value="10.17487/RFC8341"/>
        </reference>
        <reference anchor="RFC3688">
          <front>
            <title>The IETF XML Registry</title>
            <author fullname="M. Mealling" initials="M." surname="Mealling">
              <organization/>
            </author>
            <date month="January" year="2004"/>
            <abstract>
              <t>This document describes an IANA maintained registry for IETF standards which use Extensible Markup Language (XML) related items such as Namespaces, Document Type Declarations (DTDs), Schemas, and Resource Description Framework (RDF) Schemas.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="81"/>
          <seriesInfo name="RFC" value="3688"/>
          <seriesInfo name="DOI" value="10.17487/RFC3688"/>
        </reference>
        <reference anchor="RFC6020">
          <front>
            <title>YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)</title>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund">
              <organization/>
            </author>
            <date month="October" year="2010"/>
            <abstract>
              <t>YANG is a data modeling language used to model configuration and state data manipulated by the Network Configuration Protocol (NETCONF), NETCONF remote procedure calls, and NETCONF notifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6020"/>
          <seriesInfo name="DOI" value="10.17487/RFC6020"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC9132">
          <front>
            <title>Distributed Denial-of-Service Open Threat Signaling (DOTS) Signal Channel Specification</title>
            <author fullname="M. Boucadair" initials="M." role="editor" surname="Boucadair">
              <organization/>
            </author>
            <author fullname="J. Shallow" initials="J." surname="Shallow">
              <organization/>
            </author>
            <author fullname="T. Reddy.K" initials="T." surname="Reddy.K">
              <organization/>
            </author>
            <date month="September" year="2021"/>
            <abstract>
              <t>This document specifies the Distributed Denial-of-Service Open Threat Signaling (DOTS) signal channel, a protocol for signaling the need for protection against Distributed Denial-of-Service (DDoS) attacks to a server capable of enabling network traffic mitigation on behalf of the requesting client.</t>
              <t>A companion document defines the DOTS data channel, a separate reliable communication layer for DOTS management and configuration purposes.</t>
              <t>This document obsoletes RFC 8782.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9132"/>
          <seriesInfo name="DOI" value="10.17487/RFC9132"/>
        </reference>
        <reference anchor="RFC8955">
          <front>
            <title>Dissemination of Flow Specification Rules</title>
            <author fullname="C. Loibl" initials="C." surname="Loibl">
              <organization/>
            </author>
            <author fullname="S. Hares" initials="S." surname="Hares">
              <organization/>
            </author>
            <author fullname="R. Raszuk" initials="R." surname="Raszuk">
              <organization/>
            </author>
            <author fullname="D. McPherson" initials="D." surname="McPherson">
              <organization/>
            </author>
            <author fullname="M. Bacher" initials="M." surname="Bacher">
              <organization/>
            </author>
            <date month="December" year="2020"/>
            <abstract>
              <t>This document defines a Border Gateway Protocol Network Layer Reachability Information (BGP NLRI) encoding format that can be used to distribute (intra-domain and inter-domain) traffic Flow Specifications for IPv4 unicast and IPv4 BGP/MPLS VPN services. This allows the routing system to propagate information regarding more specific components of the traffic aggregate defined by an IP destination prefix. </t>
              <t>It also specifies BGP Extended Community encoding formats, which can be used to propagate Traffic Filtering Actions along with the Flow Specification NLRI.  Those Traffic Filtering Actions encode actions a routing system can take if the packet matches the Flow Specification.</t>
              <t> This document obsoletes both RFC 5575 and RFC 7674.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8955"/>
          <seriesInfo name="DOI" value="10.17487/RFC8955"/>
        </reference>
        <reference anchor="RFC8340">
          <front>
            <title>YANG Tree Diagrams</title>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund">
              <organization/>
            </author>
            <author fullname="L. Berger" initials="L." role="editor" surname="Berger">
              <organization/>
            </author>
            <date month="March" year="2018"/>
            <abstract>
              <t>This document captures the current syntax used in YANG module tree diagrams.  The purpose of this document is to provide a single location for this definition.  This syntax may be updated from time to time based on the evolution of the YANG language.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="215"/>
          <seriesInfo name="RFC" value="8340"/>
          <seriesInfo name="DOI" value="10.17487/RFC8340"/>
        </reference>
      </references>
    </references>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Many thanks to Jon Shallow and Miguel Cros for the discussion when preparing this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
SLBE+81Js6mj4P8BYwjCmFCeAAA=

-->

</rfc>
