-
Notifications
You must be signed in to change notification settings - Fork 0
481 lines (472 loc) · 14.5 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
module ietf-actn-vn {
namespace "urn:ietf:params:xml:ns:yang:ietf-actn-vn";
prefix "vn";
/* Import network */
import ietf-network {
prefix "nw";
}
/* Import TE generic types */
import ietf-te-types {
prefix "te-types";
}
/* Import Abstract TE Topology */
import ietf-te-topology {
prefix "tet";
}
organization
"IETF Traffic Engineering Architecture and Signaling (TEAS)
Working Group";
contact
"Editor: Young Lee <[email protected]>
: Dhruv Dhody <[email protected]>";
description
"This module contains a YANG module for the ACTN VN. It
describes a VN operation module that takes place in the
context of the CNC-MDSC Interface (CMI) of the ACTN
architecture where the CNC is the actor of a VN Instantiation
/modification /deletion.";
revision 2018-01-10 {
description
"initial version.";
reference
"TBD";
}
/*
* Features
*/
feature multi-src-dest {
description
"Support for selection of one src or destination
among multiple.";
}
/*identity path-metric-delay {
base te-types:path-metric-type;
description
"delay path metric";
}
identity path-metric-delay-variation {
base te-types:path-metric-type;
description
"delay-variation path metric";
}
identity path-metric-loss {
base te-types:path-metric-type;
description
"loss path metric";
}*/
identity vn-state-type {
description
"Base identity for VN state";
}
identity vn-state-up {
base vn-state-type;
description "VN state up";
}
identity vn-state-down {
base vn-state-type;
description "VN state down";
}
identity vn-admin-state-type {
description
"Base identity for VN admin states";
}
identity vn-admin-state-up {
base vn-admin-state-type;
description "VN administratively state up";
}
identity vn-admin-state-down {
base vn-admin-state-type;
description "VN administratively state down";
}
identity vn-compute-state-type {
description
"Base identity for compute states";
}
identity vn-compute-state-computing {
base vn-compute-state-type;
description
"State path compute in progress";
}
identity vn-compute-state-computation-ok {
base vn-compute-state-type;
description
"State path compute successful";
}
identity vn-compute-state-computatione-failed {
base vn-compute-state-type;
description
"State path compute failed";
}
/*
* Groupings
*/
grouping vn-ap {
description
"VNAP related information";
leaf vn-ap-id {
type uint32;
description
"unique identifier for the referred
VNAP";
}
leaf vn {
type leafref {
path "/actn/vn/vn-list/vn-id";
}
description
"reference to the VN";
}
leaf ltp {
type te-types:te-tp-id;
description
"Reference LTP in the TE-topology";
}
}
grouping access-point{
description
"AP related information";
leaf access-point-id {
type uint32;
description
"unique identifier for the referred
access point";
}
leaf access-point-name {
type string;
description
"ap name";
}
leaf max-bandwidth {
type te-types:te-bandwidth;
description
"max bandwidth of the AP";
}
leaf avl-bandwidth {
type te-types:te-bandwidth;
description
"available bandwidth of the AP";
}
/*add details and any other properties of AP,
not associated by a VN
CE port, PE port etc.
*/
list vn-ap {
key vn-ap-id;
uses vn-ap;
description
"list of VNAP in this AP";
}
}//access-point
grouping vn-member {
description
"vn-member is described by this container";
leaf vn-member-id {
type uint32;
description
"vn-member identifier";
}
container src
{
description
"the source of VN Member";
leaf src {
type leafref {
path "/actn/ap/access-point-list/access-point-id";
}
description
"reference to source AP";
}
leaf src-vn-ap-id{
type leafref {
path "/actn/ap/access-point-list/vn-ap/vn-ap-id";
}
description
"reference to source VNAP";
}
leaf multi-src {
if-feature multi-src-dest;
type boolean;
description
"Is source part of multi-source, where
only one of the source is enabled";
}
}
container dest
{
description
"the destination of VN Member";
leaf dest {
type leafref {
path "/actn/ap/access-point-list/access-point-id";
}
description
"reference to destination AP";
}
leaf dest-vn-ap-id{
type leafref {
path "/actn/ap/access-point-list/vn-ap/vn-ap-id";
}
description
"reference to dest VNAP";
}
leaf multi-dest {
if-feature multi-src-dest;
type boolean;
description
"Is destination part of multi-destination, where
only one of the destination is enabled";
}
}
leaf connetivity-matrix-id{
type leafref {
path "/nw:networks/nw:network/nw:node/tet:te/"
+ "tet:te-node-attributes/tet:connectivity-matrices/tet:connectivity-matrix/tet:id";
}
description
"reference to connetivity-matrix";
}
}//vn-member
/*
grouping policy {
description
"policy related to vn-member-id";
leaf local-reroute {
type boolean;
description
"Policy to state if reroute
can be done locally";
}
leaf push-allowed {
type boolean;
description
"Policy to state if changes
can be pushed to the customer";
}
leaf incremental-update {
type boolean;
description
"Policy to allow only the
changes to be reported";
}
}//policy
*/
/*
grouping metrics-op {
description
"metric related information";
list metric{
key "metric-type";
config false;
description
"The list of metrics for VN";
leaf metric-type {
type identityref {
base te-types:path-metric-type;
}
description
"The VN metric type.";
}
leaf value{
type uint32;
description
"The limit value";
}
}
}
*/
/*
grouping metrics {
description
"metric related information";
list metric{
key "metric-type";
description
"The list of metrics for VN";
uses te:path-metrics-bounds_config;
container optimize{
description
"optimizing constraints";
leaf enabled{
type boolean;
description
"Metric to optimize";
}
leaf value{
type uint32;
description
"The computed value";
}
}
}
}
*/
/*
grouping service-metric {
description
"service-metric";
uses te:path-objective-function_config;
uses metrics;
uses te-types:common-constraints_config;
uses te:protection-restoration-params_config;
uses policy;
}//service-metric
*/
/*
* Configuration data nodes
*/
container actn {
description
"actn is described by this container";
container ap {
description
"AP configurations";
list access-point-list {
key "access-point-id";
description
"access-point identifier";
uses access-point{
description
"access-point information";
}
}
}
container vn {
description
"VN configurations";
list vn-list {
key "vn-id";
description
"a virtual network is identified by a vn-id";
leaf vn-id {
type uint32;
description
"a unique vn identifier";
}
leaf vn-name {
type string;
description "vn name";
}
leaf vn-topology-id{
type te-types:te-topology-id;
description
"An optional identifier to the TE Topology
Model where the abstract nodes and links
of the Topology can be found for Type 2
VNS";
}
leaf abstract-node {
type leafref {
path "/nw:networks/nw:network/nw:node/"
+ "nw:node-id";
}
description
"a reference to the abstract node in TE
Topology";
}
list vn-member-list{
key "vn-member-id";
description
"List of VN-members in a VN";
uses vn-member;
/*uses metrics-op;*/
leaf oper-status {
type identityref {
base vn-state-type;
}
config false;
description
"VN-member operational state.";
}
}
container multi-src-dest{
if-feature multi-src-dest;
config false;
description
"The selected VN Member when multi-src
and/or mult-destination is enabled.";
leaf selected-vn-member{
type leafref {
path "/actn/vn/vn-list/vn-member-list/vn-member-id";
}
description
"The selected VN Member along the set
of source and destination configured
with multi-source and/or multi-destination";
}
}
/*uses service-metric;*/
leaf admin-status {
type identityref {
base vn-admin-state-type;
}
default vn-admin-state-up;
description "VN administrative state.";
}
leaf oper-status {
type identityref {
base vn-state-type;
}
config false;
description "VN operational state.";
}
}//vn-list
}//vn
}//actn
/*
* Notifications - TBD
*/
/*
* RPC
*/
rpc vn-compute{
description
"The VN computation without actual
instantiation";
input {
leaf abstract-node {
type leafref {
path "/nw:networks/nw:network/nw:node/"
+ "nw:node-id";
}
description
"a reference to the abstract node in TE
Topology";
}
list vn-member-list{
key "vn-member-id";
description
"List of VN-members in a VN";
uses vn-member;
}
/*uses service-metric;*/
}
output {
list vn-member-list{
key "vn-member-id";
description
"List of VN-members in a VN";
uses vn-member;
/*uses metrics-op;*/
leaf compute-status {
type identityref {
base vn-compute-state-type;
}
description
"VN-member compute state.";
}
}
container multi-src-dest{
if-feature multi-src-dest;
description
"The selected VN Member when multi-src
and/or mult-destination is enabled.";
leaf selected-vn-member-id{
type uint32;
description
"The selected VN Member-id from the
input";
}
}
}
}
}