opsawg S. Barguil Internet-Draft O. Gonzalez de Dios, Ed. Intended status: Standards Track Telefonica Expires: July 18, 2021 M. Boucadair, Ed. Orange Q. Wu Huawei January 14, 2021 A Layer 2/3 VPN Common YANG Model draft-ietf-opsawg-vpn-common-03 Abstract This document defines a common YANG module that is meant to be reused by various VPN-related modules such as Layer 3 VPN and Layer 2 VPN network models. Editorial Note (To be removed by RFC Editor) Please update these statements within the document with the RFC number to be assigned to this document: o "This version of this YANG module is part of RFC XXXX;" o "RFC XXXX: A Layer 2/3 VPN Common YANG Model"; o reference: RFC XXXX Also, please update the "revision" date of the YANG module. Status of This Memo This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79. Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet- Drafts is at https://datatracker.ietf.org/drafts/current/. Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress." This Internet-Draft will expire on July 18, 2021. Barguil, et al. Expires July 18, 2021 [Page 1] Internet-Draft VPN Common January 2021 Copyright Notice Copyright (c) 2021 IETF Trust and the persons identified as the document authors. All rights reserved. This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License. Table of Contents 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2 2. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . 4 3. Description of the VPN Common YANG Module . . . . . . . . . . 5 4. Layer 2/3 VPN Common Module . . . . . . . . . . . . . . . . . 11 5. Security Considerations . . . . . . . . . . . . . . . . . . . 47 6. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 48 7. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 48 8. Contributors . . . . . . . . . . . . . . . . . . . . . . . . 48 9. References . . . . . . . . . . . . . . . . . . . . . . . . . 48 9.1. Normative References . . . . . . . . . . . . . . . . . . 48 9.2. Informative References . . . . . . . . . . . . . . . . . 50 Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 53 1. Introduction Various VPN-related YANG data modules were specified by the IETF (e.g., Layer 3 VPN Service Model (L3SM) [RFC8299] or Layer 2 VPN Service Model (L2SM) [RFC8466]). Others are also being specified (e.g., Layer 3 VPN Network Model (L3NM) [I-D.ietf-opsawg-l3sm-l3nm] or Layer 2 VPN Network Model (L2NM) [I-D.ietf-opsawg-l2nm]). These modules have data nodes and structures that are present in almost all these models or a subset of them. An example of such data nodes is depicted in Figure 1. Barguil, et al. Expires July 18, 2021 [Page 2] Internet-Draft VPN Common January 2021 module: ietf-l2vpn-ntw +--rw vpn-services +--rw vpn-service* [vpn-id] +--rw vpn-id svc-id +--rw vpn-svc-type? identityref +--rw customer-name? string +--rw svc-topo? identityref +-rw service-status | +-rw admin | | +-rw status? operational-type | | +-rw timestamp? yang:date-and-time | +-ro ops | +-ro status? operational-type | +-ro timestamp? yang:date-and-time | ... module: ietf-l3vpn-ntw +--rw vpn-services +--rw vpn-service* [vpn-id] +-rw service-status | +-rw admin | | +-rw status? operational-type | | +-rw timestamp? yang:date-and-time | +-ro ops | +-ro status? operational-type | +-ro timestamp? yang:date-and-time +--rw vpn-id l3vpn-svc:svc-id +--rw l3sm-vpn-id? l3vpn-svc:svc-id +--rw customer-name? string +--rw vpn-service-topology? identityref +--rw description? string | ... Figure 1: Example of Common Data Nodes in Both L2NM/L3NM In order to avoid data nodes duplication and to ease passing data among layers (service layer to network layer and vice versa), early versions of the L3NM reused many of the data nodes that are defined in the L3SM [RFC8299]. Nevertheless, that approach was abandoned because that design was interpreted as if the deployment of L3NM depends on L3SM, while this is not required. For example, a Service Provider may decide to use the L3NM to build its L3VPN services without exposing the L3SM. Likewise, early versions of the L2NM reused many of the data nodes that are defined in both L2SM and L3NM. An example of L3NM groupings reused in L3NM is shown in Figure 2. Such data nodes reuse was Barguil, et al. Expires July 18, 2021 [Page 3] Internet-Draft VPN Common January 2021 interpreted as if the deployment of the L2NM requires the support of the L3NM; which is not required. module ietf-l2vpn-ntw { ... import ietf-l3vpn-ntw { prefix l3vpn-ntw; reference "RFC NNNN: A Layer 3 VPN Network YANG Model"; } ... container l2vpn-ntw { ... container vpn-services { list vpn-service { ... uses l3vpn-ntw:service-status; uses l3vpn-ntw:svc-transport-encapsulation; ... } } ... } } Figure 2: Excerpt from the L2NM YANG Module To avoid the issues discussed above, this document defines a common YANG module that is meant to be reused by various VPN-related modules such as L3NM [I-D.ietf-opsawg-l3sm-l3nm] and L2NM [I-D.ietf-opsawg-l2nm]: "ietf-vpn-common" (Section 4). The "ietf-vpn-common" module includes a set of identities, types, and groupings that are meant to be reused by other VPN-related YANG modules independently of their layer (e.g., Layer 2, Layer 3) and the type of the module (e.g., network model, service model) including future revisions (if any) of existing models (e.g., L3SM [RFC8299] or L2SM [RFC8466]). 2. Terminology The terminology for describing YANG modules is defined in [RFC7950]. The meaning of the symbols in tree diagrams is defined in [RFC8340]. Barguil, et al. Expires July 18, 2021 [Page 4] Internet-Draft VPN Common January 2021 3. Description of the VPN Common YANG Module The "ietf-vpn-common" module defines a set of common VPN-related features (e.g., encapsulation features such as [RFC7348], multicast [RFC6513], or routing features such as OSPF [RFC4577] or Bidirectional Forwarding Detection (BFD) [RFC5880]) and identities (e.g., service types [RFC4761][RFC4762][RFC8214][RFC7623][RFC7432][RFC8365], VPN signaling types [RFC6624][RFC5036] [RFC3931], protocol types [RFC1701][RFC1702] [RFC7676][RFC8660][RFC8663][RFC8754][RFC8426][RFC2205][RFC8277]). The "ietf-vpn-common" module also contains the following reusable VPN-related groupings: o 'vpn-description': A YANG grouping that provides common administrative VPN information such as a name, a textual description, and a customer name. o 'vpn-profile-cfg': A YANG grouping that defines a set of profiles (encryption, routing, forwarding) valid for any Layer 2/3 VPN. o 'status-timestamp': A YANG grouping that defines the operational status updates of a VPN service component. o 'service-status': A YANG grouping that defines the administrative and operational status of a component. The grouping can be applied to the whole service or an endpoint. o 'svc-transport-encapsulation': A YANG grouping that defines the type of the underlay transport for a VPN service. o 'rt-rd': A YANG grouping that defines the set of route targets, defined as Route targets (RTs) and Route Distinguishers (RDs), to match for import and export routes to/from a Virtual Routing and Forwarding (VRF). Barguil, et al. Expires July 18, 2021 [Page 5] Internet-Draft VPN Common January 2021 o 'vpn-route-targets': A YANG grouping that A defines RT import-export rules used in a BGP-enabled VPN (e.g., [RFC4364][RFC4664]). o 'vpn-components-group': A YANG grouping that is used to group VPN nodes, VPN network accesses, or sites. o 'placement-constraints': A YANG grouping that is used to define the placement constraints of a VPN node, VPN network access, or site. o 'ports': A YANG grouping that defines ranges of source and destination port numbers and operators. o 'qos-classification-policy': A YANG grouping that defines a set of QoS classification policies based on various match Layer 3/4 criteria. The tree diagram of the "ietf-vpn-common" module that depicts the common groupings is provided in Figure 3. module: ietf-vpn-common grouping vpn-description +-- vpn-id? vpn-id +-- vpn-name? string +-- vpn-description? string +-- customer-name? string grouping vpn-profile-cfg +-- valid-provider-identifiers +-- cloud-identifier* [id] {cloud-access}? | +-- id? string +-- encryption-profile-identifier* [id] | +-- id? string +-- qos-profile-identifier* [id] | +-- id? string +-- bfd-profile-identifier* [id] | +-- id? string +-- forwarding-profile-identifier* [id] | +-- id? string +-- routing-profile-identifier* [id] Barguil, et al. Expires July 18, 2021 [Page 6] Internet-Draft VPN Common January 2021 +-- id? string grouping status-timestamp +--ro status? identityref +--ro last-updated? yang:date-and-time grouping service-status +-- status +-- admin-status | +-- status? identityref | +-- last-updated? yang:date-and-time +-- oper-status +--ro status? identityref +--ro last-updated? yang:date-and-time grouping svc-transport-encapsulation +-- underlay-transport +-- type* identityref grouping rt-rd +-- (rd-choice)? | +--:(directly-assigned) | | +-- rd? rt-types:route-distinguisher | +--:(pool-assigned) | | +-- rd-pool-name? string | | +--ro rd-from-pool? rt-types:route-distinguisher | +--:(full-autoasigned) | | +-- auto? empty | | +--ro rd-auto? rt-types:route-distinguisher | +--:(no-rd) | +-- no-rd? empty +-- vpn-targets +-- vpn-target* [id] | +-- id? int8 | +-- route-targets* [route-target] | | +-- route-target? rt-types:route-target | +-- route-target-type rt-types:route-target-type +-- vpn-policies +-- import-policy? string +-- export-policy? string grouping vpn-route-targets +-- vpn-target* [id] | +-- id? int8 | +-- route-targets* [route-target] | | +-- route-target? rt-types:route-target | +-- route-target-type rt-types:route-target-type +-- vpn-policies +-- import-policy? string +-- export-policy? string grouping vpn-components-group +-- groups +-- group* [group-id] Barguil, et al. Expires July 18, 2021 [Page 7] Internet-Draft VPN Common January 2021 +-- group-id? string grouping placement-constraints +-- constraint* [constraint-type] +-- constraint-type? identityref +-- target +-- (target-flavor)? +--:(id) | +-- group* [group-id] | +-- group-id? string +--:(all-accesses) | +-- all-other-accesses? empty +--:(all-groups) +-- all-other-groups? empty grouping ports +-- (source-port)? | +--:(source-port-range-or-operator) | +-- source-port-range-or-operator | +-- (port-range-or-operator)? | +--:(range) | | +-- lower-port inet:port-number | | +-- upper-port inet:port-number | +--:(operator) | +-- operator? operator | +-- port inet:port-number +-- (destination-port)? +--:(destination-port-range-or-operator) +-- destination-port-range-or-operator +-- (port-range-or-operator)? +--:(range) | +-- lower-port inet:port-number | +-- upper-port inet:port-number +--:(operator) +-- operator? operator +-- port inet:port-number grouping qos-classification-policy +-- rule* [id] +-- id? string +-- (match-type)? | +--:(match-flow) | | +-- (l3)? | | | +--:(ipv4) | | | | +-- ipv4 | | | | +-- dscp? inet:dscp | | | | +-- ecn? uint8 | | | | +-- length? uint16 | | | | +-- ttl? uint8 | | | | +-- protocol? uint8 | | | | +-- ihl? uint8 Barguil, et al. Expires July 18, 2021 [Page 8] Internet-Draft VPN Common January 2021 | | | | +-- flags? bits | | | | +-- offset? uint16 | | | | +-- identification? uint16 | | | | +-- (destination-network)? | | | | | +--:(destination-ipv4-network) | | | | | +-- destination-ipv4-network? | | | | | inet:ipv4-prefix | | | | +-- (source-network)? | | | | +--:(source-ipv4-network) | | | | +-- source-ipv4-network? | | | | inet:ipv4-prefix | | | +--:(ipv6) | | | +-- ipv6 | | | +-- dscp? inet:dscp | | | +-- ecn? uint8 | | | +-- length? uint16 | | | +-- ttl? uint8 | | | +-- protocol? uint8 | | | +-- (destination-network)? | | | | +--:(destination-ipv6-network) | | | | +-- destination-ipv6-network? | | | | inet:ipv6-prefix | | | +-- (source-network)? | | | | +--:(source-ipv6-network) | | | | +-- source-ipv6-network? | | | | inet:ipv6-prefix | | | +-- flow-label? | | | inet:ipv6-flow-label | | +-- (l4)? | | +--:(tcp) | | | +-- tcp | | | +-- sequence-number? | | | | uint32 | | | +-- acknowledgement-number? | | | | uint32 | | | +-- data-offset? | | | | uint8 | | | +-- reserved? | | | | uint8 | | | +-- flags? | | | | bits | | | +-- window-size? | | | | uint16 | | | +-- urgent-pointer? | | | | uint16 | | | +-- options? | | | | binary | | | +-- (source-port)? Barguil, et al. Expires July 18, 2021 [Page 9] Internet-Draft VPN Common January 2021 | | | | +--:(source-port-range-or-operator) | | | | +-- source-port-range-or-operator | | | | +-- (port-range-or-operator)? | | | | +--:(range) | | | | | +-- lower-port | | | | | | inet:port-number | | | | | +-- upper-port | | | | | inet:port-number | | | | +--:(operator) | | | | +-- operator? operator | | | | +-- port | | | | inet:port-number | | | +-- (destination-port)? | | | +--:(destination-port-range-or-operator) | | | +-- destination-port-range-or-operator | | | +-- (port-range-or-operator)? | | | +--:(range) | | | | +-- lower-port | | | | | inet:port-number | | | | +-- upper-port | | | | inet:port-number | | | +--:(operator) | | | +-- operator? operator | | | +-- port | | | inet:port-number | | +--:(udp) | | +-- udp | | +-- length? | | | uint16 | | +-- (source-port)? | | | +--:(source-port-range-or-operator) | | | +-- source-port-range-or-operator | | | +-- (port-range-or-operator)? | | | +--:(range) | | | | +-- lower-port | | | | | inet:port-number | | | | +-- upper-port | | | | inet:port-number | | | +--:(operator) | | | +-- operator? operator | | | +-- port | | | inet:port-number | | +-- (destination-port)? | | +--:(destination-port-range-or-operator) | | +-- destination-port-range-or-operator | | +-- (port-range-or-operator)? | | +--:(range) | | | +-- lower-port Barguil, et al. Expires July 18, 2021 [Page 10] Internet-Draft VPN Common January 2021 | | | | inet:port-number | | | +-- upper-port | | | inet:port-number | | +--:(operator) | | +-- operator? operator | | +-- port | | inet:port-number | +--:(match-application) | +-- match-application? identityref +-- target-class-id? string Figure 3: VPN Common Tree 4. Layer 2/3 VPN Common Module This module uses types defined in [RFC6991], [RFC8294], and [RFC8519]. file "ietf-vpn-common@2021-01-14.yang" module ietf-vpn-common { yang-version 1.1; namespace "urn:ietf:params:xml:ns:yang:ietf-vpn-common"; prefix vpn-common; import ietf-netconf-acm { prefix nacm; reference "RFC 8341: Network Configuration Access Control Model"; } import ietf-routing-types { prefix rt-types; reference "RFC 8294: Common YANG Data Types for the Routing Area"; } import ietf-yang-types { prefix yang; reference "Section 3 of RFC 6991"; } import ietf-packet-fields { prefix packet-fields; reference "RFC 8519: YANG Data Model for Network Access Control Lists (ACLs)"; } organization Barguil, et al. Expires July 18, 2021 [Page 11] Internet-Draft VPN Common January 2021 "IETF OPSA (Operations and Management Area) Working Group"; contact "WG Web: WG List: Editor: Samier Barguil Editor: Oscar Gonzalez de Dios Editor: Mohamed Boucadair Editor: Qin Wu "; description "This YANG module defines a common module that is meant to be reused by various VPN-related modules (e.g., Layer 3 VPN Service Model (L3SM), Layer 2 VPN Service Model (L2SM), Layer 3 VPN Network Model (L3NM), Layer 2 VPN Network Model (L2NM)). Copyright (c) 2021 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 Simplified BSD License set forth in Section 4 of the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info). This version of this YANG module is part of RFC XXXX (https://www.rfc-editor.org/info/rfcXXXX); see the RFC itself for full legal notices."; revision 2021-01-14 { description "Initial revision."; reference "RFC XXXX: A Layer 2/3 VPN Common YANG Model"; } /******** Collection of VPN-related Features ********/ /* * Features related to encapsulation schemes */ feature dot1q { Barguil, et al. Expires July 18, 2021 [Page 12] Internet-Draft VPN Common January 2021 description "Indicates the support of the 'dot1q' encapsulation."; reference "IEEE Std 802.1Q: Bridges and Bridged Networks"; } feature qinq { description "Indicates the support of the 'qinq' encapsulation."; reference "IEEE Std 802.1ad: Provider Bridges"; } feature vxlan { description "Indicates the support of the 'vxlan' encapsulation."; reference "RFC 7348: Virtual eXtensible Local Area Network (VXLAN): A Framework for Overlaying Virtualized Layer 2 Networks over Layer 3 Networks"; } feature qinany { description "Indicates the support of the 'qinany' encapsulation."; } feature lag-interface { description "Indicates the support of Link Aggregation Group (LAG) between VPN network accesses."; } /* * Features related to multicast and address family types */ feature multicast { description "Indicates multicast capabilities support in a VPN."; reference "RFC 6513: Multicast in MPLS/BGP IP VPNs"; } Barguil, et al. Expires July 18, 2021 [Page 13] Internet-Draft VPN Common January 2021 feature ipv4 { description "Indicates IPv4 support in a VPN."; } feature ipv6 { description "Indicates IPv6 support in a VPN."; } /* * Features related to routing protocols */ feature rtg-ospf { description "Indicates support of the OSPF as the PE/CE protocol."; reference "RFC 4577: OSPF as the Provider/Customer Edge Protocol for BGP/MPLS IP Virtual Private Networks(VPNs)"; } feature rtg-ospf-sham-link { description "This feature indicates the support of OSPF sham links."; reference "Section 4.2.7 of RFC 4577"; } feature rtg-bgp { description "Indicates support of BGP as the PE/CE protocol."; } feature rtg-rip { description "Indicates support of RIP as the PE/CE protocol."; } feature rtg-vrrp { description "Indicates support of the Virtual Router Redundancy Protocol (VRRP) between a cutsomer LAN and the PE."; } feature rtg-isis { description "Indicates the support of IS-IS as the PE-CE protocol."; Barguil, et al. Expires July 18, 2021 [Page 14] Internet-Draft VPN Common January 2021 } feature bfd { description "Indicates support of Bidirectional Forwarding Detection (BFD) between the CE and the PE."; reference "RFC 5880: Bidirectional Forwarding Detection (BFD)"; } /* * Features related to VPN service constraints */ feature bearer-reference { description "Indicates support of the bearer reference access constraint. That is, the reuse of a network connection that was already ordered to the SP apart from the IP VPN site."; } feature placement-diversity { description "Indicates the support of placement diversity constraints in the customer premises. An example of these constraints may be to avoid connecting a site network access to the same Provider Edge as a target site network access."; } /* * Features related to Quality of Service (QoS) */ feature qos { description "Indicates support of Classes of Services (CoSes)."; } feature input-bw { description "Indicates the support of the input bandwidth in a VPN."; } /* * Features related to security and resilience */ Barguil, et al. Expires July 18, 2021 [Page 15] Internet-Draft VPN Common January 2021 feature encryption { description "Indicates support of encryption."; } feature fast-reroute { description "Indicates support of Fast Reroute (FRR)."; } /* * Features related to advanced VPN options */ feature cloud-access { description "Indicates support of the VPN to connect to a Cloud Service Provider (CSP)."; } feature extranet-vpn { description "Indicates support of extranet VPNs. That is, the capability of a VPN to access a list of other VPNs."; } feature carrierscarrier { description "Indicates support of Carrier-of-Carrier VPNs."; reference "Section 9 of RFC 4364"; } /* * Address family related identities */ identity address-family { description "Defines a type for the address family."; } identity ipv4 { if-feature "ipv4"; base address-family; description "IPv4 address family."; Barguil, et al. Expires July 18, 2021 [Page 16] Internet-Draft VPN Common January 2021 } identity ipv6 { if-feature "ipv6"; base address-family; description "IPv6 address family."; } /* * Identities related to VPN topology */ identity vpn-topology { description "Base identity of the VPN topology."; } identity any-to-any { base vpn-topology; description "Identity for any-to-any VPN topology."; } identity hub-spoke { base vpn-topology; description "Identity for Hub-and-Spoke VPN topology."; } identity hub-spoke-disjoint { base vpn-topology; description "Identity for Hub-and-Spoke VPN topology where Hubs cannot communicate with each other."; } identity custom { base vpn-topology; description "Identity for custom VPN topologies where the role of the nodes is not strictly hub or spoke. VPN topology controlled by the import/export policies. The custom topology reflects more complex VPN nodes such as VPN node that acts as Hub for certain nodes and Spoke to others."; } Barguil, et al. Expires July 18, 2021 [Page 17] Internet-Draft VPN Common January 2021 /* * Identities related to network access types */ identity site-network-access-type { description "Base identity for site-network-access type."; } identity point-to-point { base site-network-access-type; description "Identity for point-to-point connections."; } identity multipoint { base site-network-access-type; description "Identity for multipoint connections. Example: Ethernet broadcast segment."; } identity irb { base site-network-access-type; description "Integrated Routing Bridge (IRB). Identity for pseudowire connections."; } identity loopback { base site-network-access-type; description "Identity for loopback connections."; } /* * Identities related to operational and administrative status */ identity operational-status { description "Base identity for the operational status."; } identity operational-state-up { base operational-status; description "Operational status is UP/Enabled."; Barguil, et al. Expires July 18, 2021 [Page 18] Internet-Draft VPN Common January 2021 } identity operational-state-down { base operational-status; description "Operational status is DOWN/Disabled."; } identity operational-state-unknown { base operational-status; description "Operational status is UNKNOWN."; } identity administrative-status { description "Base identity for administrative status."; } identity administrative-state-up { base administrative-status; description "Administrative status is UP/Enabled."; } identity administrative-state-down { base administrative-status; description "Administrative status is DOWN/Disabled."; } identity administrative-state-testing { base administrative-status; description "Administrative status is up for testing purposes."; } identity administrative-state-pre-deployment { base administrative-status; description "Administrative status is pre-deployment phase. That is prior to the actual deployment of a service."; } /* * Identities related to site or node role */ Barguil, et al. Expires July 18, 2021 [Page 19] Internet-Draft VPN Common January 2021 identity role { description "Base identity of a site or a node role."; } identity any-to-any-role { base role; description "Identity of any-to-any IP VPN."; } identity spoke-role { base role; description "A node or a site is acting as a Spoke IP VPN."; } identity hub-role { base role; description "A node or a site isacting as a Hub IP VPN."; } identity custom-role { base role; description "VPN-Node with custom or complex role in the VPN. For certain sources/destinations, it can behave as a hub but for others it can act as a spoke depending on the configured policy."; } /* * Identities related to VPN service constraints */ identity placement-diversity { description "Base identity for access placement constraints."; } identity bearer-diverse { base placement-diversity; description "Identity for bearer diversity. The bearers should not use common elements."; } Barguil, et al. Expires July 18, 2021 [Page 20] Internet-Draft VPN Common January 2021 identity pe-diverse { base placement-diversity; description "Identity for PE diversity."; } identity pop-diverse { base placement-diversity; description "Identity for POP diversity."; } identity linecard-diverse { base placement-diversity; description "Identity for linecard diversity."; } identity same-pe { base placement-diversity; description "Identity for having sites connected on the same PE."; } identity same-bearer { base placement-diversity; description "Identity for having sites connected using the same bearer."; } /* * Identities related to service types */ identity service-type { description "Identity of service type."; } identity l3vpn { base service-type; description "Identity of L3VPN service."; } identity vpls { base service-type; description Barguil, et al. Expires July 18, 2021 [Page 21] Internet-Draft VPN Common January 2021 "Identity of the VPLS service type."; reference "RFC 4761: Virtual Private LAN Service (VPLS) Using BGP for Auto-Discovery and Signaling RFC 4762: Virtual Private LAN Service (VPLS) Using Label Distribution Protocol (LDP) Signaling"; } identity vpws-evpn { base service-type; description "Identity of the Point-to-point Virtual Private Wire Service (VPWS) service type."; reference "RFC8214: Virtual Private Wire Service Support in Ethernet VPN"; } identity pbb-evpn { base service-type; description "Identity of Provider Backbone Bridging (PBB) EVPNs."; reference "RFC 7623: Provider Backbone Bridging Combined with Ethernet VPN (PBB-EVPN)"; } identity mpls-evpn { base service-type; description "Identity of MPLS based EVPNs."; reference "RFC 7432: BGP MPLS-Based Ethernet VPN"; } identity vxlan-evpn { base service-type; description "Identity of VXLAN based EVPNs."; reference "RFC 8365: A Network Virtualization Overlay Solution Using Ethernet VPN (EVPN)"; } /* * Identities related to VPN signaling type */ Barguil, et al. Expires July 18, 2021 [Page 22] Internet-Draft VPN Common January 2021 identity vpn-signaling-type { description "Identity of VPN signaling types"; } identity bgp-signaling { base vpn-signaling-type; description "Identity of Layer 2 VPNs using BGP"; reference "RFC 6624: Layer 2 Virtual Private Networks Using BGP for Auto-Discovery and Signaling RFC 7432: BGP MPLS-Based Ethernet VPN"; } identity ldp-signaling { base vpn-signaling-type; description "Identity of Targeted Label Distribution Protocol."; reference "RFC 5036: LDP Specification"; } identity l2tp-signaling { base vpn-signaling-type; description "Identity of l2tp."; reference "RFC3931: Layer Two Tunneling Protocol - Version 3 (L2TPv3)"; } /* * Identities related to routing protocols */ identity routing-protocol-type { description "Base identity for routing protocol type."; } identity ospf { if-feature "rtg-ospf"; base routing-protocol-type; description "Identity for OSPF protocol type."; } identity bgp { Barguil, et al. Expires July 18, 2021 [Page 23] Internet-Draft VPN Common January 2021 if-feature "rtg-bgp"; base routing-protocol-type; description "Identity for BGP protocol type."; } identity static { base routing-protocol-type; description "Identity for static routing protocol type."; } identity rip { if-feature "rtg-rip"; base routing-protocol-type; description "Identity for RIP protocol type."; } identity isis { if-feature "rtg-isis"; base routing-protocol-type; description "Identity for IS-IS protocol type."; } identity vrrp { if-feature "rtg-vrrp"; base routing-protocol-type; description "Identity for VRRP protocol type. This is to be used when LANs are directly connected to PE routers."; } identity direct { base routing-protocol-type; description "Identity for direct protocol type. This is to be used when LANs are directly connected to PE routers and and must be advertised in the VPN."; } /* * Identities related to Routes Import and Export */ Barguil, et al. Expires July 18, 2021 [Page 24] Internet-Draft VPN Common January 2021 identity ie-type { description "Defines Import-Export routing profiles. Those profiles can be reused between VPN nodes."; } identity import { base ie-type; description "Import a routing profile."; } identity export { base ie-type; description "Export a routing profile."; } identity import-export { base ie-type; description "Import/Export a routing profile."; } /* * Identities related to bandwidth and QoS */ identity bw-direction { description "Identity for the bandwidth direction."; } identity input-bw { base bw-direction; description "Identity for the input bandwidth."; } identity output-bw { base bw-direction; description "Identity for the output bandwidth."; } identity bw-type { description "Identity of the bandwidth type."; Barguil, et al. Expires July 18, 2021 [Page 25] Internet-Draft VPN Common January 2021 } identity bw-per-cos { base bw-type; description "Bandwidth is per CoS."; } identity bw-per-port { base bw-type; description "Bandwidth is per site network access."; } identity bw-per-site { base bw-type; description "Bandwidth is per site. It is applicable to all the site network accesses within a site."; } identity bw-per-svc { base bw-type; description "Bandwidth is per VPN service."; } identity qos-profile-direction { description "Base identity for the QoS profile direction."; } identity site-to-wan { base qos-profile-direction; description "Identity for Site-to-WAN direction."; } identity wan-to-site { base qos-profile-direction; description "Identity for WAN-to-Site direction."; } identity both { base qos-profile-direction; description "Identity for both WAN-to-Site and Site-to-WAN Barguil, et al. Expires July 18, 2021 [Page 26] Internet-Draft VPN Common January 2021 directions."; } /* * Identities related to protocol types */ identity protocol-type { description "Base identity for Protocol Type."; } identity gre { base protocol-type; description "GRE encapsulation."; reference "RFC 1701: Generic Routing Encapsulation (GRE) RFC 1702: Generic Routing Encapsulation over IPv4 networks RFC 7676: IPv6 Support for Generic Routing Encapsulation (GRE)"; } identity ldp { base protocol-type; description "Transport based on LDP."; reference "RFC 5086: LDP Specification"; } identity sr { base protocol-type; description "Transport based on Segmnet Routing (SR)."; reference "RFC 8660: Segment Routing with the MPLS Data Plane RFC 8663: MPLS Segment Routing over IP RFC 8754: IPv6 Segment Routing Header (SRH)"; } identity sr-te { base protocol-type; description "Transport based on SR-TE."; reference "RFC 8426: Recommendations for RSVP-TE and Segment Routing (SR) Label Switched Path (LSP) Coexistence"; Barguil, et al. Expires July 18, 2021 [Page 27] Internet-Draft VPN Common January 2021 } identity rsvp-te { base protocol-type; description "Transport based on RSVP-TE."; reference "RFC 2205: Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"; } identity bgp-lu { base protocol-type; description "Transport based on BGP-LU."; reference "RFC 8277: Using BGP to Bind MPLS Labels to Address Prefixes"; } identity unknown { base protocol-type; description "Not known protocol type."; } /* * Identities related to encapsulations */ identity encapsulation-type { description "Base identity for the encapsulation type."; } identity priority-tagged { base encapsulation-type; description "Identity for the priority-tagged interface."; } identity dot1q { if-feature "dot1q"; base encapsulation-type; description "Identity for the support of the 'dot1q' encapsulation."; } Barguil, et al. Expires July 18, 2021 [Page 28] Internet-Draft VPN Common January 2021 identity qinq { if-feature "qinq"; base encapsulation-type; description "Identity for the support of the 'qinq' encapsulation."; } identity qinany { if-feature "qinany"; base encapsulation-type; description "Identity for the support of the 'qinany' encapsulation."; } identity vxlan { if-feature "vxlan"; base encapsulation-type; description "Identity for the support of the 'vxlan' encapsulation."; } identity ethernet-type { base encapsulation-type; description "Identity of the Ethernet encapsulation type."; } identity vlan-type { base encapsulation-type; description "Identity of the VLAN encapsulation."; } identity untagged-int { base encapsulation-type; description "Identity of the untagged interface type."; } identity tagged-int { base encapsulation-type; description "Identity of the tagged interface type."; } Barguil, et al. Expires July 18, 2021 [Page 29] Internet-Draft VPN Common January 2021 identity lag-int { if-feature "lag-interface"; base encapsulation-type; description "Identity of the LAG interface type."; reference "IEEE Std. 802.1AX: Link Aggregation"; } /* * Identities related to VLAN Tag */ identity tag-type { description "Base identity of the tag types."; } identity c-vlan { base tag-type; description "A CVLAN tag, normally using the 0x8100 Ethertype."; } identity s-vlan { base tag-type; description "An SVLAN tag."; } identity c-s-vlan { base tag-type; description "Uses both a CVLAN tag and an SVLAN tag."; } /* * Identities related to VXLAN */ identity vxlan-peer-mode { if-feature "vxlan"; description "Base identity for the VXLAN peer mode."; } identity static-mode { base vxlan-peer-mode; Barguil, et al. Expires July 18, 2021 [Page 30] Internet-Draft VPN Common January 2021 description "Identity for VXLAN access in the static mode."; } identity bgp-mode { base vxlan-peer-mode; description "Identity for VXLAN access by BGP EVPN learning."; } /* * Identities related to multicast */ identity multicast-gp-address-mapping { if-feature "multicast"; description "Identity for multicast group mapping type."; } identity static-mapping { base multicast-gp-address-mapping; description "Identity for static mapping, i.e., attach the interface to the multicast group as a static member."; } identity dynamic-mapping { base multicast-gp-address-mapping; description "Identity for dynamic mapping, i.e., an interface was added to the multicast group as a result of snooping."; } identity multicast-tree-type { if-feature "multicast"; description "Base identity for multicast tree type."; } identity ssm-tree-type { base multicast-tree-type; description "Identity for SSM tree type."; } identity asm-tree-type { base multicast-tree-type; Barguil, et al. Expires July 18, 2021 [Page 31] Internet-Draft VPN Common January 2021 description "Identity for ASM tree type."; } identity bidir-tree-type { base multicast-tree-type; description "Identity for bidirectional tree type."; } identity multicast-rp-discovery-type { if-feature "multicast"; description "Base identity for RP discovery type."; } identity auto-rp { base multicast-rp-discovery-type; description "Base identity for Auto-RP discovery type."; } identity static-rp { base multicast-rp-discovery-type; description "Base identity for static type."; } identity bsr-rp { base multicast-rp-discovery-type; description "Base identity for BSR discovery type."; } /* * Identities related to traffic types */ identity tf-type { description "Identity for the traffic type."; } identity multicast-traffic { if-feature "multicast"; base tf-type; description "Identity for multicast traffic."; Barguil, et al. Expires July 18, 2021 [Page 32] Internet-Draft VPN Common January 2021 } identity broadcast-traffic { base tf-type; description "Identity for broadcast traffic."; } identity unknown-unicast-traffic { base tf-type; description "Identity for unknown unicast traffic."; } identity bundling-type { description "The base identity for the bundling type. It supports multiple CE-VLANs associated with an L2VPN service or all CE-VLANs associated with an L2VPN service."; } /* * Identities related to service bundling */ identity multi-svc-bundling { base bundling-type; description "Identity for multi-service bundling, i.e., multiple CE-VLAN IDs can be associated with an L2VPN service at a site."; } identity one2one-bundling { base bundling-type; description "Identity for one-to-one service bundling, i.e., each L2VPN can be associated with only one CE-VLAN ID at a site."; } identity all2one-bundling { base bundling-type; description "Identity for all-to-one bundling, i.e., all CE-VLAN IDs are mapped to one L2VPN service."; } Barguil, et al. Expires July 18, 2021 [Page 33] Internet-Draft VPN Common January 2021 /* * Identities related to customer applications */ identity customer-application { description "Base identity for customer applications."; } identity web { base customer-application; description "Identity for a aWeb application (e.g., HTTP, HTTPS)."; } identity mail { base customer-application; description "Identity for a mail application."; } identity file-transfer { base customer-application; description "Identity for a file transfer application (e.g., FTP, SFTP)."; } identity database { base customer-application; description "Identity for a database application."; } identity social { base customer-application; description "Identity for a social-network application."; } identity games { base customer-application; description "Identity for a gaming application."; } identity p2p { base customer-application; Barguil, et al. Expires July 18, 2021 [Page 34] Internet-Draft VPN Common January 2021 description "Identity for a peer-to-peer application."; } identity network-management { base customer-application; description "Identity for a management application (e.g., Telnet, syslog, SNMP)."; } identity voice { base customer-application; description "Identity for a voice application."; } identity video { base customer-application; description "Identity for a video conference application."; } identity embb { base customer-application; description "Identity for an enhanced Mobile Broadband (eMBB) application. Note that an eMBB application demands network performance with a wide variety of characteristics, such as data rate, latency, loss rate, reliability, and many other parameters."; } identity urllc { base customer-application; description "Identity for an Ultra-Reliable and Low Latency Communications (URLLC) application. Note that a URLLC application demands network performance with a wide variety of characteristics, such as latency, reliability, and many other parameters."; } identity mmtc { base customer-application; description "Identity for a massive Machine Type Communications (mMTC) application. Note that an Barguil, et al. Expires July 18, 2021 [Page 35] Internet-Draft VPN Common January 2021 mMTC application demands network performance with a wide variety of characteristics, such as data rate, latency, loss rate, reliability, and many other parameters."; } /* * Identities related to Ethernet Services */ identity control-mode { description "Defines the type of control mode on L2CP protocols."; } identity peer { base control-mode; description "'peer' mode, i.e., participate in the protocol towards the CE. Peering is common for LACP and the Ethernet Local Management Interface (E-LMI) and, occasionally, for LLDP. For VPLSs and VPWSs, the subscriber can also request that the SP peer enable spanning tree."; } identity tunnel { base control-mode; description "'tunnel' mode, i.e., pass to the egress or destination site. For Ethernet Private Lines (EPLs), the expectation is that L2CP frames are tunnelled."; } identity discard { base control-mode; description "'discard' mode, i.e., discard the frame."; } identity neg-mode { description "Defines the type of negotiation mode."; } identity full-duplex { base neg-mode; description "Refers to the auto-negotiation mode."; Barguil, et al. Expires July 18, 2021 [Page 36] Internet-Draft VPN Common January 2021 } identity auto-neg { base neg-mode; description "Indicates the auto-negotiation mode."; } /******** Collection of VPN-related Types & Identities ********/ typedef vpn-id { type string; description "Defines an identifier that is used as a service identifier, for example."; } /* * Types related to Ethernet Services */ typedef ccm-priority-type { type uint8 { range "0..7"; } description "A 3-bit priority value to be used in the VLAN tag, if present in the transmitted frame."; } /******* VPN-related reusable groupings *******/ grouping vpn-description { description "Provides common VPN information."; leaf vpn-id { type vpn-id; description "VPN identifier. This identifier has a local meaning."; } leaf vpn-name { type string; description "A name used to refer to the VPN."; } Barguil, et al. Expires July 18, 2021 [Page 37] Internet-Draft VPN Common January 2021 leaf vpn-description { type string; description "Textual description of a VPN service."; } leaf customer-name { type string; description "Name of the customer that actually uses the VPN service."; } } grouping vpn-profile-cfg { description "Grouping for VPN Profile configuration."; container valid-provider-identifiers { description "Container for Valid Provider Identifies."; list cloud-identifier { if-feature "cloud-access"; key "id"; description "List for Cloud Identifiers."; leaf id { type string; description "Identification of cloud service. Local administration meaning."; } } list encryption-profile-identifier { key "id"; description "List for encryption profile identifiers."; leaf id { type string; description "Identification of the SP encryption profile to be used. Local administration meaning."; } } list qos-profile-identifier { key "id"; description "List for QoS Profile Identifiers."; leaf id { type string; description Barguil, et al. Expires July 18, 2021 [Page 38] Internet-Draft VPN Common January 2021 "Identification of the QoS Profile to be used. Local administration meaning."; } } list bfd-profile-identifier { key "id"; description "List for BFD Profile identifiers."; leaf id { type string; description "Identification of the SP BFD Profile to be used. Local administration meaning."; } } list forwarding-profile-identifier { key "id"; description "List for Forwrding Profile identifiers."; leaf id { type string; description "Identification of the Forwrding Profile Filter to be used. Local administration meaning."; } } list routing-profile-identifier { key "id"; description "List for Routing Profile Identifiers."; leaf id { type string; description "Identification of the routing Profile to be used by the routing-protocols within sites, vpn- network-accesses or vpn-nodes for refering vrf-import/export policies. This identifier has a local meaning."; } } nacm:default-deny-write; } } grouping status-timestamp { description "This grouping defines some operational Barguil, et al. Expires July 18, 2021 [Page 39] Internet-Draft VPN Common January 2021 parameters for the service."; leaf status { type identityref { base operational-status; } config false; description "Operations status."; } leaf last-updated { type yang:date-and-time; config false; description "Indicates the actual date and time of the service status change."; } } grouping service-status { description "Service status grouping."; container status { description "Service status."; container admin-status { description "Administrative service status."; leaf status { type identityref { base administrative-status; } description "Administrative service status."; } leaf last-updated { type yang:date-and-time; description "Indicates the actual date and time of the service status change."; } } container oper-status { description "Operational service status."; uses status-timestamp; } } } Barguil, et al. Expires July 18, 2021 [Page 40] Internet-Draft VPN Common January 2021 grouping svc-transport-encapsulation { description "This grouping defines the type of underlay transport for VPN service."; container underlay-transport { description "Container for the Transport underlay."; leaf-list type { type identityref { base protocol-type; } ordered-by user; description "Protocols used to deliver a VPN service."; } } } grouping rt-rd { description "Grouping for RT and RD."; choice rd-choice { description "Route distinguisher choice between several options on providing the route distiniguisher value."; case directly-assigned { description "Explicitly assign a RD value"; leaf rd { type rt-types:route-distinguisher; description "Explicitly assign a route distinguisher (RD) value."; } } case pool-assigned { leaf rd-pool-name { type string; description "The server will auto-assign a route distinguisher value and use that value operationally. The assignment will be selected from the pool identified by the rd-pool-name."; } leaf rd-from-pool { type rt-types:route-distinguisher; config false; description "The RD assigned from the pool name."; Barguil, et al. Expires July 18, 2021 [Page 41] Internet-Draft VPN Common January 2021 } } case full-autoasigned { leaf auto { type empty; description "Indicates an RD is fully auto assigned."; } leaf rd-auto { type rt-types:route-distinguisher; config false; description "Auto assigned RD."; } } case no-rd { description "Use the empty type to indicate RD has no value and is not to be auto-assigned."; leaf no-rd { type empty; description "No RD is assigned."; } } } container vpn-targets { description "Set of route-targets to match for import and export routes to/from VRF"; uses vpn-route-targets; } } grouping vpn-route-targets { description "A grouping that specifies Route Target import-export rules used in a BGP-enabled VPN."; reference "RFC 4364: BGP/MPLS IP Virtual Private Networks (VPNs) RFC 4664: Framework for Layer 2 Virtual Private Networks (L2VPNs)"; list vpn-target { key "id"; description "L3VPN route targets. AND/OR Operations are available based on the RTs assigment."; leaf id { Barguil, et al. Expires July 18, 2021 [Page 42] Internet-Draft VPN Common January 2021 type int8; description "Identifies each VPN Target"; } list route-targets { key "route-target"; description "List of Route Targets."; leaf route-target { type rt-types:route-target; description "Route Target value"; } } leaf route-target-type { type rt-types:route-target-type; mandatory true; description "Import/export type of the Route Target."; } } container vpn-policies { description "VPN policies"; leaf import-policy { type string; description "Defines the import policy."; } leaf export-policy { type string; description "Defines the export policy."; } } } grouping vpn-components-group { description "Grouping definition to assign group-ids to associate VPN nodes, sites, or network accesses."; container groups { description "Lists the groups to which a VPN node, a site, or a network access belongs to."; list group { key "group-id"; Barguil, et al. Expires July 18, 2021 [Page 43] Internet-Draft VPN Common January 2021 description "List of group-ids."; leaf group-id { type string; description "Is the group-id to which a VPN node, a site, or a network access belongs to."; } } } } grouping placement-constraints { description "Constraints for placing a network access."; list constraint { key "constraint-type"; description "List of constraints."; leaf constraint-type { type identityref { base placement-diversity; } description "Diversity constraint type."; } container target { description "The constraint will apply against this list of groups."; choice target-flavor { description "Choice for the group definition"; case id { list group { key "group-id"; description "List of groups"; leaf group-id { type string; description "The constraint will apply against this particular group-id."; } } } Barguil, et al. Expires July 18, 2021 [Page 44] Internet-Draft VPN Common January 2021 case all-accesses { leaf all-other-accesses { type empty; description "The constraint will apply against all other network accesses of a site."; } } case all-groups { leaf all-other-groups { type empty; description "The constraint will apply against all other groups the customer is managing."; } } } } } } grouping ports { description "Choice of specifying a source or destination port numbers."; choice source-port { description "Choice of specifying the source port or referring to a group of source port numbers."; container source-port-range-or-operator { description "Source port definition."; uses packet-fields:port-range-or-operator; } } choice destination-port { description "Choice of specifying a destination port or referring to a group of destination port numbers."; container destination-port-range-or-operator { description "Destination port definition."; uses packet-fields:port-range-or-operator; } } } Barguil, et al. Expires July 18, 2021 [Page 45] Internet-Draft VPN Common January 2021 grouping qos-classification-policy { description "Configuration of the traffic classification policy."; list rule { key "id"; ordered-by user; description "List of marking rules."; leaf id { type string; description "A description identifying the qos-classification-policy rule."; } choice match-type { default "match-flow"; description "Choice for classification."; case match-flow { choice l3 { description "Either IPv4 or IPv6."; container ipv4 { description "Rule set that matches IPv4 header."; uses packet-fields:acl-ip-header-fields; uses packet-fields:acl-ipv4-header-fields; } container ipv6 { description "Rule set that matches IPv6 header."; uses packet-fields:acl-ip-header-fields; uses packet-fields:acl-ipv6-header-fields; } } choice l4 { description "Can be TCP or UDP"; container tcp { description "Rule set that matches TCP header."; uses packet-fields:acl-tcp-header-fields; uses ports; } container udp { description "Rule set that matches UDP header."; Barguil, et al. Expires July 18, 2021 [Page 46] Internet-Draft VPN Common January 2021 uses packet-fields:acl-udp-header-fields; uses ports; } } } case match-application { leaf match-application { type identityref { base customer-application; } description "Defines the application to match."; } } } leaf target-class-id { type string; description "Identification of the class of service. This identifier is internal to the administration."; } } } } 5. Security Considerations The YANG modules specified in this document define schemas for data that is designed to be accessed via network management protocols such as NETCONF [RFC6241] or RESTCONF [RFC8040]. The lowest NETCONF layer is the secure transport layer, and the mandatory-to-implement secure transport is Secure Shell (SSH) [RFC6242]. The lowest RESTCONF layer is HTTPS, and the mandatory-to-implement secure transport is TLS [RFC8446]. The Network Configuration Access Control Model (NACM) [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. The "ietf-vpn-common" module defines a set of identities, types, and groupings. These nodes are intended to be reused by other YANG modules. As such, the module does not expose by itself any data nodes which are writable, contain read-only state, or RPCs. As such, there are no additional security issues to be considered relating to the "ietf-vpn-common" module. Barguil, et al. Expires July 18, 2021 [Page 47] Internet-Draft VPN Common January 2021 6. IANA Considerations This document requests IANA to register the following URI in the "ns" subregistry within the "IETF XML Registry" [RFC3688]: URI: urn:ietf:params:xml:ns:yang:ietf-vpn-common Registrant Contact: The IESG. XML: N/A; the requested URI is an XML namespace. This document requests IANA to register the following YANG module in the "YANG Module Names" subregistry [RFC6020] within the "YANG Parameters" registry. name: ietf-vpn-common namespace: urn:ietf:params:xml:ns:yang:ietf-vpn-common maintained by IANA: N prefix: vpn-common reference: RFC XXXX 7. Acknowledgements Many thanks to Radek Krejči for the yangdoctors review. 8. Contributors Italo Busi Huawei Technologies Email: Italo.Busi@huawei.com Luis Angel Munoz Vodafone Email: luis-angel.munoz@vodafone.com Victor Lopez Alvarez Telefonica Email: victor.lopezalvarez@telefonica.com 9. References 9.1. Normative References [RFC3688] Mealling, M., "The IETF XML Registry", BCP 81, RFC 3688, DOI 10.17487/RFC3688, January 2004, . Barguil, et al. Expires July 18, 2021 [Page 48] Internet-Draft VPN Common January 2021 [RFC6020] Bjorklund, M., Ed., "YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)", RFC 6020, DOI 10.17487/RFC6020, October 2010, . [RFC6241] Enns, R., Ed., Bjorklund, M., Ed., Schoenwaelder, J., Ed., and A. Bierman, Ed., "Network Configuration Protocol (NETCONF)", RFC 6241, DOI 10.17487/RFC6241, June 2011, . [RFC6242] Wasserman, M., "Using the NETCONF Protocol over Secure Shell (SSH)", RFC 6242, DOI 10.17487/RFC6242, June 2011, . [RFC6991] Schoenwaelder, J., Ed., "Common YANG Data Types", RFC 6991, DOI 10.17487/RFC6991, July 2013, . [RFC7950] Bjorklund, M., Ed., "The YANG 1.1 Data Modeling Language", RFC 7950, DOI 10.17487/RFC7950, August 2016, . [RFC8040] Bierman, A., Bjorklund, M., and K. Watsen, "RESTCONF Protocol", RFC 8040, DOI 10.17487/RFC8040, January 2017, . [RFC8294] Liu, X., Qu, Y., Lindem, A., Hopps, C., and L. Berger, "Common YANG Data Types for the Routing Area", RFC 8294, DOI 10.17487/RFC8294, December 2017, . [RFC8341] Bierman, A. and M. Bjorklund, "Network Configuration Access Control Model", STD 91, RFC 8341, DOI 10.17487/RFC8341, March 2018, . [RFC8446] Rescorla, E., "The Transport Layer Security (TLS) Protocol Version 1.3", RFC 8446, DOI 10.17487/RFC8446, August 2018, . [RFC8519] Jethanandani, M., Agarwal, S., Huang, L., and D. Blair, "YANG Data Model for Network Access Control Lists (ACLs)", RFC 8519, DOI 10.17487/RFC8519, March 2019, . Barguil, et al. Expires July 18, 2021 [Page 49] Internet-Draft VPN Common January 2021 9.2. Informative References [I-D.ietf-opsawg-l2nm] barguil, s., Dios, O., Boucadair, M., Munoz, L., Jalil, L., and J. Ma, "A Layer 2 VPN Network YANG Model", draft- ietf-opsawg-l2nm-01 (work in progress), November 2020. [I-D.ietf-opsawg-l3sm-l3nm] barguil, s., Dios, O., Boucadair, M., Munoz, L., and A. Aguado, "A Layer 3 VPN Network YANG Model", draft-ietf- opsawg-l3sm-l3nm-05 (work in progress), October 2020. [RFC1701] Hanks, S., Li, T., Farinacci, D., and P. Traina, "Generic Routing Encapsulation (GRE)", RFC 1701, DOI 10.17487/RFC1701, October 1994, . [RFC1702] Hanks, S., Li, T., Farinacci, D., and P. Traina, "Generic Routing Encapsulation over IPv4 networks", RFC 1702, DOI 10.17487/RFC1702, October 1994, . [RFC2205] Braden, R., Ed., Zhang, L., Berson, S., Herzog, S., and S. Jamin, "Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification", RFC 2205, DOI 10.17487/RFC2205, September 1997, . [RFC3931] Lau, J., Ed., Townsley, M., Ed., and I. Goyret, Ed., "Layer Two Tunneling Protocol - Version 3 (L2TPv3)", RFC 3931, DOI 10.17487/RFC3931, March 2005, . [RFC4364] Rosen, E. and Y. Rekhter, "BGP/MPLS IP Virtual Private Networks (VPNs)", RFC 4364, DOI 10.17487/RFC4364, February 2006, . [RFC4577] Rosen, E., Psenak, P., and P. Pillay-Esnault, "OSPF as the Provider/Customer Edge Protocol for BGP/MPLS IP Virtual Private Networks (VPNs)", RFC 4577, DOI 10.17487/RFC4577, June 2006, . [RFC4664] Andersson, L., Ed. and E. Rosen, Ed., "Framework for Layer 2 Virtual Private Networks (L2VPNs)", RFC 4664, DOI 10.17487/RFC4664, September 2006, . Barguil, et al. Expires July 18, 2021 [Page 50] Internet-Draft VPN Common January 2021 [RFC4761] Kompella, K., Ed. and Y. Rekhter, Ed., "Virtual Private LAN Service (VPLS) Using BGP for Auto-Discovery and Signaling", RFC 4761, DOI 10.17487/RFC4761, January 2007, . [RFC4762] Lasserre, M., Ed. and V. Kompella, Ed., "Virtual Private LAN Service (VPLS) Using Label Distribution Protocol (LDP) Signaling", RFC 4762, DOI 10.17487/RFC4762, January 2007, . [RFC5036] Andersson, L., Ed., Minei, I., Ed., and B. Thomas, Ed., "LDP Specification", RFC 5036, DOI 10.17487/RFC5036, October 2007, . [RFC5880] Katz, D. and D. Ward, "Bidirectional Forwarding Detection (BFD)", RFC 5880, DOI 10.17487/RFC5880, June 2010, . [RFC6513] Rosen, E., Ed. and R. Aggarwal, Ed., "Multicast in MPLS/ BGP IP VPNs", RFC 6513, DOI 10.17487/RFC6513, February 2012, . [RFC6624] Kompella, K., Kothari, B., and R. Cherukuri, "Layer 2 Virtual Private Networks Using BGP for Auto-Discovery and Signaling", RFC 6624, DOI 10.17487/RFC6624, May 2012, . [RFC7348] Mahalingam, M., Dutt, D., Duda, K., Agarwal, P., Kreeger, L., Sridhar, T., Bursell, M., and C. Wright, "Virtual eXtensible Local Area Network (VXLAN): A Framework for Overlaying Virtualized Layer 2 Networks over Layer 3 Networks", RFC 7348, DOI 10.17487/RFC7348, August 2014, . [RFC7432] Sajassi, A., Ed., Aggarwal, R., Bitar, N., Isaac, A., Uttaro, J., Drake, J., and W. Henderickx, "BGP MPLS-Based Ethernet VPN", RFC 7432, DOI 10.17487/RFC7432, February 2015, . [RFC7623] Sajassi, A., Ed., Salam, S., Bitar, N., Isaac, A., and W. Henderickx, "Provider Backbone Bridging Combined with Ethernet VPN (PBB-EVPN)", RFC 7623, DOI 10.17487/RFC7623, September 2015, . [RFC7676] Pignataro, C., Bonica, R., and S. Krishnan, "IPv6 Support for Generic Routing Encapsulation (GRE)", RFC 7676, DOI 10.17487/RFC7676, October 2015, . Barguil, et al. Expires July 18, 2021 [Page 51] Internet-Draft VPN Common January 2021 [RFC8214] Boutros, S., Sajassi, A., Salam, S., Drake, J., and J. Rabadan, "Virtual Private Wire Service Support in Ethernet VPN", RFC 8214, DOI 10.17487/RFC8214, August 2017, . [RFC8277] Rosen, E., "Using BGP to Bind MPLS Labels to Address Prefixes", RFC 8277, DOI 10.17487/RFC8277, October 2017, . [RFC8299] Wu, Q., Ed., Litkowski, S., Tomotaki, L., and K. Ogaki, "YANG Data Model for L3VPN Service Delivery", RFC 8299, DOI 10.17487/RFC8299, January 2018, . [RFC8340] Bjorklund, M. and L. Berger, Ed., "YANG Tree Diagrams", BCP 215, RFC 8340, DOI 10.17487/RFC8340, March 2018, . [RFC8365] Sajassi, A., Ed., Drake, J., Ed., Bitar, N., Shekhar, R., Uttaro, J., and W. Henderickx, "A Network Virtualization Overlay Solution Using Ethernet VPN (EVPN)", RFC 8365, DOI 10.17487/RFC8365, March 2018, . [RFC8426] Sitaraman, H., Ed., Beeram, V., Minei, I., and S. Sivabalan, "Recommendations for RSVP-TE and Segment Routing (SR) Label Switched Path (LSP) Coexistence", RFC 8426, DOI 10.17487/RFC8426, July 2018, . [RFC8466] Wen, B., Fioccola, G., Ed., Xie, C., and L. Jalil, "A YANG Data Model for Layer 2 Virtual Private Network (L2VPN) Service Delivery", RFC 8466, DOI 10.17487/RFC8466, October 2018, . [RFC8660] Bashandy, A., Ed., Filsfils, C., Ed., Previdi, S., Decraene, B., Litkowski, S., and R. Shakir, "Segment Routing with the MPLS Data Plane", RFC 8660, DOI 10.17487/RFC8660, December 2019, . [RFC8663] Xu, X., Bryant, S., Farrel, A., Hassan, S., Henderickx, W., and Z. Li, "MPLS Segment Routing over IP", RFC 8663, DOI 10.17487/RFC8663, December 2019, . Barguil, et al. Expires July 18, 2021 [Page 52] Internet-Draft VPN Common January 2021 [RFC8754] Filsfils, C., Ed., Dukes, D., Ed., Previdi, S., Leddy, J., Matsushima, S., and D. Voyer, "IPv6 Segment Routing Header (SRH)", RFC 8754, DOI 10.17487/RFC8754, March 2020, . Authors' Addresses Samier Barguil Telefonica Madrid Spain Email: samier.barguilgiraldo.ext@telefonica.com Oscar Gonzalez de Dios (editor) Telefonica Madrid Spain Email: oscar.gonzalezdedios@telefonica.com Mohamed Boucadair (editor) Orange France Email: mohamed.boucadair@orange.com Qin Wu Huawei 101 Software Avenue, Yuhua District Nanjing, Jiangsu 210012 China Email: bill.wu@huawei.com Barguil, et al. Expires July 18, 2021 [Page 53]