Skip to main content

A YANG Data Model for Alternate Marking Method
draft-wang-ippm-alt-mark-yang-02

The information below is for an old version of the document.
Document Type
This is an older version of an Internet-Draft whose latest revision state is "Replaced".
Authors Minxue Wang , Liuyan Han , Xiao Min , Guo Jun , Massimo Nilo
Last updated 2023-02-08
Replaced by draft-ydt-ippm-alt-mark-yang
RFC stream (None)
Formats
Stream Stream state (No stream defined)
Consensus boilerplate Unknown
RFC Editor Note (None)
IESG IESG state I-D Exists
Telechat date (None)
Responsible AD (None)
Send notices to (None)
draft-wang-ippm-alt-mark-yang-02
IPPM Working Group                                               M. Wang
Internet-Draft                                                    L. Han
Intended status: Standards Track                            China Mobile
Expires: 12 August 2023                                           X. Min
                                                                  J. Guo
                                                         ZTE Corporation
                                                                 M. Nilo
                                                          Telecom Italia
                                                         8 February 2023

             A YANG Data Model for Alternate Marking Method
                    draft-wang-ippm-alt-mark-yang-02

Abstract

   Alternate-Marking Method (AMM) is a technique used to perform packet
   loss, delay, and jitter measurements on live traffic.  This document
   defines a YANG data model for Alternate Marking Method.

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 12 August 2023.

Copyright Notice

   Copyright (c) 2023 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

Wang, et al.             Expires 12 August 2023                 [Page 1]
Internet-Draft             YANG Model for AMM              February 2023

   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.

Table of Contents

   1.  Introduction  . . . . . . . . . . . . . . . . . . . . . . . .   2
   2.  Tree Diagram  . . . . . . . . . . . . . . . . . . . . . . . .   2
   3.  Alternate Marking Method YANG Data Model  . . . . . . . . . .   3
   4.  Security Considerations . . . . . . . . . . . . . . . . . . .  13
   5.  IANA Considerations . . . . . . . . . . . . . . . . . . . . .  13
   6.  Acknowledgements  . . . . . . . . . . . . . . . . . . . . . .  13
   7.  References  . . . . . . . . . . . . . . . . . . . . . . . . .  13
     7.1.  Normative References  . . . . . . . . . . . . . . . . . .  13
     7.2.  Informative References  . . . . . . . . . . . . . . . . .  13
   Authors' Addresses  . . . . . . . . . . . . . . . . . . . . . . .  14

1.  Introduction

   Alternate-Marking Method ([RFC9341] [RFC9342]) is a technique used to
   perform packet loss, delay, and jitter measurements on live traffic.
   [RFC9343] defines how to encode Alternate-Marking information in IPv6
   Extension Header.  [I-D.ietf-mpls-inband-pm-encapsulation] defines
   how to encode Alternate-Marking information in MPLS Label Stack.
   This document defines a YANG data model for alternate marking method.

2.  Tree Diagram

   This section presents a simplified graphical representation of the
   AMM data model using a YANG tree diagram [RFC8340].

Wang, et al.             Expires 12 August 2023                 [Page 2]
Internet-Draft             YANG Model for AMM              February 2023

     module: ietf-alternate-marking
       +--rw configuration
          +--rw alternate-marking
             +--rw global
             |  +--rw label?      uint32
             |  +--rw fii-mode?   enumeration
             +--rw head-node
             |  +--rw flow* [flow-id]
             |     +--rw flow-id              uint32
             |     +--rw alternate-status?    enable-status
             |     +--rw period?              alternate-marking-period
             |     +--rw hop-by-hop-status?   enable-status
             |     +--rw source-mac?          yang:mac-address
             |     +--rw dest-mac?            yang:mac-address
             |     +--rw vlan-id?             uint16
             |     +--rw internal-vlan-id?    uint16
             |     +--rw priority-8021p?      uint8
             |     +--rw sip?                 inet:ip-prefix
             |     +--rw dip?                 inet:ip-prefix
             |     +--rw protocol?            uint8
             |     +--rw source-port?         uint16
             |     +--rw dest-port?           uint16
             |     +--rw vpn-type?            enumeration
             |     +--rw vpn-name?            string
             |     +--rw if-name              string
             |     +--rw member-port?         string
             +--rw end-node
                +--rw relation* [flow-id]
                   +--rw flow-id              uint32
                   +--rw (vpn-type)?
                   |  +--:(vrf)
                   |  |  +--rw vrf-name       string
                   |  +--:(vpws)
                   |  |  +--rw vpws-name      string
                   |  +--:(vpls)
                   |     +--rw vpls-name      string
                   +--rw period?              alternate-marking-period
                   +--rw hop-by-hop-status?   enable-status
                   +--rw if-name?             string

