<?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.6 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-huang-savnet-sav-table-05" 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-05"/>
    <author initials="M." surname="Huang" fullname="Mingqing Huang">
      <organization/>
      <address>
        <postal>
          <city>Beijing</city>
          <country>China</country>
        </postal>
        <email>huangmq@vip.sina.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="March" day="04"/>
    <area>Routing</area>
    <workgroup>savnet</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 79?>
<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 84?>

<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. Mode 3 is applicable to the scenario where valid incoming interfaces of a source prefix change dynamically. If some source prefixes are important, Mode 3 can also provide stricter and more efficient protection than Mode 1 and Mode 2 for these source prefixes.</t>
        <t>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 238?>



  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA71b63LbRpb+j6fokX9sPCEZW3ImiSqbRJbsiat8W0tJanY2
P0CgSfYYBGA0IJljK7Wvsf/mWeZR9kn2O+d0NxokKMue1KoqMQn25Vy/c+nG
dDpNWtMW+lj9WZe6SQt1XnVNptVJnjfaWvVzWpg8bU1VqtO0TuemMK3RNknn
80ZfRtNOfh4OyKusTNdYOG/SRTtddWm5nNr0stQt/TNt03mhp/e+TKq5rQrd
anucdDW2og/0z3GS4f/LqtkcK9vmie3ma2MtKLnY1Fj3yaOLx0li6uZYtU1n
28N79765d5ikjU6P1auqa025TK6q5vWyqboaa/DeyWu9wcMc88tWN0TNGRGY
JGnXrqrmOFHTRClT2mP1bKZ+JLLxXVh5hiXf4L/wWK9TUxwrZm795odLU8+s
KdNZVq3xa2Za0P5Qm78ZHp1VXdkSO6crDIo2+mWGRzra6Bdt3hisGR5XzTIt
zd9ZEW6+elZB2Fr1ZGQ0+MpN/SGjQWse87H0nM3UUxOIOUtL+Tok4gKcLsG5
+qk0l7qxWLwnpa3IbMofWjdopvNulpUfQ8TzGRlXL5PnIOPPY9KAMsC0utDZ
qqyKagnri4SyxJQSlKx41MdK4hlJohsYwFsyAHn4MXQUplu72V99IjFPxUwC
NU+N/z4k5D9XVblcwiazDppL51WTtnCjmBYylR/+vsyKdP4JqjklqfR0nK5g
b1cpi2WXmuf6Sv14dDqQS0xKmfnps3sPHtx/8MPqKLudZJKyatbY5RJYkZhy
0X9T6tXj06Ov7j1wH7+OPn7z5Zf9xz/RxyfTsxn7jsenuqnSjFaa5nqhS6un
eEpQ4kcb3S6m1uRNVdvpPG1oov+tMH4ZA2LTaV6B03KaNnDIVmdt12g/9KqL
hupmfOhsNkuS6XSq0rnFelmbXKw0423TFTCxaqH0W2MJ7pQV8E4deF/24P0Z
JtxVa03CNnZtJwpAqXLdgMtcLZpqrap2pRvImJ6nbQrQbTqmAYP1bDmbqMdP
HoJbiwndq5ePJ+pqBUPihcqqxWK5IcjOiw0+W7MsaeWq8VQtTAEmQeZMgYNG
L2gn2lPzErZaa5jD2rRMsVWNLmg1YAmWq4tqQxFD2UyXaWMqq9ISvwG7FyZT
4CovSAI1gCeDhUFmF5WqAEwZrYtt7GD1CR4ZqxClurUuW0W6qvIug0AxllAj
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
HGh3P5lBAAA=

-->

</rfc>
