summaryrefslogtreecommitdiffstats
path: root/src/plugins/yang/openconfig/openconfig-aft-ethernet.yang
diff options
context:
space:
mode:
authorAndrej Kozemcak <andrej.kozemcak@pantheon.tech>2019-01-11 07:45:19 +0100
committerAndrej Kozemcak <andrej.kozemcak@pantheon.tech>2019-01-11 07:46:46 +0100
commit8a72578cec9ffe5bf815e38918fd82b190f8af38 (patch)
tree38fc04ef4dab6431861119e63f4559d5ad59bd10 /src/plugins/yang/openconfig/openconfig-aft-ethernet.yang
parentb70c4a3f70c08d93afb52ecb1bdd50a50feb1e1f (diff)
Remove not supported openconfig yang modules.
Change-Id: I721def08356e64918424fdb889f545b64daeea88 Signed-off-by: Andrej Kozemcak <andrej.kozemcak@pantheon.tech>
Diffstat (limited to 'src/plugins/yang/openconfig/openconfig-aft-ethernet.yang')
-rw-r--r--src/plugins/yang/openconfig/openconfig-aft-ethernet.yang93
1 files changed, 0 insertions, 93 deletions
diff --git a/src/plugins/yang/openconfig/openconfig-aft-ethernet.yang b/src/plugins/yang/openconfig/openconfig-aft-ethernet.yang
deleted file mode 100644
index 714a059..0000000
--- a/src/plugins/yang/openconfig/openconfig-aft-ethernet.yang
+++ /dev/null
@@ -1,93 +0,0 @@
-submodule openconfig-aft-ethernet {
- belongs-to "openconfig-aft" {
- prefix "oc-aft";
- }
-
- import openconfig-extensions { prefix "oc-ext"; }
- import openconfig-yang-types { prefix "oc-yang"; }
-
- // Include common cross-AFT groupings from the common submodule.
- include openconfig-aft-common;
-
- organization
- "OpenConfig working group";
-
- contact
- "OpenConfig working group
- www.openconfig.net";
-
- description
- "Submodule containing definitions of groupings for the abstract
- forwarding tables for Ethernet.";
-
- oc-ext:openconfig-version "0.3.1";
-
- revision 2017-08-24 {
- description
- "Formatting fixes";
- reference "0.3.1";
- }
-
- revision 2017-05-10 {
- description
- "Refactor to provide concretised per-AF schemas per AFT.";
- reference "0.3.0";
- }
-
- grouping aft-ethernet-structural {
- description
- "Structural grouping defining the schema for the Ethernet
- abstract forwarding table.";
-
- list mac-entry {
- key "mac-address";
-
- description
- "List of the Ethernet entries within the abstract
- forwarding table. This list is keyed by the outer MAC address
- of the Ethernet frame.";
-
- leaf mac-address {
- type leafref {
- path "../config/mac-address";
- }
- description
- "Reference to the outer MAC address matched by the
- entry.";
- }
-
- container config {
- description
- "Configuration parameters for the Ethernet AFT entry.";
- uses aft-ethernet-entry-config;
- }
-
- container state {
- config false;
- description
- "Operational state parameters for the Ethernet AFT
- entry.";
- uses aft-ethernet-entry-config;
- uses aft-ethernet-entry-state;
- }
- }
- }
-
- grouping aft-ethernet-entry-config {
- description
- "Configuration parameters for the Ethernet AFT entry.";
-
- leaf mac-address {
- type oc-yang:mac-address;
- description
- "The outer MAC address of the Ethernet frame that must
- be matched for the AFT entry to be utilised.";
- }
- }
-
- grouping aft-ethernet-entry-state {
- description
- "Operational state parameters for the Ethernet AFT entry.";
- uses aft-common-entry-state;
- }
-}