diff options
author | Jan Srnicek <jsrnicek@cisco.com> | 2016-11-09 08:55:04 +0100 |
---|---|---|
committer | Jan Srnicek <jsrnicek@cisco.com> | 2016-11-09 08:55:04 +0100 |
commit | ddb7683677ef0bcc291f686dbed9c95d50c4046b (patch) | |
tree | 3315c21c9e4cba0bb6c25c7c5ec0048bb51458e5 /lisp/api/src | |
parent | 64d4c13102024ab8f1e0215c6a6a4894c3306c56 (diff) |
HONEYCOMB-254 - Adjacencies dump support
Added mapping context between adjacency id(HC side)
and combination of remote and local eids(vpp side)
Change-Id: Icbba9130a82b7af51b23e6d6d68fcfbf49e66c99
Signed-off-by: Jan Srnicek <jsrnicek@cisco.com>
Diffstat (limited to 'lisp/api/src')
-rw-r--r-- | lisp/api/src/main/yang/adjacencies-identification-context.yang | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/lisp/api/src/main/yang/adjacencies-identification-context.yang b/lisp/api/src/main/yang/adjacencies-identification-context.yang new file mode 100644 index 000000000..ae05f83f5 --- /dev/null +++ b/lisp/api/src/main/yang/adjacencies-identification-context.yang @@ -0,0 +1,65 @@ +module adjacencies-identification-context { + yang-version 1; + namespace "urn:honeycomb:params:xml:ns:yang:adjacencies:identification:context"; + prefix "adjacencies-identification-context"; + + description + "This module contains mappings between adjacency identificator and actual unique combination of + remote and local eid in vpp"; + + revision "2016-08-01" { + description + "Initial revision."; + } + + import lisp {prefix "lisp";} + import ietf-lisp-address-types {prefix "lisp-types";} + import yang-ext {prefix "ext";} + import naming-context { prefix "nc";} + + grouping adjacencies-identification-context-attributes{ + + container adjacencies-identification-contexts { + + list adjacencies-identification { + + key "name"; + + leaf name { + type string; + } + + container mappings{ + list mapping { + + key "id"; + + leaf id { + type string; + description "Id that uniquely identifies adjacency"; + } + + container eid-identificator-pair{ + leaf local-eid-id { + type lisp:mapping-id; + description "Local EID identifier"; + mandatory true; + } + + leaf remote-eid-id { + type lisp:mapping-id; + description "Remote EID identifier"; + mandatory true; + } + } + } + } + } + } + } + + augment /nc:contexts { + ext:augment-identifier "adjacencies-identification-ctx-augmentation"; + uses adjacencies-identification-context-attributes; + } +}
\ No newline at end of file |