<?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.5 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-huang-savnet-sav-table-04" category="std" consensus="true" submissionType="IETF" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.0 -->
  <front>
    <title abbrev="General SAV Capabilities">General Source Address Validation Capabilities</title>
    <seriesInfo name="Internet-Draft" value="draft-huang-savnet-sav-table-04"/>
    <author initials="M." surname="Huang" fullname="Mingqing Huang">
      <organization>Huawei Technologies</organization>
      <address>
        <postal>
          <city>Beijing</city>
          <country>China</country>
        </postal>
        <email>huangmingqing@huawei.com</email>
      </address>
    </author>
    <author initials="W." surname="Cheng" fullname="Weiqiang Cheng">
      <organization>China Mobile</organization>
      <address>
        <postal>
          <city>Beijing</city>
          <country>China</country>
        </postal>
        <email>chengweiqiang@chinamobile.com</email>
      </address>
    </author>
    <author initials="D." surname="Li" fullname="Dan Li">
      <organization>Tsinghua University</organization>
      <address>
        <postal>
          <city>Beijing</city>
          <country>China</country>
        </postal>
        <email>tolidan@tsinghua.edu.cn</email>
      </address>
    </author>
    <author initials="N." surname="Geng" fullname="Nan Geng">
      <organization>Huawei Technologies</organization>
      <address>
        <postal>
          <city>Beijing</city>
          <country>China</country>
        </postal>
        <email>gengnan@huawei.com</email>
      </address>
    </author>
    <author initials="M." surname="Liu" fullname="Mingxing Liu">
      <organization>Huawei Technologies</organization>
      <address>
        <postal>
          <city>Beijing</city>
          <country>China</country>
        </postal>
        <email>liumingxing7@huawei.com</email>
      </address>
    </author>
    <author initials="L." surname="Chen" fullname="Li Chen">
      <organization>Zhongguancun Laboratory</organization>
      <address>
        <postal>
          <city>Beijing</city>
          <country>China</country>
        </postal>
        <email>lichen@zgclab.edu.cn</email>
      </address>
    </author>
    <author initials="C." surname="Lin" fullname="Changwang Lin">
      <organization>New H3C Technologies</organization>
      <address>
        <postal>
          <city>Beijing</city>
          <country>China</country>
        </postal>
        <email>linchangwang.04414@h3c.com</email>
      </address>
    </author>
    <date year="2024" month="February" day="22"/>
    <area>Routing</area>
    <workgroup>savnet</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 80?>
<t>The SAV rules of existing source address validation (SAV) mechanisms, are derived from other core data structures, e.g., FIB-based uRPF, which are not dedicatedly designed for source filtering. Therefore there are some limitations related to deployable scenarios and traffic handling policies.</t>
      <t>To overcome these limitations, this document introduces the general SAV capabilities from data plane perspective. How to implement the capabilities and how to generate SAV rules are not in the scope of this document.</t>
    </abstract>
  </front>
  <middle>
    <?line 85?>

<section anchor="sec-intro">
      <name>Introduction</name>
      <t>Source address validation (SAV) can detect and prevent source address spoofing on the SAV-enabled routers. When a packet arrives at an interface of the router, the source address of the packet will be validated. The packets with unwanted source addresses or arriving at unwanted interfaces, will be considered invalid and usually be conducted elimination actions on. Only validated packets will continue to be handled or forwarded.</t>
      <t>From the perspective of data plane validation, the SAV capabilities of existing mechanisms have two main limitations. One of them is the deployable scenario limitation. ACL rules can be configured for filtering unwanted source addresses at specific interfaces (<xref target="RFC3704"/>). However, ACL is not dedicatedly designed for source prefix filtering. There exist performance and scalability issues due to long-key based searching, and usually expert maintenance efforts are required. Strict uRPF and loose uRPF are two typical FIB-based SAV mechanisms (<xref target="RFC3704"/>) and are supported by most commercial routers/switches. FIB-based validation brings many benefits compared to ACL-based filtering but also induces some limitations. Strict uRPF is not applicable for asymmetric routing (<xref target="RFC8704"/>), which exists in various scenarios such as intra-domain multi-homing access, inter-domain interconnection, etc. Under asymmetric routing, a source prefix may have a different incoming interface from the next-hop interface of the matched entry, or the source prefix does not exist in the FIB at all. Loose mode can only block unannounced prefix, which results in massive false negatives. Overall, existing ACL-based or FIB-based SAVs can only be applied to specific scenarios and cannot be adaptive to various scenarios (e.g., symmetric vs asymmetric).</t>
      <t>The other limitation is inflexible traffic handling policy. The current common practice is just to silently drop the spoofed packets. We don’t know who benefits from this and who is the source. Further more, the clues of attacks are ignored, which could be very helpful for dealing with DDoS etc.</t>
      <t>The root cause of the above two limitations is that there is no tool specifically designed for source address filtering. That is, the capabilities of current tools are derived from other functions, e.g., FIB or ACL.</t>
      <t>This document describes the general SAV capabilities that the data plane of SAV-enabled devices should have. Two kinds of capabilities will be introduced: validation mode and traffic handling policy. Validation modes describe how to apply validation in different scenarios. Traffic handling policies are the policies applied on the validated packets. By implementing the general SAV capabilities, the above two limitations of existing mechanisms can be overcome.</t>
      <t>To achieve accurate and scalable source address validation, a dedicated SAV table for SAV rules is needed instead of using those derived from other functions, e.g., FIB or ACL. 