3.  Alternate Marking Method YANG Data Model

Wang, et al.             Expires 12 August 2023                 [Page 3]
Internet-Draft             YANG Model for AMM              February 2023

   <CODE BEGINS> file "ietf-alternate-marking@2022-07-08.yang"
   module ietf-alternate-marking {
     yang-version "1.1";
     namespace "urn:ietf:params:xml:ns:yang:ietf-alternate-marking";

     prefix alternate-marking;

     import ietf-inet-types {
       prefix inet ;
       revision-date 2013-07-15 ;
       reference "RFC 6991: Common YANG Data Types";
     }
     import ietf-yang-types {
       prefix yang ;
       revision-date 2013-07-15 ;
       reference "RFC 6991: Common YANG Data Types";
     }

     organization
       "IETF IPPM (IP Performance Measurement) Working Group";

     contact
       "WG Web:   <http://datatracker.ietf.org/group/ippm/>
        WG List:  <mailto:ippm@ietf.org>

        Author:   Minxue Wang
                  <mailto:wangminxue@chinamobile.com>
        Author:   Liuyan Han
                  <mailto:hanliuyan@chinamobile.com>
        Author:   Xiao Min
                  <mailto:xiao.min2@zte.com.cn>
        Author:   Jun Guo
                  <mailto:guo.jun2@zte.com.cn>
        Author:   Massimo Nilo
                  <mailto:massimo.nilo@telecomitalia.it>";

     description
       "This document defines a YANG data model used for alternate
        marking method.

        This YANG model conforms to the Network Management
        Datastore Architecture (NMDA) as described in RFC 8342.

        Copyright (c) 2023 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

Wang, et al.             Expires 12 August 2023                 [Page 4]
Internet-Draft             YANG Model for AMM              February 2023

        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.

        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 (RFC 2119) (RFC 8174) when, and only when,
        they appear in all capitals, as shown here.";

     revision 2022-05-11 {
       description 'First draft.'
                   ;
       reference 'RFC XXXX: A YANG Data Model for Alternate '
               + 'Marking Method.'
                   ;
     }

     typedef alternate-marking-period {
       type enumeration {
         enum 1s {
           value 1 ;
           description 'Alternate marking period is 1s.'
                       ;
         }
         enum 10s {
           value 2 ;
           description 'Alternate marking period is 10s.'
                       ;
         }
         enum 30s {
           value 3 ;
           description 'Alternate marking period is 30s.'
                       ;
         }
         enum 60s {
           value 4 ;
           description 'Alternate marking period is 60s.'
                       ;
         }
         enum 5min {
           value 5 ;
           description 'Alternate marking period is 5min.'
                       ;

Wang, et al.             Expires 12 August 2023                 [Page 5]
Internet-Draft             YANG Model for AMM              February 2023

         }
       }
       description 'Alternate marking period,including '
                 + '1s,10s,30s,60s,5min.'
                   ;
     }
     typedef enable-status {
       type enumeration {
         enum enable {
           value 1 ;
           description 'Enables the function.'
                       ;
         }
         enum disable {
           value 0 ;
           description 'Disables the function.'
                       ;
         }
       }
       description 'Enable status,including enable and disable.'
                   ;
     }
     container configuration {
       description 'Configuration of alternate marking model Info.'
                   ;
       container alternate-marking {
         description 'alternate-marking flow configuration.'
                     ;
         container global {
           description 'Global configuration.'
                       ;
           leaf label {
             type uint32 {
               range '4..6 | 8..12'
                     {
                 description 'The range of the label.'
                             ;
               }
             }
             default 12 ;
             description 'The label ranges from 4 to 6 and 8 '
                       + 'to 12(default:12).'
                         ;
           }
           leaf fii-mode {
             type enumeration {
               enum non-bottom {
                 value 0 ;

Wang, et al.             Expires 12 August 2023                 [Page 6]
Internet-Draft             YANG Model for AMM              February 2023

                 description 'flow-id is not at the bottom '
                           + 'of label stack.'
                       ;
               }
               enum bottom {
                 value 1 ;
                 description 'flow-id is at the bottom of '
                           + 'label stack.'
                       ;
               }
             }
             default non-bottom ;
             description 'Position ID of the guide label.'
                         ;
           }
         }
         container head-node {
           description 'Configure alternate-marking flow coloring.'
                       ;
           list flow {
             key flow-id ;
             description 'Configure alternate-marking flow coloring.'
                         ;
             leaf flow-id {
               type uint32 {
                 range 1..1048575 {
                   description 'The range of flow id.'
                               ;
                 }
               }
               description 'The flow id to identify a specific flow, '
                         + 'ranges from 1 to 1048575. In IPv6 '
                         + 'encoding it is called FlowMonID and in '
                         + 'MPLS encoding it is called Flow-ID.'
                           ;
             }
             leaf alternate-status {
               type enable-status ;
               default enable ;
               description 'The status of flow alternate marking, '
                         + 'including enable and disable'
                         + '(default:enable).'
                           ;
             }
             leaf period {
               type alternate-marking-period ;
               default 30s ;
               description 'The period of flow coloring,including '

Wang, et al.             Expires 12 August 2023                 [Page 7]
Internet-Draft             YANG Model for AMM              February 2023

                         + '1s,10s,30s,60s and 5min(default:30s).'
                           ;
             }
             leaf hop-by-hop-status {
               type enable-status ;
               default disable ;
               description 'The status of hop-by-hop coloring, '
                         + 'including enable and '
                         + 'disable(default:enable).'
                           ;
             }
             leaf source-mac {
               type yang:mac-address ;
               description 'The source MAC address.'
                           ;
             }
             leaf dest-mac {
               type yang:mac-address ;
               description 'The destination MAC address.'
                           ;
             }
             leaf vlan-id {
               type uint16 {
                 range 1..4094 {
                   description 'The range of VLAN ID.'
                               ;
                 }
               }
               description 'The value of vlan ID,ranges from 1 '
                         + 'to 4094.'
                           ;
             }
             leaf internal-vlan-id {
               type uint16 {
                 range 1..4094 {
                   description 'The range of internal VLAN ID.'
                               ;
                 }
               }
               description 'The value of internal vlan ID,ranges '
                         + 'from 1 to 4094.'
                           ;
             }
             leaf priority-8021p {
               type uint8 {
                 range 0..7 {
                   description 'The range of priority-8021p.'
                               ;

Wang, et al.             Expires 12 August 2023                 [Page 8]
Internet-Draft             YANG Model for AMM              February 2023

                 }
               }
               description 'The value of priority-8021p,ranges '
                         + 'from 0 to 7.'
                           ;
             }
             leaf sip {
               type inet:ip-prefix ;
               description 'The source ip address.'
                           ;
             }
             leaf dip {
               type inet:ip-prefix ;
               description 'The destination ip address.'
                           ;
             }
             leaf protocol {
               type uint8 {
                 range 1..255 {
                   description 'The range of protocol.'
                               ;
                 }
               }
               description 'The protocol number,ranges from 1 to 255.'
                           ;
             }
             leaf source-port {
               type uint16 {
                 range 1..65535 {
                   description 'The range of port number.'
                               ;
                 }
               }
               description 'The source port,ranges from 1 to '
                         + '65535.'
                           ;
             }
             leaf dest-port {
               type uint16 {
                 range 1..65535 {
                   description 'The range of port number.'
                               ;
                 }
               }
               description 'The destination port,ranges from '
                         + '1 to 65535.'
                           ;
             }

Wang, et al.             Expires 12 August 2023                 [Page 9]
Internet-Draft             YANG Model for AMM              February 2023

             leaf vpn-type {
               type enumeration {
                 enum l3vpn {
                   value 0 ;
                   description 'The vpn type is l3vpn.'
                           ;
                 }
                 enum l2vpn {
                   value 1 ;
                   description 'The vpn type is l2vpn.'
                           ;
                 }
               }
               default l3vpn ;
               description 'The VPN type of the UNI interface.'
                           ;
             }
             leaf vpn-name {
               type string {
                 length 1..31 {
                   description 'The range of VRF name length.'
                               ;
                 }
               }
               description 'The access VPN name of ip flow.'
                           ;
             }
             leaf if-name {
               type string {
                 length 1..31 ;
               }
               mandatory true ;
               description 'The UNI interface name of ip flow.'
                           ;
             }
             leaf member-port {
               type string ;
               description 'The member port of the UNI interface.'
                           ;
             }
           }
         }
         container end-node {
           description 'Configure the relation between Flowid and VPN.'
                       ;
           list relation {
             key flow-id ;
             description 'Configure the relation between Flowid '

Wang, et al.             Expires 12 August 2023                [Page 10]
Internet-Draft             YANG Model for AMM              February 2023

                       + 'and VPN.'
                         ;
             leaf flow-id {
               type uint32 {
                 range 1..1048575 {
                   description 'The range of flow-id.'
                               ;
                 }
               }
               description 'The flow id to identify a specific flow, '
                         + 'ranges from 1 to 1048575.'
                           ;
             }
             choice vpn-type {
               description 'Choose one from vrf and vpws.'
                           ;
               case vrf {
                 description 'Type is VRF.'
                             ;
                 leaf vrf-name {
                   type string {
                     length 1..32 {
                       description 'This string length ranges from '
                                 + '1 to 32.'
                                   ;
                     }
                   }
                   mandatory true ;
                   description 'The name of VRF,this string length '
                             + 'ranges from 1 to 32.'
                               ;
                 }
               }
               case vpws {
                 description 'Type is vpws.'
                             ;
                 leaf vpws-name {
                   type string {
                     length 1..32 {
                       description 'This string length ranges from '
                                 + '1 to 32.'
                                   ;
                     }
                   }
                   mandatory true ;
                   description 'The name of VPWS,this string length '
                             + 'ranges from 1 to 32.'
                               ;

Wang, et al.             Expires 12 August 2023                [Page 11]
Internet-Draft             YANG Model for AMM              February 2023

                 }
               }
               case vpls {
                 description 'Type is VPLS.'
                             ;
                 leaf vpls-name {
                   type string {
                     length 1..32 {
                       description 'This string length ranges from '
                                 + '1 to 32.'
                                   ;
                     }
                   }
                   mandatory true ;
                   description 'The name of VPLS,this string length '
                             + 'ranges from 1 to 32.'
                               ;
                 }
               }
             }
             leaf period {
               type alternate-marking-period ;
               default 30s ;
               description 'The flip period of relation,including '
                         + '1s,10s,30s,60s,5min(default:30s).'
                           ;
             }
             leaf hop-by-hop-status {
               type enable-status ;
               default disable ;
               description 'The status of hop-by-hop,including enable '
                         + 'and disable(default:disable).'
                           ;
             }
             leaf if-name {
               type string {
                 length 1..31 ;
               }
               description 'The UNI interface name of relation.'
                           ;
             }
           }
         }
       }
     }
   }
   <CODE ENDS>

