Internet-Draft | Slice-Mapping | July 2022 |
Dhody & Wu | Expires 12 January 2023 | [Page] |
This document provides a YANG data model to map IETF network slice service to Traffic Engineering (TE) models (e.g., the Virtual Network (VN) model or the TE Tunnel etc). It also supports mapping to the VPN Network models and Network Resource Partition (NRP) models. These models are referred to as IETF network slice service mapping model and are applicable generically for the seamless control and management of the IETF network slice service with underlying TE/VPN support.¶
The models are principally used for monitoring and diagnostics of the management systems to show how the IETF network slice service requests are mapped onto underlying network resource and TE/VPN models.¶
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 12 January 2023.¶
Copyright (c) 2022 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 Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
Data models are a representation of objects that can be configured or monitored within a system. Within the IETF, YANG [RFC7950] is the language of choice for documenting data models, and YANG models have been produced to allow configuration or modeling of a variety of network devices, protocol instances, and network services.¶
The YANG model discussed in this document augments the IETF Network Slice Service YANG model [I-D.ietf-teas-ietf-network-slices], which is used to operate IETF Network Slices during the IETF Network Slice instantiation. This provides a way to map IETF network slice service to Traffic Engineering (TE) models (e.g., the Virtual Network (VN) model or the TE Tunnel etc). Alternatively, it also supports mapping to the VPN Network models and Network Resource Partition (NRP) models.¶
The model supports:¶
Note: The RFC Editor will replace XXXX with the number assigned to the RFC once this draft becomes an RFC.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
A simplified graphical representation of the data model is used in this document. The meaning of the symbols in these diagrams is defined in [RFC8340].¶
In this document, names of data nodes and other data model objects are often used without a prefix, as long as it is clear from the context in which YANG module each name is defined. Otherwise, names are prefixed using the standard prefix associated with the corresponding YANG module, as shown in Table 1.¶
Prefix | YANG module | Reference |
---|---|---|
nw | ietf-network | [RFC8345] |
tsmt | ietf-te-service-mapping-types | [I-D.ietf-teas-te-service-mapping-yang] |
l3vpn-ntw | ietf-l3vpn-ntw | [RFC9182] |
l2vpn-ntw | ietf-l2vpn-ntw | [I-D.ietf-opsawg-l2nm] |
ietf-ns | ietf-network-slice | [I-D.ietf-teas-ietf-network-slice-nbi-yang] |
nrp | ietf-nrp | [I-D.wd-teas-nrp-yang] |
Following additional documents are referenced in the model defined in this document -¶
Document | Reference |
---|---|
Framework for IETF Network Slices | [I-D.ietf-teas-ietf-network-slices] |
The YANG model specified in this document augments the IETF network slice service YANG model [I-D.ietf-teas-ietf-network-slice-nbi-yang].¶
Currently following mapping are supported:¶
TE: The TE mapping is specified in [I-D.ietf-teas-te-service-mapping-yang]. The mapping can be done to the following TE resouces:¶
The following open questions needs to be addressed in a future revision:¶
module: ietf-network-slice-mapping augment /ietf-ns:network-slices/ietf-ns:network-slice: +--rw mapping! +--rw ns-mapping +--rw map-to? identityref +--rw (map)? +--:(nrp) | +--rw nrp-id? | -> /nw:networks/network/nrp:nrp/nrp-id +--:(l3vpn) | +--rw l3vpn-id? leafref | +--rw l3vpn-nrp-id? | -> /nw:networks/network/nrp:nrp/nrp-id +--:(l2vpn) | +--rw l2vpn-id? leafref | +--rw l2vpn-nrp-id? | -> /nw:networks/network/nrp:nrp/nrp-id +--:(te) +--rw type? identityref +--rw te-policy | +--rw path-affinities-values | | +--rw path-affinities-value* [usage] | | ... | +--rw path-affinity-names | | +--rw path-affinity-name* [usage] | | ... | +--rw protection-type? identityref | +--rw availability-type? identityref +--rw (te)? | +--:(vn) | | +--rw vn* | | -> /vn:virtual-network/vn/vn-id | +--:(te-topo) | | +--rw te-topology-identifier | | | ... | | +--rw abstract-node? | | -> /nw:networks/network/node/node-id | +--:(te-tunnel) | +--rw te-tunnel* te:tunnel-ref | +--rw sr-policy* | [headend color-ref endpoint-ref] | {sr-policy}? | ... +--rw template-ref? leafref {template}?¶
<CODE BEGINS> file "ietf-network-slice-mapping@2022-07-11.yang" module ietf-network-slice-mapping { yang-version 1.1; namespace "urn:ietf:params:xml:ns:yang:ietf-network-slice-mapping"; prefix ietf-nsm; import ietf-network { prefix nw; reference "RFC 8345: A YANG Data Model for Network Topologies"; } import ietf-network-slice { prefix ietf-ns; reference "I-D.ietf-teas-ietf-network-slice-nbi-yang: IETF Network Slice Service YANG Model"; } import ietf-te-service-mapping-types { prefix tsmt; reference "I-D.ietf-teas-te-service-mapping-yang: Traffic Engineering (TE) and Service Mapping YANG Data Model"; } import ietf-l3vpn-ntw { prefix l3vpn-ntw; reference "RFC9182: A YANG Network Data Model for Layer 3 VPNs"; } import ietf-l2vpn-ntw { prefix l2vpn-ntw; reference "I-D.ietf-opsawg-l2nm: A Layer 2 VPN Network YANG Model"; } import ietf-nrp { prefix nrp; reference "I-D.wd-teas-nrp-yang: A YANG Data Model for Network Resource Partition (NRP)"; } organization "IETF Traffic Engineering Architecture and Signaling (TEAS) Working Group"; contact "WG Web: <https://datatracker.ietf.org/wg/teas/> WG List: <mailto:teas@ietf.org> Editor: Dhruv Dhody <dhruv.ietf@gmail.com> Bo Wu <lana.wubo@huawei.com>"; description "This module contains a YANG module to map the IETF Network Slice with Traffic Engineering (TE) or VPN Network models. Copyright (c) 2022 IETF Trust and the persons identified as authors of the code. All rights reserved. Redistribution and use in source and binary forms, with or without modification, is permitted pursuant to, and subject to the license terms contained in, the Revised BSD License set forth in Section 4.c of the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info). This version of this YANG module is part of RFC XXXX; see the RFC itself for full legal notices."; revision 2022-07-11 { description "initial version."; reference "RFC XXXX: IETF Network Slice Service Mapping YANG Model"; } identity map-to { description "Base identity from which specific map-to are derived."; } identity map-to-nrp { base map-to; description "Map to Network Resource Partition (NRP)"; } identity map-to-vpn { base map-to; description "Map to VPN"; } identity map-to-l3vpn { base map-to-vpn; description "Map to L3VPN"; } identity map-to-l2vpn { base map-to-vpn; description "Map to L2VPN"; } identity map-to-l1vpn { base map-to-vpn; description "Map to L1VPN"; } identity map-to-te { base map-to; description "Map to TE directly"; } grouping ns-mapping { description "Mapping between IETF network slice and Network Resource Partition (NRP)/VPN/TE"; container ns-mapping { description "The container for the mapping"; leaf map-to { type identityref { base map-to; } description "Mapping to NRP/VPN/TE"; } choice map { description "Mapping to NRP/VPN/TE"; case nrp { leaf nrp-id { type leafref { path "/nw:networks/nw:network" + "/nrp:nrp/nrp:nrp-id"; } description "A reference to NRP ID"; reference "I-D.ietf-teas-ietf-network-slices: Framework for IETF Network Slices"; } } case l3vpn { leaf l3vpn-id { type leafref { path "/l3vpn-ntw:l3vpn-ntw" + "/l3vpn-ntw:vpn-services" + "/l3vpn-ntw:vpn-service" + "/l3vpn-ntw:vpn-id"; } description "A reference to VPN ID"; } leaf l3vpn-nrp-id { type leafref { path "/nw:networks/nw:network" + "/nrp:nrp/nrp:nrp-id"; } description "An optional reference to NRP ID"; reference "I-D.ietf-teas-ietf-network-slices: Framework for IETF Network Slices"; } description "Mapping to L3NM"; reference "RFC9182: A YANG Network Data Model for Layer 3 VPNs"; } case l2vpn { leaf l2vpn-id { type leafref { path "/l2vpn-ntw:l2vpn-ntw" + "/l2vpn-ntw:vpn-services" + "/l2vpn-ntw:vpn-service" + "/l2vpn-ntw:vpn-id"; } description "A reference to VPN ID"; } leaf l2vpn-nrp-id { type leafref { path "/nw:networks/nw:network" + "/nrp:nrp/nrp:nrp-id"; } description "An optional reference to NRP ID"; reference "I-D.ietf-teas-ietf-network-slices: Framework for IETF Network Slices"; } description "Mapping to L2NM"; reference "I-D.ietf-opsawg-l2nm: A Layer 2 VPN Network YANG Model"; } case te { uses tsmt:te-mapping; description "Mapping to TE directly"; reference "I-D.ietf-teas-te-service-mapping-yang: Traffic Engineering (TE) and Service Mapping YANG Model"; } } } } augment "/ietf-ns:network-slices/ietf-ns:network-slice" { description "IETF Network Slice augmented to include the mapping information to the network slice realization"; container mapping { presence "Indicates Mapping information"; description "Container to augment IETF network slice to include NRP / VPN / TE mappings"; uses ns-mapping; } } } <CODE ENDS>¶
IANA is requested to make the following allocation for the URIs in the "ns" subregistry within the "IETF XML Registry" [RFC3688]:¶
-------------------------------------------------------------------- URI: urn:ietf:params:xml:ns:yang:ietf-network-slice-mapping Registrant Contact: The IESG. XML: N/A, the requested URI is an XML namespace. --------------------------------------------------------------------¶
IANA is requested to make the following allocation for the YANG module in the "YANG Module Names" registry [RFC6020]:¶
-------------------------------------------------------------------- name: ietf-network-slice-mapping namespace: urn:ietf:params:xml:ns:yang:ietf-network-slice-mapping prefix: ietf-nsm reference: RFC XXXX --------------------------------------------------------------------¶
Thanks to Jie Dong for the initial discussion behind this document.¶
TO be added in future revisions.¶