Note that the general SAV capabilities described in this document is decoupled with real implementation. Conforming implementations of this specification may differ, but the SAV outcomes <bcp14>SHOULD</bcp14> be equivalent to the described SAV capabilities. How to generate SAV rules is not the focus of this document.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>SAV rule: The entry specifying the valid incoming interfaces of specific source addresses or source prefixes.</t>
        <t>Validation mode: The mode that describes the typical applications of SAV in a specific kind of scenarios. Different modes take effect in different scales and treat the default prefix differently.</t>
        <t>Traffic handling policy: The policy taken on the packets validated by SAV.</t>
      </section>
      <section anchor="requirements-language">
        <name>Requirements Language</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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.</t>
        <?line -18?>

</section>
    </section>
    <section anchor="sav-mode">
      <name>Validation Modes</name>
      <t>This section describes validation modes. These modes take effect in different scales and treat the default prefix differently. By choosing modes in different scenarios appropriately, the network can be protected as much as possible while not impacting the forwarding of legitimate packets.</t>
      <t>Validation modes also describe the goal of SAV rule generation. The modes can be set before generating the rules. By specifying validation modes, operators can take appropriate SAV mechanisms matching the modes, and engineers can design new SAV mechanisms to achieve the goal in challenging scenarios.</t>
      <section anchor="mode-1-interface-based-prefix-allowlist">
        <name>Mode 1: Interface-based prefix allowlist</name>
        <t>Mode 1 is an interface-scale mode, i.e., it takes effect on a specific interface. The interface enabling Mode 1 is maintaining an interface-based prefix allowlist. Only the source prefixes recorded in the list will be considered valid, otherwise invalid.</t>
        <t>Applying Mode 1 on an interface requires the complete knowledge of legitimate prefixes connected to the interface. Mode 1 is suitable to the closed-connected interfaces such as those connecting to a subnet, a stub AS, or a customer cone. Such a mode can efficiently prevent the connected network from spoofing source prefixes of other networks.</t>
        <t>Strict uRPF based on FIB belongs to this mode. However, to overcome the limitation of asymmetric routing, native source prefix-based SAV table is suggested. This is essential for new SAV mechanisms/architectures such as EFP-uRPF <xref target="RFC8704"/>, BAR-SAV <xref target="I-D.ietf-sidrops-bar-sav"/>, Intra-domain/Inter-domain SAVNET (<xref target="I-D.li-savnet-intra-domain-architecture"/>, <xref target="I-D.wu-savnet-inter-domain-architecture"/>), etc.</t>
        <t>In some cases, it may be difficult for an interface getting all the legitimate source prefixes. If not all legitimate prefixes are included in the allowlist, packets with legitimate source addresses arriving at the interface may be improperly blocked. For example, the interface with a default route or the interface connecting to the Internet through a provider AS can hardly promise to know all the legitimate source prefixes.</t>
      </section>
      <section anchor="mode-2-interface-based-prefix-blocklist">
        <name>Mode 2: Interface-based prefix blocklist</name>
        <t>Mode 2 is also an interface-scale mode, i.e., it takes effect on a configured interface. An interface cannot enable Mode 1 and Mode 2 at the same time. The interface enabling Mode 2 is maintaining an interface-based prefix blocklist. The source prefixes recorded in the list will be considered invalid, otherwise valid.</t>
        <t>This mode does not require the complete blocklist. If the packets with the specific source addresses need to be discarded, Mode 2 can be taken. Mode 2 is suitable for proactive filtering and reactive filtering. Usually the source prefixes that are sure to be invalid will be put into the blocklist, which is proactive filtering. Reactive filtering rules are usually installed in DDoS elimination for dropping packets with specific source addresses.</t>
        <t>The prefix blocklist can be generated automatically, e.g., one of Intra-domain SAVNET architecture cases, blocking the incoming traffic with internal source prefixes. Or operators can configure the specific source prefixes to block from the interface. This is similar to ACL-based filtering, but more native SAV rule expression with better performance and scalability is needed.</t>
      </section>
      <section anchor="mode-3-prefix-based-interface-list">
        <name>Mode 3: Prefix-based interface list</name>
        <t>Mode 3 is a router-scale mode, i.e., it can validate traffic arriving at the router from all directions. The router enabling Mode 3 will record the protected source prefixes and maintain an interface list for each source prefix. The interface list of each source prefix may be an allowlist or a blocklist.</t>
        <t>If a source prefix has an interface allowlist, the packet whose source address matches the source prefix is considered valid, only when its incoming interface is in the allowlist. Otherwise, the packet is considered invalid.</t>
        <t>If a source prefix has an interface blocklist, the packet whose source address matches the source prefix is considered invalid, only when its incoming interface is in the blocklist. Otherwise, the packet is considered valid.</t>
        <t>If its source address does not match any recorded source prefix, the packet is valid by default.</t>
        <!-- Mode 3 focuses on validating/protecting the interested source prefixes. If some source prefixes are important but there is no condition to enable Mode 1, Mode 3 can be enabled to provide some extent of protection.  -->

