summaryrefslogtreecommitdiffstats
path: root/v3po/api/src/main/yang/pbb-types.yang
diff options
context:
space:
mode:
authorMaros Marsalek <mmarsale@cisco.com>2016-11-10 12:22:28 +0100
committerMaros Marsalek <mmarsale@cisco.com>2016-11-10 12:47:24 +0100
commit8e0c7007906730fe4547b0265a895ad8a322a7dc (patch)
treedbc3310da5c7b7083cc6b9ecffee633d2cf5cd7f /v3po/api/src/main/yang/pbb-types.yang
parentaa7e652e6105a6972d6c41ff0738cd9e31ce0188 (diff)
Remove hc2vpp codebase
Moved to a dedicated hc2vpp project in fd.io Change-Id: I03dc3b3029f21b127a00c69a86bcd8e467896241 Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'v3po/api/src/main/yang/pbb-types.yang')
-rw-r--r--v3po/api/src/main/yang/pbb-types.yang81
1 files changed, 0 insertions, 81 deletions
diff --git a/v3po/api/src/main/yang/pbb-types.yang b/v3po/api/src/main/yang/pbb-types.yang
deleted file mode 100644
index 8c3aad41a..000000000
--- a/v3po/api/src/main/yang/pbb-types.yang
+++ /dev/null
@@ -1,81 +0,0 @@
-module pbb-types {
- yang-version 1;
- namespace "urn:opendaylight:params:xml:ns:yang:pbb-types";
- prefix "pbb-types";
-
- description "Common types used for defining Pbb based subinterfaces";
-
- revision "2016-12-14" {
- description
- "Initial revision.";
- }
-
- import ietf-yang-types {
- prefix yang;
- }
-
- import ietf-interfaces {
- prefix if;
- }
-
- import yang-ext {
- prefix "ext";
- }
-
- typedef operation {
- type enumeration {
- // NOTE - Does not specify disabled enum value(0), because its used internally to delete/disable rewrite
- enum "push-2" {
- value 2;
- }
-
- enum "pop-2" {
- value 4;
- description "Encapsulate/Decapsulate pbb packet according to incoming/outcoming direction";
- }
- enum "translate-2-1" {
- value 7;
- }
- }
- }
-
- grouping pbb-rewrite-attributes {
- description "Provider Backbone Bridge attributes";
-
- leaf destination-address {
- type yang:mac-address;
- description "backbone destination address";
- }
-
- leaf source-address {
- type yang:mac-address;
- description "backbone source address";
- }
-
- leaf outer-tag {
- type uint16;
- }
-
- leaf b-vlan-tag-vlan-id {
- type uint16 {
- //12 bit range
- range "1..4095";
- }
- description "backbone vlan id";
- }
-
- leaf i-tag-isid {
- type uint32 {
- //24 bit range
- range "1..16777215";
- }
- description "identifier of the backbone service instance ";
- }
-
- leaf interface-operation {
- type operation;
- default pop-2;
- description "Define operation that will pbb interface perform while processing packets";
- }
- }
-}