Wang, et al.             Expires 12 August 2023                [Page 12]
Internet-Draft             YANG Model for AMM              February 2023

4.  Security Considerations

   TBD.

5.  IANA Considerations

   TBD.

6.  Acknowledgements

   The authors would like to acknowledge Zhanwei Dou and Chuang Tang for
   their contribution to this document.

   The authors would like to acknowledge Giuseppe Fioccola and Mauro
   Cociglio for their careful review and very helpful comments.

7.  References

7.1.  Normative References

   [RFC9341]  Fioccola, G., Ed., Cociglio, M., Mirsky, G., Mizrahi, T.,
              and T. Zhou, "Alternate-Marking Method", RFC 9341,
              DOI 10.17487/RFC9341, December 2022,
              <https://www.rfc-editor.org/info/rfc9341>.

   [RFC9342]  Fioccola, G., Ed., Cociglio, M., Sapio, A., Sisto, R., and
              T. Zhou, "Clustered Alternate-Marking Method", RFC 9342,
              DOI 10.17487/RFC9342, December 2022,
              <https://www.rfc-editor.org/info/rfc9342>.

7.2.  Informative References

   [I-D.ietf-mpls-inband-pm-encapsulation]
              Cheng, W., Min, X., Zhou, T., Dong, X., and Y. Peleg,
              "Encapsulation For MPLS Performance Measurement with
              Alternate Marking Method", Work in Progress, Internet-
              Draft, draft-ietf-mpls-inband-pm-encapsulation-04, 29
              December 2022, <https://www.ietf.org/archive/id/draft-
              ietf-mpls-inband-pm-encapsulation-04.txt>.

   [RFC8340]  Bjorklund, M. and L. Berger, Ed., "YANG Tree Diagrams",
              BCP 215, RFC 8340, DOI 10.17487/RFC8340, March 2018,
              <https://www.rfc-editor.org/info/rfc8340>.

   [RFC9343]  Fioccola, G., Zhou, T., Cociglio, M., Qin, F., and R.
              Pang, "IPv6 Application of the Alternate-Marking Method",
              RFC 9343, DOI 10.17487/RFC9343, December 2022,
              <https://www.rfc-editor.org/info/rfc9343>.

Wang, et al.             Expires 12 August 2023                [Page 13]
Internet-Draft             YANG Model for AMM              February 2023

Authors' Addresses

   Minxue Wang
   China Mobile
   No.32 Xuanwumen west street
   Beijing
   100053
   China
   Email: wangminxue@chinamobile.com

   Liuyan Han
   China Mobile
   No.32 Xuanwumen west street
   Beijing
   100053
   China
   Email: hanliuyan@chinamobile.com

   Xiao Min
   ZTE Corporation
   Nanjing
   China
   Email: xiao.min2@zte.com.cn

   Jun Guo
   ZTE Corporation
   Nanjing
   China
   Email: guo.jun2@zte.com.cn

   Massimo Nilo
   Telecom Italia
   Torino
   Italy
   Email: massimo.nilo@telecomitalia.it

Wang, et al.             Expires 12 August 2023                [Page 14]