<t>Mode 3 focuses on validating/protecting the interested source prefixes. Operators can configure the interface list for a specific source prefix, to prevent DDoS attack related to this source prefix. Or the interface list for specific prefixes can be generated automatically, e.g., one capability defined by Intra-domain and Inter-domain SAVNET architectures.</t>
      </section>
      <section anchor="validation-procedure">
        <name>Validation Procedure</name>
        <t>Mode 1 and Mode 2 are working on interface-level, while Mode 3 is for the router-level. Thus, there can be multiple modes configured on the same router. Mode 1 are most preferred if applicable (with best pretection effect) and mutual exclusive with the other two modes, which means while an interface enabled Mode 1, the traffic for this interface don't need go through Mode 2 or Mode 3 -- while an interface enabled Mode 2, the traffic still need go through Mode 3. <xref target="modes"/> shows a comparison of different validation modes for dealing with default prefix.</t>
        <figure anchor="modes">
          <name>A comparison of different validation modes</name>
          <artwork><![CDATA[
  +-----------------------------------------------------+
  + Mode | Scale     | Treatment of the default prefix  +
  +-----------------------------------------------------+
  + 1    | interface | invalid                          +
  + 2    | interface | valid                            +
  + 3    | router    | check its incoming interface     +
  +-----------------------------------------------------+
]]></artwork>
        </figure>
        <t>The validation procedure is shown in <xref target="SAV-procedure"/>. Suppose the router has learned the SAV rules by SAV mechanisms and implemented them in the data plane. When a packet arrives at the router, the router will take the source address and the incoming interface of the packet as the input and look up the SAV rules. The final validity state that is either "valid" or "invalid" will be returned after the procedure.</t>
        <t>Firstly, the packet is validated by the enabled interface-scale mode, i.e., Mode 1 or Mode 2. If the validity state1 or validity state2 is "invalid", the final validity state is "invalid" and the packet does not have to be validated by Mode 3. If the validity state1 or validity state2 is "valid", the packet still needs to be validated by the enabled Mode 3 and the validity state3 is the final validity state.</t>
        <t>If a mode is not enabled, then the corresponding list should not be queried. If Mode 3 is not enabled, either the validity state1 or the validity state2 is the final validity state.</t>
        <figure anchor="SAV-procedure">
          <name>Validation procedure</name>
          <artwork><![CDATA[
                        SAV-enabled router
             +--------------------------------------------+
             |                                            |
packet1--->Mode1---> validity ----+                       |
             |        state1      |                       |
             |                    | if the validity state |
packet2--->Mode2---> validity ----|  is "valid" and       |
             |        state2      |  Mode 3 is enabled    |
             |                    |                       |
             |                    \/                      |
packet3----->|---------------->Mode3---> validity         |
             |                            state3          |
             +--------------------------------------------+
]]></artwork>
        </figure>
        <t>To achieve accurate and scalable source address validation, a dedicated SAV table for SAV rules is needed rather than using those derived from other functions, e.g., FIB or ACL.</t>
      </section>
    </section>
    <section anchor="sec-policy">
      <name>Traffic Handling Policies</name>
      <t>After doing validation, the router gets the validity state of the incoming packet. For the packet with invalid state, traffic handling policies should be taken on the packet. Simply forwarding or silently dropping may not well satisfy the requirements of operators in different scenarios. This section suggests to provide flexible traffic handling policies to validated packets just like FlowSpec (<xref target="RFC8955"/>, <xref target="RFC8956"/>).</t>
      <t>The followings are the traffic control policies that can be taken. One and only one of the policies will be chosen for an "invalid" validation result.</t>
      <ul spacing="normal">
        <li>
          <t>"Permit": Forward packets normally though the packets are considered invalid. This policy is useful when operators only want to monitor the status of source address spoofing in the network. The "Permit" policy can be taken together with the "Sample" policy.</t>
        </li>
        <li>
          <t>"Discard": Drop packets directly, which is the common choose of existing SAV mechanisms.</t>
        </li>
        <li>
          <t>"Rate limit": Enforce an upper bound of traffic rate (e.g., bps or pps) for mitigation of source address spoofing attacks. This policy is helpful while operators want do tentative filtering.</t>
        </li>
        <li>
          <t>"Traffic redirect": Redirect the packets to the specified points (e.g., scrubbing centers) in the network for attack elimination.</t>
        </li>
      </ul>
      <t>There are also traffic monitor policies that are optional. One of the useful traffic monitor policies is:</t>
      <ul spacing="normal">
        <li>
          <t>"Sample": Capture the packets with a configurable sampling rate and reports them to remote servers (e.g., security analysis center). The sampled packets can be used for threat awareness and further analysis <xref target="I-D.cheng-savnet-proactive-defense-network"/>. "Sample" can be taken together with any one of the above policies. Note that, existing techniques like NetStream or NetFlow can be used for "Sample".</t>
        </li>
      </ul>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This document focuses on the general SAV capabilities. The generation of SAV rules is not discussed. There may be some security considerations for SAV generation, but it is not in the scope of this document.</t>
      <t>The "Sample" policy pushes data to remote servers. This function can be achieved by existing techniques like NetStream or NetFlow. The "Sample" policy may induce same security considerations as these techniques, and the corresponding documents have discussed them.</t>
    </section>
    <section anchor="sec-iana">
      <name>IANA Considerations</name>
      <t>This document includes no request to IANA.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC3704" target="https://www.rfc-editor.org/info/rfc3704" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3704.xml">
          <front>
            <title>Ingress Filtering for Multihomed Networks</title>
            <author fullname="F. Baker" initials="F." surname="Baker"/>
            <author fullname="P. Savola" initials="P." surname="Savola"/>
            <date month="March" year="2004"/>
            <abstract>
              <t>BCP 38, RFC 2827, is designed to limit the impact of distributed denial of service attacks, by denying traffic with spoofed addresses access to the network, and to help ensure that traffic is traceable to its correct source network. As a side effect of protecting the Internet against such attacks, the network implementing the solution also protects itself from this and other attacks, such as spoofed management access to networking equipment. There are cases when this may create problems, e.g., with multihoming. This document describes the current ingress filtering operational mechanisms, examines generic issues related to ingress filtering, and delves into the effects on multihoming in particular. This memo updates RFC 2827. 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="84"/>
          <seriesInfo name="RFC" value="3704"/>
          <seriesInfo name="DOI" value="10.17487/RFC3704"/>
        </reference>
        <reference anchor="RFC8704" target="https://www.rfc-editor.org/info/rfc8704" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8704.xml">
          <front>
            <title>Enhanced Feasible-Path Unicast Reverse Path Forwarding</title>
            <author fullname="K. Sriram" initials="K." surname="Sriram"/>
            <author fullname="D. Montgomery" initials="D." surname="Montgomery"/>
            <author fullname="J. Haas" initials="J." surname="Haas"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>This document identifies a need for and proposes improvement of the unicast Reverse Path Forwarding (uRPF) techniques (see RFC 3704) for detection and mitigation of source address spoofing (see BCP 38). Strict uRPF is inflexible about directionality, the loose uRPF is oblivious to directionality, and the current feasible-path uRPF attempts to strike a balance between the two (see RFC 3704). However, as shown in this document, the existing feasible-path uRPF still has shortcomings. This document describes enhanced feasible-path uRPF (EFP-uRPF) techniques that are more flexible (in a meaningful way) about directionality than the feasible-path uRPF (RFC 3704). The proposed EFP-uRPF methods aim to significantly reduce false positives regarding invalid detection in source address validation (SAV). Hence, they can potentially alleviate ISPs' concerns about the possibility of disrupting service for their customers and encourage greater deployment of uRPF techniques. This document updates RFC 3704.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="84"/>
          <seriesInfo name="RFC" value="8704"/>
          <seriesInfo name="DOI" value="10.17487/RFC8704"/>
        </reference>
        <reference anchor="RFC8955" target="https://www.rfc-editor.org/info/rfc8955" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8955.xml">
          <front>
            <title>Dissemination of Flow Specification Rules</title>
            <author fullname="C. Loibl" initials="C." surname="Loibl"/>
            <author fullname="S. Hares" initials="S." surname="Hares"/>
            <author fullname="R. Raszuk" initials="R." surname="Raszuk"/>
            <author fullname="D. McPherson" initials="D." surname="McPherson"/>
            <author fullname="M. Bacher" initials="M." surname="Bacher"/>
            <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="RFC8956" target="https://www.rfc-editor.org/info/rfc8956" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8956.xml">
          <front>
            <title>Dissemination of Flow Specification Rules for IPv6</title>
            <author fullname="C. Loibl" initials="C." role="editor" surname="Loibl"/>
            <author fullname="R. Raszuk" initials="R." role="editor" surname="Raszuk"/>
            <author fullname="S. Hares" initials="S." role="editor" surname="Hares"/>
            <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="I-D.cheng-savnet-proactive-defense-network" target="https://datatracker.ietf.org/doc/html/draft-cheng-savnet-proactive-defense-network-01" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.cheng-savnet-proactive-defense-network.xml">
          <front>
            <title>Network Proactive Defense based on Source Address Validation</title>
            <author fullname="Weiqiang Cheng" initials="W." surname="Cheng">
              <organization>China Mobile</organization>
            </author>
            <author fullname="Nan Geng" initials="N." surname="Geng">
              <organization>Huawei</organization>
            </author>
            <author fullname="Dan Li" initials="D." surname="Li">
              <organization>Tsinghua University</organization>
            </author>
            <author fullname="Shengnan Yue" initials="" surname="Yue">
              <organization>China Mobile</organization>
            </author>
            <date day="18" month="October" year="2023"/>
            <abstract>
              <t>Source address validation (SAV) helps routers check the validity of packets. Networks can use the SAV capability to enhance threat awareness. This document proposes proactive defense network where routers can directly identify threats through SAV. The proactive threat awareness feature is helpful for satisfying the threat awareness requirement of ISPs.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-cheng-savnet-proactive-defense-network-01"/>
        </reference>
        <reference anchor="I-D.ietf-sidrops-bar-sav" target="https://datatracker.ietf.org/doc/html/draft-ietf-sidrops-bar-sav-02" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-sidrops-bar-sav.xml">
          <front>
            <title>Source Address Validation Using BGP UPDATEs, ASPA, and ROA (BAR-SAV)</title>
            <author fullname="Kotikalapudi Sriram" initials="K." surname="Sriram">
              <organization>USA National Institute of Standards and Technology</organization>
            </author>
            <author fullname="Igor Lubashev" initials="I." surname="Lubashev">
              <organization>Akamai Technologies</organization>
            </author>
            <author fullname="Doug Montgomery" initials="D." surname="Montgomery">
              <organization>USA National Institute of Standards and Technology</organization>
            </author>
            <date day="12" month="September" year="2023"/>
            <abstract>
              <t>Designing an efficient source address validation (SAV) filter requires minimizing false positives (i.e., avoiding blocking legitimate traffic) while maintaining directionality (see RFC8704). This document advances the technology for SAV filter design through a method that makes use of BGP UPDATE messages, Autonomous System Provider Authorization (ASPA), and Route Origin Authorization (ROA). The proposed method's name is abbreviated as BAR-SAV. BAR-SAV can be used by network operators to derive more robust SAV filters and thus improve network resilience. This document updates RFC8704.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-sidrops-bar-sav-02"/>
        </reference>
        <reference anchor="I-D.li-savnet-intra-domain-architecture" target="https://datatracker.ietf.org/doc/html/draft-li-savnet-intra-domain-architecture-06" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.li-savnet-intra-domain-architecture.xml">
          <front>
            <title>Intra-domain Source Address Validation (SAVNET) Architecture</title>
            <author fullname="Dan Li" initials="D." surname="Li">
              <organization>Tsinghua University</organization>
            </author>
            <author fullname="Jianping Wu" initials="J." surname="Wu">
              <organization>Tsinghua University</organization>
            </author>
            <author fullname="Lancheng Qin" initials="L." surname="Qin">
              <organization>Tsinghua University</organization>
            </author>
            <author fullname="Nan Geng" initials="N." surname="Geng">
              <organization>Huawei</organization>
            </author>
            <author fullname="Li Chen" initials="L." surname="Chen">
              <organization>Zhongguancun Laboratory</organization>
            </author>
            <author fullname="Mingqing(Michael) Huang" initials="M." surname="Huang">
              <organization>Huawei</organization>
            </author>
            <author fullname="Fang Gao" initials="F." surname="Gao">
              <organization>Zhongguancun Laboratory</organization>
            </author>
            <date day="21" month="January" year="2024"/>
            <abstract>
              <t>This document proposes the intra-domain SAVNET architecture, which achieves accurate source address validation (SAV) in an intra-domain network by an automatic way. Compared with uRPF-like SAV mechanisms that only depend on routers' local routing information, SAVNET routers generate SAV rules by using both local routing information and SAV-specific information exchanged among routers, resulting in more accurate SAV validation in asymmetric routing scenarios. Compared with ACL rules that require manual efforts to accommodate to network dynamics, SAVNET routers learn the SAV rules automatically in a distributed way.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-li-savnet-intra-domain-architecture-06"/>
        </reference>
        <reference anchor="I-D.wu-savnet-inter-domain-architecture" target="https://datatracker.ietf.org/doc/html/draft-wu-savnet-inter-domain-architecture-06" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.wu-savnet-inter-domain-architecture.xml">
          <front>
            <title>Inter-domain Source Address Validation (SAVNET) Architecture</title>
            <author fullname="Jianping Wu" initials="J." surname="Wu">
              <organization>Tsinghua University</organization>
            </author>
            <author fullname="Dan Li" initials="D." surname="Li">
              <organization>Tsinghua University</organization>
            </author>
            <author fullname="Mingqing(Michael) Huang" initials="M." surname="Huang">
              <organization>Huawei</organization>
            </author>
            <author fullname="Li Chen" initials="L." surname="Chen">
              <organization>Zhongguancun Laboratory</organization>
            </author>
            <author fullname="Nan Geng" initials="N." surname="Geng">
              <organization>Huawei</organization>
            </author>
            <author fullname="Libin Liu" initials="L." surname="Liu">
              <organization>Zhongguancun Laboratory</organization>
            </author>
            <author fullname="Lancheng Qin" initials="L." surname="Qin">
              <organization>Tsinghua University</organization>
            </author>
            <date day="5" month="February" year="2024"/>
            <abstract>
              <t>This document introduces an inter-domain SAVNET architecture for performing AS-level SAV and provides a comprehensive framework for guiding the design of inter-domain SAV mechanisms. The proposed architecture empowers ASes to generate SAV rules by sharing SAV- specific information between themselves, which can be used to generate more accurate and trustworthy SAV rules in a timely manner compared to the general information. During the incremental or partial deployment of SAV-specific information, it can rely on general information to generate SAV rules, if an AS's SAV-specific information is unavailable. Rather than delving into protocol extensions or implementations, this document primarily concentrates on proposing SAV-specific and general information and guiding how to utilize them to generate SAV rules. It also defines the architectural components and their relations.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-wu-savnet-inter-domain-architecture-06"/>
        </reference>
      </references>
    </references>
    <?line 237?>



  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
