file "ietf-dc-fabric-types@2019-02-25.yang" module ietf-dc-fabric-types { yang-version 1.1; namespace "urn:ietf:params:xml:ns:yang:ietf-dc-fabric-types"; prefix fabrictypes; import ietf-network { prefix nw; reference "RFC 8345: A YANG Data Model for Network Topologies"; } organization "IETF I2RS (Interface to the Routing System) Working Group"; contact "WG Web: WG List: Editor: Yan Zhuang Editor: Danian Shi "; description "This module contains a collection of YANG definitions for fabric. Copyright (c) 2019 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.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 8542; see the RFC itself for full legal notices."; revision 2019-02-25 { description "Initial revision."; Zhuang, et al. Standards Track [Page 8] RFC 8542 Data Model for DC Fabric Topology March 2019 reference "RFC 8542: A YANG Data Model for Fabric Topology in Data-Center Networks"; } identity fabric-type { description "Base type for fabric networks"; } identity vxlan-fabric { base fabric-type; description "VXLAN fabric"; } identity vlan-fabric { base fabric-type; description "VLAN fabric"; } identity trill-fabric { base fabric-type; description "TRILL fabric"; } identity port-type { description "Base type for fabric port"; } identity eth { base port-type; description "Ethernet"; } identity serial { base port-type; description "Serial"; } identity bandwidth { description "Base for bandwidth"; Zhuang, et al. Standards Track [Page 9] RFC 8542 Data Model for DC Fabric Topology March 2019 } identity bw-1M { base bandwidth; description "1M"; } identity bw-10M { base bandwidth; description "10Mbps"; } identity bw-100M { base bandwidth; description "100Mbps"; } identity bw-1G { base bandwidth; description "1Gbps"; } identity bw-10G { base bandwidth; description "10Gbps"; } identity bw-25G { base bandwidth; description "25Gbps"; } identity bw-40G { base bandwidth; description "40Gbps"; } identity bw-100G { base bandwidth; description "100Gbps"; Zhuang, et al. Standards Track [Page 10] RFC 8542 Data Model for DC Fabric Topology March 2019 } identity bw-400G { base bandwidth; description "400Gbps"; } identity device-role { description "Base for the device role in a fabric."; } identity spine { base device-role; description "This is a spine node in a fabric."; } identity leaf { base device-role; description "This is a leaf node in a fabric."; } identity border { base device-role; description "This is a border node to connect to other fabric/network."; } identity fabric-port-role { description "Base for the port's role in a fabric."; } identity internal { base fabric-port-role; description "The port is used for devices to access each other within a fabric."; } identity external { base fabric-port-role; description "The port is used for a fabric to connect to Zhuang, et al. Standards Track [Page 11] RFC 8542 Data Model for DC Fabric Topology March 2019 outside network."; } identity access { base fabric-port-role; description "The port is used for an endpoint to connect to a fabric."; } identity service-capability { description "Base for the service of the fabric "; } identity ip-mapping { base service-capability; description "NAT."; } identity acl-redirect { base service-capability; description "ACL redirect, which can provide a Service Function Chain (SFC)."; } identity dynamic-route-exchange { base service-capability; description "Dynamic route exchange."; } /* * Typedefs */ typedef fabric-id { type nw:node-id; description "An identifier for a fabric in a topology. This identifier can be generated when composing a fabric. The composition of a fabric can be achieved by defining an RPC, which is left for vendor specific implementation and not provided in this model."; } typedef service-capabilities { Zhuang, et al. Standards Track [Page 12] RFC 8542 Data Model for DC Fabric Topology March 2019 type identityref { base service-capability; } description "Service capability of the fabric"; } typedef port-type { type identityref { base port-type; } description "Port type: ethernet or serial or others."; } typedef bandwidth { type identityref { base bandwidth; } description "Bandwidth of the port."; } typedef node-ref { type instance-identifier; description "A reference to a node in topology"; } typedef tp-ref { type instance-identifier; description "A reference to a termination point in topology"; } typedef link-ref { type instance-identifier; description "A reference to a link in topology"; } typedef underlay-network-type { type identityref { base fabric-type; } description "The type of physical network that implements this fabric. Examples are VLAN and TRILL."; Zhuang, et al. Standards Track [Page 13] RFC 8542 Data Model for DC Fabric Topology March 2019 } typedef device-role { type identityref { base device-role; } description "Role of the device node."; } typedef fabric-port-role { type identityref { base fabric-port-role; } description "Role of the port in a fabric."; } typedef fabric-port-type { type enumeration { enum layer2interface { description "L2 interface"; } enum layer3interface { description "L3 interface"; } enum layer2Tunnel { description "L2 tunnel"; } enum layer3Tunnel { description "L3 tunnel"; } } description "Fabric port type"; } grouping fabric-port { description "Attributes of a fabric port."; leaf name { type string; description "Name of the port."; Zhuang, et al. Standards Track [Page 14] RFC 8542 Data Model for DC Fabric Topology March 2019 } leaf role { type fabric-port-role; description "Role of the port in a fabric."; } leaf type { type fabric-port-type; description "Type of the port"; } leaf device-port { type tp-ref; description "The device port it mapped to."; } choice tunnel-option { description "Tunnel options to connect two fabrics. It could be L2 Tunnel or L3 Tunnel."; } } } file "ietf-dc-fabric-topology@2019-02-25.yang" module ietf-dc-fabric-topology { yang-version 1.1; namespace "urn:ietf:params:xml:ns:yang:ietf-dc-fabric-topology"; prefix fabric; import ietf-network { prefix nw; reference "RFC 8345: A YANG Data Model for Network Topologies"; } import ietf-network-topology { prefix nt; reference "RFC 8345: A YANG Data Model for Network Topologies"; } import ietf-dc-fabric-types { prefix fabrictypes; reference "RFC 8542: A YANG Data Model for Fabric Topology in Data-Center Networks"; } Zhuang, et al. Standards Track [Page 15] RFC 8542 Data Model for DC Fabric Topology March 2019 organization "IETF I2RS (Interface to the Routing System) Working Group"; contact "WG Web: WG List: Editor: Yan Zhuang Editor: Danian Shi "; description "This module contains a collection of YANG definitions for fabric. Copyright (c) 2019 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.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 8542; see the RFC itself for full legal notices."; revision 2019-02-25 { description "Initial revision."; reference "RFC 8542: A YANG Data Model for Fabric Topology in Data-Center Networks"; } //grouping statements grouping fabric-network-type { description "Identify the topology type to be fabric."; container fabric-network { presence "indicates fabric Network"; description "The presence of the container node indicates fabric topology"; } } Zhuang, et al. Standards Track [Page 16] RFC 8542 Data Model for DC Fabric Topology March 2019 grouping fabric-options { description "Options for a fabric"; leaf gateway-mode { type enumeration { enum centralized { description "The Fabric uses centralized gateway, in which gateway is deployed on SPINE node."; } enum distributed { description "The Fabric uses distributed gateway, in which gateway is deployed on LEAF node."; } } default "distributed"; description "Gateway mode of the fabric"; } leaf traffic-behavior { type enumeration { enum normal { description "Normal means no policy is needed for all traffic"; } enum policy-driven { description "Policy driven means policy is needed for the traffic; otherwise, the traffic will be discarded."; } } default "normal"; description "Traffic behavior of the fabric"; } leaf-list capability-supported { type fabrictypes:service-capabilities; description "It provides a list of supported services of the fabric. The service-capabilities is defined as identity-ref. Users can define more services by defining new identities."; } Zhuang, et al. Standards Track [Page 17] RFC 8542 Data Model for DC Fabric Topology March 2019 } grouping device-attributes { description "device attributes"; leaf device-ref { type fabrictypes:node-ref; description "The device that the fabric includes that refers to a node in another topology."; } leaf-list role { type fabrictypes:device-role; default "fabrictypes:leaf"; description "It is a list of device roles to represent the roles that a device plays within a POD, such as SPINE, LEAF, Border, or Border-Leaf. The device role is defined as identity-ref. If more than 2 stages are used for a POD, users can define new identities for the device role."; } } grouping link-attributes { description "Link attributes"; leaf link-ref { type fabrictypes:link-ref; description "The link that the fabric includes that refers to a link in another topology."; } } grouping port-attributes { description "Port attributes"; leaf port-ref { type fabrictypes:tp-ref; description "The port that the fabric includes that refers to a termination-point in another topology."; } leaf port-type { type fabrictypes:port-type; description "Port type is defined as identity-ref. The current Zhuang, et al. Standards Track [Page 18] RFC 8542 Data Model for DC Fabric Topology March 2019 types include ethernet or serial. If more types are needed, developers can define new identities."; } leaf bandwidth { type fabrictypes:bandwidth; description "Bandwidth of the port. It is defined as identity-ref. If more speeds are introduced, developers can define new identities for them. Current speeds include 1M, 10M, 100M, 1G, 10G, 25G, 40G, 100G, and 400G."; } } grouping fabric-attributes { description "Attributes of a fabric"; leaf fabric-id { type fabrictypes:fabric-id; description "An identifier for a fabric in a topology. This identifier can be generated when composing a fabric. The composition of a fabric can be achieved by defining an RPC, which is left for vendor-specific implementation and not provided in this model."; } leaf name { type string; description "Name of the fabric"; } leaf type { type fabrictypes:underlay-network-type; description "The type of physical network that implements this fabric. Examples are VLAN and TRILL."; } container vni-capacity { description "The range of the VXLAN Network Identifier (VNI) defined in RFC 7348 that the POD uses."; leaf min { type int32; description "The lower-limit VNI."; } leaf max { type int32; description Zhuang, et al. Standards Track [Page 19] RFC 8542 Data Model for DC Fabric Topology March 2019 "The upper-limit VNI."; } } leaf description { type string; description "Description of the fabric"; } container options { description "Options of the fabric"; uses fabric-options; } list device-nodes { key "device-ref"; description "Device nodes that are included in a fabric."; uses device-attributes; } list device-links { key "link-ref"; description "Links that are included within a fabric."; uses link-attributes; } list device-ports { key "port-ref"; description "Ports that are included in the fabric."; uses port-attributes; } } // augment statements augment "/nw:networks/nw:network/nw:network-types" { description "Introduce a new network type for fabric-based topology"; uses fabric-network-type; } augment "/nw:networks/nw:network/nw:node" { when '/nw:networks/nw:network/nw:network-types/' + 'fabric:fabric-network' { description "Augmentation parameters apply only for networks with fabric topology"; } Zhuang, et al. Standards Track [Page 20] RFC 8542 Data Model for DC Fabric Topology March 2019 description "Augmentation for fabric nodes created by fabric topology."; container fabric-attributes { description "Attributes for a fabric network"; uses fabric-attributes; } } augment "/nw:networks/nw:network/nw:node/nt:termination-point" { when '/nw:networks/nw:network/nw:network-types/' + 'fabric:fabric-network' { description "Augmentation parameters apply only for networks with fabric topology"; } description "Augmentation for port on fabric."; container fport-attributes { config false; description "Attributes for fabric ports"; uses fabrictypes:fabric-port; } } } 5. IANA Considerations This document registers the following namespace URIs in the "IETF XML Registry" [RFC3688]: URI:urn:ietf:params:xml:ns:yang:ietf-dc-fabric-types Registrant Contact: The IESG. XML: N/A; the requested URI is an XML namespace. URI:urn:ietf:params:xml:ns:yang:ietf-dc-fabric-topology Registrant Contact: The IESG. XML: N/A; the requested URI is an XML namespace. URI:urn:ietf:params:xml:ns:yang:ietf-dc-fabric-topology-state Registrant Contact: The IESG. XML: N/A; the requested URI is an XML namespace. Zhuang, et al. Standards Track [Page 21] RFC 8542 Data Model for DC Fabric Topology March 2019 This document registers the following YANG modules in the "YANG Module Names" registry [RFC6020]: Name: ietf-dc-fabric-types Namespace: urn:ietf:params:xml:ns:yang:ietf-dc-fabric-types Prefix: fabrictypes Reference: RFC 8542 Name: ietf-dc-fabric-topology Namespace: urn:ietf:params:xml:ns:yang:ietf-dc-fabric-topology Prefix: fabric Reference: RFC 8542 Name: ietf-dc-fabric-topology-state Namespace: urn:ietf:params:xml:ns:yang:ietf-dc-fabric-topology-state Prefix: sfabric Reference: RFC 8542 6. Security Considerations The YANG module defined in this document 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. There are a number of data nodes defined in this YANG module that are writable/creatable/deletable (i.e., config true, which is the default). These data nodes may be considered sensitive or vulnerable in some network environments. Write operations (e.g., edit-config) to these data nodes without proper protection can have a negative effect on network operations. The subtrees and data nodes and their sensitivity/vulnerability in the ietf-dc-fabric-topology module are as follows: fabric-attributes: A malicious client could attempt to sabotage the configuration of important fabric attributes, such as device nodes or type. Some of the readable data nodes in this YANG module may be considered sensitive or vulnerable in some network environments. It is thus important to control read access (e.g., via get, get-config, or Zhuang, et al. Standards Track [Page 22] RFC 8542 Data Model for DC Fabric Topology March 2019 notification) to these data nodes. The subtrees and data nodes and their sensitivity/vulnerability in the ietf-dc-fabric-topology module are as follows: fport-attributes: A malicious client could attempt to read the connections of fabrics without permission, such as device-port and name. 7. References 7.1. Normative References [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, March 1997, . [RFC3688] Mealling, M., "The IETF XML Registry", BCP 81, RFC 3688, DOI 10.17487/RFC3688, January 2004, . [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, . [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, . [RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, May 2017, . Zhuang, et al. Standards Track [Page 23] RFC 8542 Data Model for DC Fabric Topology March 2019 [RFC8341] Bierman, A. and M. Bjorklund, "Network Configuration Access Control Model", STD 91, RFC 8341, DOI 10.17487/RFC8341, March 2018, . [RFC8342] Bjorklund, M., Schoenwaelder, J., Shafer, P., Watsen, K., and R. Wilton, "Network Management Datastore Architecture (NMDA)", RFC 8342, DOI 10.17487/RFC8342, March 2018, . [RFC8345] Clemm, A., Medved, J., Varga, R., Bahadur, N., Ananthakrishnan, H., and X. Liu, "A YANG Data Model for Network Topologies", RFC 8345, DOI 10.17487/RFC8345, March 2018, . [RFC8346] Clemm, A., Medved, J., Varga, R., Liu, X., Ananthakrishnan, H., and N. Bahadur, "A YANG Data Model for Layer 3 Topologies", RFC 8346, DOI 10.17487/RFC8346, March 2018, . [RFC8446] Rescorla, E., "The Transport Layer Security (TLS) Protocol Version 1.3", RFC 8446, DOI 10.17487/RFC8446, August 2018, . 7.2. Informative References [GENEVE] Gross, J., Ganga, I., and T. Sridhar, "Geneve: Generic Network Virtualization Encapsulation", Work in Progress, draft-ietf-nvo3-geneve-12, March 2019. [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, . [RFC8340] Bjorklund, M. and L. Berger, Ed., "YANG Tree Diagrams", BCP 215, RFC 8340, DOI 10.17487/RFC8340, March 2018, . [RFC8344] Bjorklund, M., "A YANG Data Model for IP Management", RFC 8344, DOI 10.17487/RFC8344, March 2018, . Zhuang, et al. Standards Track [Page 24] RFC 8542 Data Model for DC Fabric Topology March 2019 Appendix A. Non-NMDA-State Modules The YANG module, ietf-dc-fabric-topology, defined in this document augments two modules, ietf-network and ietf-network-topology, that are designed to be used in conjunction with implementations that support the Network Management Datastore Architecture (NMDA) defined in [RFC8342]. In order to allow implementations to use the model even in cases when NMDA is not supported, a set of companion modules have been defined that represent a state model of networks and network topologies: ietf-network-state and ietf-network-topology- state, respectively. In order to be able to use the model for fabric topologies defined in this document in conjunction with non-NMDA-compliant implementations, a corresponding companion module needs to be introduced as well. This companion module, ietf-dc-fabric-topology-state, mirrors ietf- dc-fabric-topology. However, the ietf-dc-fabric-topology-state module augments ietf-network-state (instead of ietf-network and ietf- network-topology), and all of its data nodes are non-configurable. Like ietf-network-state and ietf-network-topology-state, ietf-dc- fabric-topology-state SHOULD NOT be supported by implementations that support NMDA. It is for this reason that the module is defined in the Appendix. The definition of the module follows. As the structure of the module mirrors that of its underlying module, the YANG tree is not depicted separately. file "ietf-dc-fabric-topology-state@2019-02-25.yang" module ietf-dc-fabric-topology-state { yang-version 1.1; namespace "urn:ietf:params:xml:ns:yang:ietf-dc-fabric-topology-state"; prefix sfabric; import ietf-network-state { prefix nws; reference "RFC 8345: A Data Model for Network Topologies"; } import ietf-dc-fabric-types { prefix fabrictypes; reference "RFC 8542: A YANG Data Model for Fabric Topology in Data-Center Networks"; } organization Zhuang, et al. Standards Track [Page 25] RFC 8542 Data Model for DC Fabric Topology March 2019 "IETF I2RS (Interface to the Routing System) Working Group"; contact "WG Web: WG List: Editor: Yan Zhuang Editor: Danian Shi "; description "This module contains a collection of YANG definitions for fabric state, representing topology that either is learned or results from applying topology that has been configured per the ietf-dc-fabric-topology model, mirroring the corresponding data nodes in this model. This model mirrors the configuration tree of ietf-dc-fabric -topology but contains only read-only state data. The model is not needed when the implementation infrastructure supports the Network Management Datastore Architecture (NMDA). Copyright (c) 2019 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.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 8542; see the RFC itself for full legal notices."; revision 2019-02-25 { description "Initial revision."; reference "RFC 8542: A YANG Data Model for Fabric Topology in Data-Center Networks"; } //grouping statements grouping fabric-network-type { description "Identify the topology type to be fabric."; Zhuang, et al. Standards Track [Page 26] RFC 8542 Data Model for DC Fabric Topology March 2019 container fabric-network { presence "indicates fabric Network"; description "The presence of the container node indicates fabric topology"; } } grouping fabric-options { description "Options for a fabric"; leaf gateway-mode { type enumeration { enum centralized { description "The fabric uses centralized gateway, in which gateway is deployed on SPINE node."; } enum distributed { description "The fabric uses distributed gateway, in which gateway is deployed on LEAF node."; } } default "distributed"; description "Gateway mode of the fabric"; } leaf traffic-behavior { type enumeration { enum normal { description "Normal means no policy is needed for all traffic"; } enum policy-driven { description "Policy driven means policy is needed for the traffic; otherwise, the traffic will be discarded."; } } default "normal"; description "Traffic behavior of the fabric"; } Zhuang, et al. Standards Track [Page 27] RFC 8542 Data Model for DC Fabric Topology March 2019 leaf-list capability-supported { type fabrictypes:service-capabilities; description "It provides a list of supported services of the fabric. The service-capabilities is defined as identity-ref. Users can define more services by defining new identities."; } } grouping device-attributes { description "device attributes"; leaf device-ref { type fabrictypes:node-ref; description "The device that the fabric includes that refers to a node in another topology."; } leaf-list role { type fabrictypes:device-role; default "fabrictypes:leaf"; description "It is a list of device roles to represent the roles that a device plays within a POD, such as SPINE, LEAF, Border, or Border-Leaf. The device role is defined as identity-ref. If more than 2 stages are used for a POD, users can define new identities for the device role."; } } grouping link-attributes { description "Link attributes"; leaf link-ref { type fabrictypes:link-ref; description "The link that the fabric includes that refers to a link in another topology."; } } grouping port-attributes { description "Port attributes"; leaf port-ref { type fabrictypes:tp-ref; Zhuang, et al. Standards Track [Page 28] RFC 8542 Data Model for DC Fabric Topology March 2019 description "The port that the fabric includes that refers to a termination-point in another topology."; } leaf port-type { type fabrictypes:port-type; description "Port type is defined as identity-ref. The current types include ethernet or serial. If more types are needed, developers can define new identities."; } leaf bandwidth { type fabrictypes:bandwidth; description "Bandwidth of the port. It is defined as identity-ref. If more speeds are introduced, developers can define new identities for them. Current speeds include 1M, 10M, 100M, 1G, 10G, 25G, 40G, 100G, and 400G."; } } grouping fabric-attributes { description "Attributes of a fabric"; leaf fabric-id { type fabrictypes:fabric-id; description "Fabric ID"; } leaf name { type string; description "Name of the fabric"; } leaf type { type fabrictypes:underlay-network-type; description "The type of physical network that implements this fabric. Examples are VLAN and TRILL."; } container vni-capacity { description "The range of the VXLAN Network Identifier (VNI) defined in RFC 7348 that the POD uses."; leaf min { type int32; description Zhuang, et al. Standards Track [Page 29] RFC 8542 Data Model for DC Fabric Topology March 2019 "The lower-limit VNI."; } leaf max { type int32; description "The upper-limit VNI."; } } leaf description { type string; description "Description of the fabric"; } container options { description "Options of the fabric"; uses fabric-options; } list device-nodes { key "device-ref"; description "Device nodes that are included in a fabric."; uses device-attributes; } list device-links { key "link-ref"; description "Links that are included within a fabric."; uses link-attributes; } list device-ports { key "port-ref"; description "Ports that are included in the fabric."; uses port-attributes; } } // augment statements augment "/nws:networks/nws:network/nws:network-types" { description "Introduce a new network type for fabric-based logical topology"; uses fabric-network-type; } Zhuang, et al. Standards Track [Page 30] RFC 8542 Data Model for DC Fabric Topology March 2019 augment "/nws:networks/nws:network/nws:node" { when '/nws:networks/nws:network/nws:network-types' + '/sfabric:fabric-network' { description "Augmentation parameters apply only for networks with fabric topology."; } description "Augmentation for fabric nodes."; container fabric-attributes-state { description "Attributes for a fabric network"; uses fabric-attributes; } } } Zhuang, et al. Standards Track [Page 31] RFC 8542 Data Model for DC Fabric Topology March 2019 Acknowledgements We wish to acknowledge the helpful contributions, comments, and suggestions that were received from Alexander Clemm, Donald E. Eastlake 3rd, Xufeng Liu, Susan Hares, Wei Song, Luis M. Contreras, and Benoit Claise. Authors' Addresses Yan Zhuang Huawei 101 Software Avenue, Yuhua District Nanjing, Jiangsu 210012 China Email: zhuangyan.zhuang@huawei.com Danian Shi Huawei 101 Software Avenue, Yuhua District Nanjing, Jiangsu 210012 China Email: shidanian@huawei.com Rong Gu China Mobile 32 Xuanwumen West Ave, Xicheng District Beijing, Beijing 100053 China Email: gurong_cmcc@outlook.com Hariharan Ananthakrishnan Netflix Email: hari@netflix.com Zhuang, et al. Standards Track [Page 32]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4