blob: 47d5147ea4f62dfe8ff13797b576fccd608c91c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
module gpe-entry-identification-context {
yang-version 1;
namespace "http://fd.io/hc2vpp/yang/gpe-entry-identification-context";
prefix "gpe-entry-identification-context";
import ietf-lisp-address-types {prefix "lisp-types";}
import yang-ext {prefix "ext";}
import naming-context { prefix "nc";}
description
"This module contains mappings between gpe entry identificator and actual unique combination of
remote/local eid and vni in vpp";
revision "2017-05-17" {
description
"Initial revision.";
}
grouping gpe-entry-identification-context-attributes{
container gpe-entry-identification-contexts {
list gpe-entry-identification {
key "name";
leaf name {
type string;
}
container mappings{
list mapping {
key "id";
leaf id {
type string;
description "Id that uniquely identifies gpe entry";
}
container gpe-entry-identificator{
// these three attributes allow to identificated gpe entry
container local-eid {
uses lisp-types:lisp-address;
description "Local EID that must be a local address";
}
container remote-eid {
uses lisp-types:lisp-address;
description "Remote EID";
}
leaf vni {
type uint32;
mandatory true;
description "Virtual Network Identifier";
}
}
}
}
}
}
}
augment /nc:contexts {
ext:augment-identifier "gpe-entry-identification-ctx-augmentation";
uses gpe-entry-identification-context-attributes;
}
}
|