huawei-flowspec-forward

Flowspec-forward.

  • Version: 2020-03-12

    huawei-flowspec-forward@2020-03-12


    
      module huawei-flowspec-forward {
    
        yang-version 1;
    
        namespace
          "urn:huawei:yang:huawei-flowspec-forward";
    
        prefix flowspec-forward;
    
        import huawei-ifm {
          prefix ifm;
        }
        import huawei-devm {
          prefix devm;
        }
        import huawei-extension {
          prefix ext;
        }
        import ietf-inet-types {
          prefix inet;
        }
    
        organization
          "Huawei Technologies Co., Ltd.";
    
        contact
          "Huawei Industrial Base
         Bantian, Longgang
         Shenzhen 518129
         People's Republic of China
         Website: http://www.huawei.com
         Email: support@huawei.com";
    
        description "Flowspec-forward.";
    
        revision "2020-03-12" {
          description
            "Descriptive optimization.";
          reference
            "Huawei private.";
    
        }
    
        revision "2020-02-25" {
          description
            "The modifications in the schema file are synchronized to the YANG file.";
          reference
            "Huawei private.";
    
        }
    
        revision "2019-12-31" {
          description
            "The modifications in the schema file are synchronized to the YANG file.";
          reference
            "Huawei private.";
    
        }
    
        revision "2019-11-18" {
          description
            "The modifications in the schema file are synchronized to the YANG file.";
          reference
            "Huawei private.";
    
        }
    
        revision "2019-10-24" {
          description
            "The modifications in the schema file are synchronized to the YANG file.";
          reference
            "Huawei private.";
    
        }
    
        revision "2019-04-20" {
          description "Initial revision.";
          reference
            "Huawei private.";
    
        }
    
        ext:task-name "qos";
    
        typedef match-fragment-ip-version {
          type enumeration {
            enum "ipv4" {
              value 0;
              description "The IPv4 protocol.";
            }
          }
          description
            "This value represents the version of the IP protocol.";
        }
    
        container flowspec-forward {
          description
            "Configure flowspec forward.";
          leaf statistic-enable {
            type boolean;
            default "false";
            description
              "Enable/disable flowspec statistic.";
          }
    
          leaf vxlan-packet-enable {
            type boolean;
            default "false";
            description
              "Enable/disable flowspec only for the vxlan packet.";
          }
    
          leaf match-ip-layer {
            type boolean;
            default "false";
            description
              "Enable/disable flowspec only for the IP layer.";
          }
    
          container protocol-protect-disables {
            description
              "List of flowspec protocol-protect disable.";
            list protocol-protect-disable {
              key "flow-type";
              description
                "Configure protocol-protect disable instance.";
              leaf flow-type {
                type enumeration {
                  enum "ipv4" {
                    value 0;
                    description
                      "Protocol-protect disable IPv4.";
                  }
                  enum "ipv6" {
                    value 1;
                    description
                      "Protocol-protect disable IPv6.";
                  }
                }
                description
                  "BGP protocol-protect disable flowtype, The value all is mutually exclusive with IPv4 and IPv6.";
              }
            }  // list protocol-protect-disable
          }  // container protocol-protect-disables
    
          container flowspec-match-protocol-fragments {
            description
              "List of configure flowspec protocol fragmentation rules complies with RFC 5575.";
            list flowspec-match-protocol-fragment {
              key "protocol";
              description
                "Configure flowspec protocol fragmentation rules complies with RFC 5575.";
              leaf protocol {
                type match-fragment-ip-version;
                description "IP family type.";
              }
            }  // list flowspec-match-protocol-fragment
          }  // container flowspec-match-protocol-fragments
    
          container flowspec-rules {
            config false;
            description "List of flowspec rule.";
            list flowspec-rule {
              key "slot-id flow-route-index index";
              description
                "Operational data of flowspec rule.";
              leaf slot-id {
                type string {
                  length "1..16";
                  pattern "(c[cl]c\\d+/)?\\d+";
                }
                description "Slot ID.";
              }
    
              leaf flow-route-index {
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "Specify the flow-route Index.";
              }
    
              leaf index {
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "Logical index of combination rule.";
              }
    
              leaf source-ip {
                type inet:ipv4-address-no-zone;
                description
                  "Source IPv4 address.";
              }
    
              leaf source-ip-prefix {
                type inet:ipv4-prefix;
                description
                  "Source IPv4 prefix length.";
              }
    
              leaf destination-ip {
                type inet:ipv4-address-no-zone;
                description
                  "Destination IPv4 address.";
              }
    
              leaf destination-ip-prefix {
                type inet:ipv4-prefix;
                description
                  "Destination IPv4 prefix length.";
              }
    
              leaf protocol {
                type uint16;
                description "Protocol number.";
              }
    
              leaf source-port {
                type uint16;
                description "Source port.";
              }
    
              leaf destination-port {
                type uint16;
                description "Destination port.";
              }
    
              leaf fragment-flag {
                type uint8;
                description
                  "Fragment flag: 0 indicates the non-fragment; 1 indicates the fragment; 2 indicates fragmentation is ignored.";
              }
    
              leaf first-fragment-flag {
                type uint8;
                description
                  "First fragment flag: 0 indicates the non-start fragment; 1 indicates the start fragment; 2 indicates whether the first fragment is ignored.";
              }
    
              leaf middle-fragment-flag {
                type uint8;
                description
                  "Middle fragment flag: 0 indicates the non-middle fragment; 1 indicates the middle fragment; 2 indicates that the middle fragment is ignored.";
              }
    
              leaf last-fragment-flag {
                type uint8;
                description
                  "Last fragment flag: 0 indicates the non-last fragment; 1 indicates the last fragment; 2 indicates that the last fragment is ignored.";
              }
    
              leaf do-not-fragment-flag {
                type uint8;
                description
                  "Don't fragment flag: 0 indicates that fragmentation is enabled; 1 indicates fragmentation is disabled; 2 indicates whether to disable fragmentation is ignored.";
              }
    
              leaf tcp-flag {
                type uint8;
                description
                  "Flag of a TCP header.";
              }
    
              leaf dscp {
                type uint8;
                description
                  "Identifier of packet priority.";
              }
    
              leaf icmp-type {
                type uint8;
                description "ICMP type.";
              }
    
              leaf icmp-code {
                type uint8;
                description "ICMP code.";
              }
    
              leaf as {
                type uint8 {
                  range "1..63";
                }
                description
                  "Number to which an AS number is mapped.";
              }
            }  // list flowspec-rule
          }  // container flowspec-rules
    
          container flowspec-ipv6-rules {
            config false;
            description
              "List of flowspec IPv6 rule.";
            list flowspec-ipv6-rule {
              key "slot-id flow-route-index index";
              description
                "Operational data of flowspec IPv6 rule.";
              leaf slot-id {
                type string {
                  length "1..16";
                  pattern "(c[cl]c\\d+/)?\\d+";
                }
                description "Slot ID.";
              }
    
              leaf flow-route-index {
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "Specify the flow-route Index.";
              }
    
              leaf index {
                type uint32 {
                  range "1..4294967295";
                }
                description
                  "Logical index of combination rule.";
              }
    
              leaf source-ip {
                type inet:ipv6-address-no-zone;
                description
                  "Source IPv6 address.";
              }
    
              leaf source-ip-prefix {
                type inet:ipv6-prefix;
                description
                  "Source IPv6 prefix length.";
              }
    
              leaf destination-ip {
                type inet:ipv6-address-no-zone;
                description
                  "Destination IPv6 address.";
              }
    
              leaf destination-ip-prefix {
                type inet:ipv6-prefix;
                description
                  "Destination IPv6 prefix length.";
              }
    
              leaf protocol {
                type uint16;
                description "Protocol number.";
              }
    
              leaf source-port {
                type uint16;
                description "Source port.";
              }
    
              leaf destination-port {
                type uint16;
                description "Destination port.";
              }
    
              leaf fragment-flag {
                type uint8;
                description
                  "Fragment flag: 0 indicates the non-fragment; 1 indicates the fragment; 2 indicates fragmentation is ignored.";
              }
    
              leaf first-fragment-flag {
                type uint8;
                description
                  "First fragment flag: 0 indicates the non-start fragment; 1 indicates the start fragment; 2 indicates whether the first fragment is received is ignored.";
              }
    
              leaf tcp-flag {
                type uint8;
                description
                  "Flag of a TCP header.";
              }
    
              leaf dscp {
                type uint8;
                description
                  "Identifier of packet priority.";
              }
    
              leaf icmp-type {
                type uint8;
                description "ICMP type.";
              }
    
              leaf icmp-code {
                type uint8;
                description "ICMP code.";
              }
            }  // list flowspec-ipv6-rule
          }  // container flowspec-ipv6-rules
    
          container flowspec-rule-statisticss {
            config false;
            description
              "List of flowspec rule statistics.";
            list flowspec-rule-statistics {
              key "slot-id protocol";
              description
                "Flowspec rule statistics.";
              leaf slot-id {
                type string {
                  length "1..16";
                  pattern "(c[cl]c\\d+/)?\\d+";
                }
                description "Slot ID.";
              }
    
              leaf protocol {
                type inet:ip-version;
                description "Ip family type.";
              }
    
              leaf rule-numbers {
                type uint32;
                description "Rule numbers.";
              }
            }  // list flowspec-rule-statistics
          }  // container flowspec-rule-statisticss
        }  // container flowspec-forward
      }  // module huawei-flowspec-forward
    

© 2023 YumaWorks, Inc. All rights reserved.