summaryrefslogtreecommitdiffstats
path: root/v3po/api/src/main/yang/pbb-types@2016-12-14.yang
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-06-16 14:36:52 +0200
committerMarek Gradzki <mgradzki@cisco.com>2017-06-16 14:55:14 +0200
commitb4581d183065af6b82026003959b96fbe6850dd1 (patch)
tree6d7f8654ce4eeb13350a3d32314bd267a79c9c61 /v3po/api/src/main/yang/pbb-types@2016-12-14.yang
parentc312c69343e8336456a109ff82d9bc4c6dc9b1ea (diff)
Rename yang files to match model revision
Also order of revisions was sorted starting from most current. Change-Id: I21fd35cfdb1cc5601b3fb40c9f3755bd3b995b14 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'v3po/api/src/main/yang/pbb-types@2016-12-14.yang')
-rw-r--r--v3po/api/src/main/yang/pbb-types@2016-12-14.yang81
1 files changed, 81 insertions, 0 deletions
diff --git a/v3po/api/src/main/yang/pbb-types@2016-12-14.yang b/v3po/api/src/main/yang/pbb-types@2016-12-14.yang
new file mode 100644
index 000000000..8c3aad41a
--- /dev/null
+++ b/v3po/api/src/main/yang/pbb-types@2016-12-14.yang
@@ -0,0 +1,81 @@
+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";
+ }
+ }
+}