-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyang_map.yml
9269 lines (9269 loc) · 477 KB
/
yang_map.yml
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
modules:
srl_nokia-aaa:
augmented_by: []
augments:
- node: /srl-system:system
imports:
- module: srl_nokia-aaa-types
prefix: srl-aaa-types
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-extensions
prefix: srl-ext
- module: srl_nokia-network-instance
prefix: srl-netinst
- module: srl_nokia-features
prefix: srl-feat
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-aaa-tacacs
prefix: srl-aaa-tacacs
- module: srl_nokia-aaa-password
prefix: srl-aaa-password
- module: srl_nokia-aaa-radius
prefix: srl-aaa-radius
- module: srl_nokia-gnsi-credentialz
prefix: srl-gnsi-credentialz
name: srl_nokia-aaa
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa.yang
prefix:
current: srl-aaa
target: srl-aaa
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa.yang
srl_nokia-aaa-password:
augmented_by: []
augments: []
imports: []
name: srl_nokia-aaa-password
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-password.yang
prefix:
current: srl-aaa-password
target: srl-aaa-password
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-password.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-password.yang
srl_nokia-aaa-radius:
augmented_by: []
augments: []
imports:
- module: srl_nokia-aaa-types
prefix: srl-aaa-types
- module: srl_nokia-features
prefix: srl-feat
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-extensions
prefix: srl-ext
name: srl_nokia-aaa-radius
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-radius.yang
prefix:
current: srl-aaa-radius
target: srl-aaa-radius
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-radius.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-radius.yang
srl_nokia-aaa-tacacs:
augmented_by: []
augments: []
imports:
- module: srl_nokia-aaa-types
prefix: srl-aaa-types
- module: srl_nokia-features
prefix: srl-feat
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-extensions
prefix: srl-ext
name: srl_nokia-aaa-tacacs
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-tacacs.yang
prefix:
current: srl-aaa-tacacs
target: srl-aaa-tacacs
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-tacacs.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-tacacs.yang
srl_nokia-aaa-types:
augmented_by: []
augments: []
imports: []
name: srl_nokia-aaa-types
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-types.yang
prefix:
current: srl-aaa-types
target: srl-aaa-types
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-types.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-aaa-types.yang
srl_nokia-acl:
augmented_by: []
augments:
- node: /srl_nokia-system:system/srl_nokia-system:control-plane-traffic/srl_nokia-system:input
imports:
- module: srl_nokia-packet-match-types
prefix: srl_nokia-pkt-match-types
- module: srl_nokia-interfaces
prefix: srl_nokia-if
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-features
prefix: srl_nokia-feat
- module: srl_nokia-qos
prefix: srl_nokia-qos
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-system
prefix: srl_nokia-system
name: srl_nokia-acl
path: /srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl.yang
prefix:
current: srl_nokia-acl
target: srl-acl
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl.yang
srl_nokia-acl-policers:
augmented_by: []
augments:
- node: /srl_nokia-qos:qos
- node: /srl_nokia-qos:qos/srl_nokia-qos:interfaces/srl_nokia-qos:interface/srl_nokia-qos:input
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-features
prefix: srl_nokia-feat
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-interfaces
prefix: srl_nokia-if
- module: srl_nokia-qos
prefix: srl_nokia-qos
- module: srl_nokia-qos-policers
prefix: srl_nokia-qos-policers
name: srl_nokia-acl-policers
path: /srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl-policers.yang
prefix:
current: srl_nokia-acl-policers
target: srl-acl-policers
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl-policers.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl-policers.yang
srl_nokia-acl-qos:
augmented_by: []
augments:
- node: /srl_nokia-qos:qos/srl_nokia-qos:classifiers
- node: /srl_nokia-qos:qos/srl_nokia-qos:interfaces/srl_nokia-qos:interface/srl_nokia-qos:input/srl_nokia-qos:classifiers
imports:
- module: srl_nokia-acl
prefix: srl_nokia-acl
- module: srl_nokia-qos
prefix: srl_nokia-qos
- module: srl_nokia-interfaces
prefix: srl_nokia-if
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-features
prefix: srl_nokia-feat
name: srl_nokia-acl-qos
path: /srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl-qos.yang
prefix:
current: srl_nokia-acl-qos
target: srl-acl-qos
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl-qos.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/acl/srl_nokia-acl-qos.yang
srl_nokia-aft:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-interfaces
prefix: srl_nokia-if
- module: srl_nokia-features
prefix: srl-feat
- module: srl_nokia-ip-route-tables
prefix: srl_nokia-rt
name: srl_nokia-aft
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-aft.yang
prefix:
current: srl_nokia-aft
target: srl-aft
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-aft.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-aft.yang
srl_nokia-aggregate-routes:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-policy-types
prefix: srl_nokia-pol-types
name: srl_nokia-aggregate-routes
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-aggregate-routes.yang
prefix:
current: srl_nokia-aggregate-routes
target: srl-aggregate-routes
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-aggregate-routes.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-aggregate-routes.yang
srl_nokia-app-mgmt:
augmented_by: []
augments:
- node: /srl-system:system
imports:
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-extensions
prefix: srl-ext
- module: srl_nokia-common
prefix: srl-comm
name: srl_nokia-app-mgmt
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-app-mgmt.yang
prefix:
current: srl_nokia-app-mgmt
target: srl-app-mgmt
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-app-mgmt.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-app-mgmt.yang
srl_nokia-bfd:
augmented_by:
- srl_nokia-micro-bfd
augments: []
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-features
prefix: srl_nokia-feat
- module: srl_nokia-interfaces
prefix: srl_nokia-if
- module: srl_nokia-te-policies
prefix: srl_nokia-te-policies
name: srl_nokia-bfd
path: /srlinux-yang-models/srl_nokia/models/bfd/srl_nokia-bfd.yang
prefix:
current: srl_nokia-bfd
target: srl-bfd
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana --deviation-module ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/bfd/srl_nokia-micro-bfd.yang ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/bfd/srl_nokia-bfd.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/bfd/srl_nokia-bfd.yang -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/bfd/srl_nokia-micro-bfd.yang
srl_nokia-bgp:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:protocols
- node: /srl_nokia-system:system/srl_nokia-system-protocols:protocols
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-segment-routing
prefix: srl_nokia-sr
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-routing-policy
prefix: srl-rpol
- module: srl_nokia-system
prefix: srl_nokia-system
- module: srl_nokia-mpls-label-management
prefix: srl_nokia-mplslbl
- module: srl_nokia-system-protocols
prefix: srl_nokia-system-protocols
- module: srl_nokia-keychains
prefix: srl-keychain
- module: srl_nokia-features
prefix: srl_nokia-feat
name: srl_nokia-bgp
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp.yang
prefix:
current: srl_nokia-bgp
target: srl-bgp
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp.yang
srl_nokia-bgp-evpn:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:protocols/srl_nokia-netinst:bgp-evpn
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-bgp-vpn
prefix: srl_bgp-vpn
- module: srl_nokia-bgp
prefix: srl-bgp
- module: srl_nokia-routing-policy
prefix: srl_nokia-routing-pol
- module: srl_nokia-features
prefix: srl_nokia-feat
name: srl_nokia-bgp-evpn
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn.yang
prefix:
current: srl_nokia-bgp-evpn
target: srl-bgp-evpn
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn.yang
srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-multicast-destinations:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:protocols/srl_nokia-netinst:bgp-evpn/srl_bgp-evpn:bgp-instance/srl_bgp-evpn:mpls/srl_bgp-evpn:bridge-table
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-bgp-evpn
prefix: srl_bgp-evpn
name: srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-multicast-destinations
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-multicast-destinations.yang
prefix:
current: srl_nokia-bgp-evpn-bgp-instance-mpls-bt-multicast-destinations
target: srl-bgp-evpn-bgp-instance-mpls-bridge-table-multicast-destinations
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-multicast-destinations.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-multicast-destinations.yang
srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-statistics:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:protocols/srl_nokia-netinst:bgp-evpn/srl_bgp-evpn:bgp-instance/srl_bgp-evpn:mpls/srl_bgp-evpn:bridge-table
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-bgp-evpn
prefix: srl_bgp-evpn
name: srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-statistics
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-statistics.yang
prefix:
current: srl_nokia-bgp-evpn-bgp-instance-mpls-bt-statistics
target: srl-bgp-evpn-bgp-instance-mpls-bridge-table-statistics
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-statistics.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-statistics.yang
srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-unicast-destinations:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:protocols/srl_nokia-netinst:bgp-evpn/srl_bgp-evpn:bgp-instance/srl_bgp-evpn:mpls/srl_bgp-evpn:bridge-table
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-bgp-evpn
prefix: srl_bgp-evpn
name: srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-unicast-destinations
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-unicast-destinations.yang
prefix:
current: srl_nokia-bgp-evpn-bgp-instance-mpls-bt-unicast-destinations
target: srl-bgp-evpn-bgp-instance-mpls-bridge-table-unicast-destinations
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-unicast-destinations.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-mpls-bridge-table-unicast-destinations.yang
srl_nokia-bgp-evpn-bgp-instance-vpws-destinations-remote-ac:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:protocols/srl_nokia-netinst:bgp-evpn/srl_bgp-evpn:bgp-instance/srl_bgp-evpn:vpws-attachment-circuits/srl_bgp-evpn:remote/srl_bgp-evpn:remote-attachment-circuit
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-bgp-evpn
prefix: srl_bgp-evpn
name: srl_nokia-bgp-evpn-bgp-instance-vpws-destinations-remote-ac
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-vpws-destinations-remote-ac.yang
prefix:
current: srl_nokia-bgp-evpn-bgp-instance-vpws-destinations-remote-ac
target: srl-bgp-evpn-bgp-instance-vpws-destinations-remote-ac
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-vpws-destinations-remote-ac.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-evpn-bgp-instance-vpws-destinations-remote-ac.yang
srl_nokia-bgp-ipvpn:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:protocols/srl_nokia-netinst:bgp-ipvpn
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-bgp-vpn
prefix: srl_bgp-vpn
- module: srl_nokia-bgp
prefix: srl-bgp
- module: srl_nokia-routing-policy
prefix: srl_nokia-routing-pol
- module: srl_nokia-features
prefix: srl-feat
name: srl_nokia-bgp-ipvpn
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-ipvpn.yang
prefix:
current: srl_nokia-bgp-ipvpn
target: srl-bgp-ipvpn
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-ipvpn.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-ipvpn.yang
srl_nokia-bgp-vpn:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:protocols
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-features
prefix: srl_nokia-feat
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-bgp
prefix: srl-bgp
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-policy-types
prefix: srl_nokia-pol-types
name: srl_nokia-bgp-vpn
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-vpn.yang
prefix:
current: srl_nokia-bgp-vpn
target: srl-bgp-vpn
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-vpn.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bgp-vpn.yang
srl_nokia-boot:
augmented_by: []
augments:
- node: /srl-system:system
imports:
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-interfaces
prefix: srl-if
- module: srl_nokia-features
prefix: srl_nokia-feat
name: srl_nokia-boot
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-boot.yang
prefix:
current: srl-boot
target: srl-boot
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-boot.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-boot.yang
srl_nokia-bridge-table:
augmented_by: []
augments: []
imports:
- module: srl_nokia-features
prefix: srl-feat
name: srl_nokia-bridge-table
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table.yang
prefix:
current: srl_nokia-bridge-table
target: srl-bridge-table
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table.yang
srl_nokia-bridge-table-mac-duplication:
augmented_by: []
augments: []
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
name: srl_nokia-bridge-table-mac-duplication
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-duplication.yang
prefix:
current: srl_nokia-bridge-table-mac-duplication
target: srl-bridge-table-mac-duplication
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-duplication.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-duplication.yang
srl_nokia-bridge-table-mac-duplication-entries:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:bridge-table/srl_nokia-netinst:mac-duplication
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
name: srl_nokia-bridge-table-mac-duplication-entries
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-duplication-entries.yang
prefix:
current: srl_nokia-bridge-table-mac-duplication-entries
target: srl-bridge-table-mac-duplication-entries
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-duplication-entries.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-duplication-entries.yang
srl_nokia-bridge-table-mac-learning:
augmented_by: []
augments: []
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
name: srl_nokia-bridge-table-mac-learning
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-learning.yang
prefix:
current: srl_nokia-bridge-table-mac-learning
target: srl-bridge-table-mac-learning
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-learning.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-learning.yang
srl_nokia-bridge-table-mac-learning-entries:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:bridge-table/srl_nokia-netinst:mac-learning
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
name: srl_nokia-bridge-table-mac-learning-entries
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-learning-entries.yang
prefix:
current: srl_nokia-bridge-table-mac-learning-entries
target: srl-bridge-table-mac-learning-entries
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-learning-entries.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-learning-entries.yang
srl_nokia-bridge-table-mac-limit:
augmented_by: []
augments: []
imports: []
name: srl_nokia-bridge-table-mac-limit
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-limit.yang
prefix:
current: srl_nokia-bridge-table-mac-limit
target: srl-bridge-table-mac-limit
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-limit.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-limit.yang
srl_nokia-bridge-table-mac-table:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:bridge-table
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-extensions
prefix: srl_nokia-ext
name: srl_nokia-bridge-table-mac-table
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-table.yang
prefix:
current: srl_nokia-bridge-table-mac-table
target: srl-bridge-table-mac-table
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-table.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-mac-table.yang
srl_nokia-bridge-table-proxy-arp-nd:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:bridge-table
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-features
prefix: srl-feat
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-routing-policy
prefix: srl_nokia-routing-pol
name: srl_nokia-bridge-table-proxy-arp-nd
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-proxy-arp-nd.yang
prefix:
current: srl_nokia-bridge-table-proxy-arp-nd
target: srl-bridge-table-proxy-arp-nd
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-proxy-arp-nd.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-proxy-arp-nd.yang
srl_nokia-bridge-table-reserved-macs:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:bridge-table
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
name: srl_nokia-bridge-table-reserved-macs
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-reserved-macs.yang
prefix:
current: srl_nokia-bridge-table-reserved-macs
target: srl-bridge-table-reserved-macs
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-reserved-macs.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-reserved-macs.yang
srl_nokia-bridge-table-shg:
augmented_by: []
augments: []
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-features
prefix: srl-feat
name: srl_nokia-bridge-table-shg
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-shg.yang
prefix:
current: srl_nokia-bridge-table-shg
target: srl-bridge-table-shg
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-shg.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-shg.yang
srl_nokia-bridge-table-static-mac:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:bridge-table
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
name: srl_nokia-bridge-table-static-mac
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-static-mac.yang
prefix:
current: srl_nokia-bridge-table-static-mac
target: srl-bridge-table-static-mac
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-static-mac.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-bridge-table-static-mac.yang
srl_nokia-common:
augmented_by: []
augments: []
imports:
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-features
prefix: srl-feat
name: srl_nokia-common
path: /srlinux-yang-models/srl_nokia/models/common/srl_nokia-common.yang
prefix:
current: srl_nokia-comm
target: srl-common
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/common/srl_nokia-common.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/common/srl_nokia-common.yang
srl_nokia-configuration:
augmented_by: []
augments:
- node: /srl-system:system
imports:
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-extensions
prefix: srl-ext
- module: srl_nokia-features
prefix: srl-feat
- module: srl_nokia-gnsi-pathz
prefix: srl-gnsi-pathz
name: srl_nokia-configuration
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-configuration.yang
prefix:
current: srl-config
target: srl-configuration
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-configuration.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-configuration.yang
srl_nokia-configuration-role:
augmented_by: []
augments:
- node: /srl-system:system/srl-configuration:configuration
imports:
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-configuration
prefix: srl-configuration
- module: srl_nokia-extensions
prefix: srl-ext
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-aaa
prefix: srl-aaa
name: srl_nokia-configuration-role
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-configuration-role.yang
prefix:
current: srl_nokia-configuration-role
target: srl-configuration-role
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-configuration-role.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-configuration-role.yang
srl_nokia-connection-point-bridge-table-mac-duplication-entries:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:connection-point/srl_nokia-netinst:bridge-table/srl_nokia-netinst:mac-duplication
imports:
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-interfaces-bridge-table-mac-duplication-entries
prefix: srl_nokia-interfaces-bridge-table-mac-duplication-entries
name: srl_nokia-connection-point-bridge-table-mac-duplication-entries
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-duplication-entries.yang
prefix:
current: srl_nokia-connection-point-bridge-table-mac-duplication-entries
target: srl-connection-point-bridge-table-mac-duplication-entries
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-duplication-entries.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-duplication-entries.yang
srl_nokia-connection-point-bridge-table-mac-learning-entries:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:connection-point/srl_nokia-netinst:bridge-table/srl_nokia-netinst:mac-learning
imports:
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-interfaces-bridge-table-mac-learning-entries
prefix: srl_nokia-interfaces-bridge-table-mac-learning-entries
name: srl_nokia-connection-point-bridge-table-mac-learning-entries
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-learning-entries.yang
prefix:
current: srl_nokia-connection-point-bridge-table-mac-learning-entries
target: srl-connection-point-bridge-table-mac-learning-entries
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-learning-entries.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-learning-entries.yang
srl_nokia-connection-point-bridge-table-mac-table:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:connection-point/srl_nokia-netinst:bridge-table
imports:
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-interfaces-bridge-table-mac-table
prefix: srl_nokia-interfaces-bridge-table-mac-table
name: srl_nokia-connection-point-bridge-table-mac-table
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-table.yang
prefix:
current: srl_nokia-connection-point-bridge-table-mac-table
target: srl-connection-point-bridge-table-mac-table
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-table.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-mac-table.yang
srl_nokia-connection-point-bridge-table-statistics:
augmented_by: []
augments:
- node: /srl_nokia-netinst:network-instance/srl_nokia-netinst:connection-point/srl_nokia-netinst:bridge-table
imports:
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-interfaces-bridge-table-statistics
prefix: srl_nokia-interfaces-bridge-table-statistics
name: srl_nokia-connection-point-bridge-table-statistics
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-statistics.yang
prefix:
current: srl_nokia-connection-point-bridge-table-statistics
target: srl-connection-point-bridge-table-statistics
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-statistics.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-bridge-table-statistics.yang
srl_nokia-connection-point-pseudowires:
augmented_by: []
augments: []
imports:
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-features
prefix: srl-feat
- module: srl_nokia-tunnel
prefix: srl_nokia-tunnel
- module: srl_nokia-pw-tunnel
prefix: srl_nokia-pw-tunnel
name: srl_nokia-connection-point-pseudowires
path: /srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-pseudowires.yang
prefix:
current: srl_nokia-connection-point-pseudowires
target: srl-connection-point-pseudowires
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-pseudowires.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/network-instance/srl_nokia-connection-point-pseudowires.yang
srl_nokia-dhcp-server:
augmented_by: []
augments:
- node: /srl-system:system
imports:
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-network-instance
prefix: srl-netinst
- module: srl_nokia-extensions
prefix: srl-ext
- module: srl_nokia-features
prefix: srl_nokia-feat
name: srl_nokia-dhcp-server
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-dhcp-server.yang
prefix:
current: srl-dhcp-server
target: srl-dhcp-server
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-dhcp-server.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-dhcp-server.yang
srl_nokia-dns:
augmented_by: []
augments:
- node: /srl-system:system
imports:
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-network-instance
prefix: srl-netinst
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-features
prefix: srl_nokia-feat
name: srl_nokia-dns
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-dns.yang
prefix:
current: srl_nokia-dns
target: srl-dns
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-dns.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-dns.yang
srl_nokia-dot1x:
augmented_by: []
augments:
- node: /srl_nokia-if:interface/srl_nokia-if:ethernet
- node: /srl_nokia-system:system
imports:
- module: srl_nokia-interfaces
prefix: srl_nokia-if
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-features
prefix: srl_nokia-feat
- module: srl_nokia-system
prefix: srl_nokia-system
name: srl_nokia-dot1x
path: /srlinux-yang-models/srl_nokia/models/transport-security/srl_nokia-dot1x.yang
prefix:
current: srl_nokia-dot1x
target: srl-dot1x
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/transport-security/srl_nokia-dot1x.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/transport-security/srl_nokia-dot1x.yang
srl_nokia-ethcfm:
augmented_by: []
augments:
- node: /srl_nokia-oam:oam
- node: /srl_nokia-if:interface/srl_nokia-if:subinterface
imports:
- module: srl_nokia-features
prefix: srl_nokia-feat
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-ethcfm-types
prefix: srl_nokia-ethcfm-types
- module: srl_nokia-extensions
prefix: srl_nokia-ext
- module: srl_nokia-interfaces
prefix: srl_nokia-if
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-oam
prefix: srl_nokia-oam
name: srl_nokia-ethcfm
path: /srlinux-yang-models/srl_nokia/models/ethcfm/srl_nokia-ethcfm.yang
prefix:
current: srl_nokia-ethcfm
target: srl-ethcfm
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/ethcfm/srl_nokia-ethcfm.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/ethcfm/srl_nokia-ethcfm.yang
srl_nokia-ethcfm-types:
augmented_by: []
augments: []
imports:
- module: srl_nokia-features
prefix: srl_nokia-feat
name: srl_nokia-ethcfm-types
path: /srlinux-yang-models/srl_nokia/models/ethcfm/srl_nokia-ethcfm-types.yang
prefix:
current: srl_nokia-ethcfm-types
target: srl-ethcfm-types
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/ethcfm/srl_nokia-ethcfm-types.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/ethcfm/srl_nokia-ethcfm-types.yang
srl_nokia-event-handler:
augmented_by: []
augments:
- node: /srl-system:system
imports:
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-aaa
prefix: srl-aaa
- module: srl_nokia-extensions
prefix: srl-ext
- module: srl_nokia-features
prefix: srl-feat
name: srl_nokia-event-handler
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-event-handler.yang
prefix:
current: srl-event-handler
target: srl-event-handler
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-event-handler.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-event-handler.yang
srl_nokia-extensions:
augmented_by: []
augments: []
imports: []
name: srl_nokia-extensions
path: /srlinux-yang-models/srl_nokia/models/common/srl_nokia-extensions.yang
prefix:
current: srl_nokia-ext
target: srl-extensions
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/common/srl_nokia-extensions.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/common/srl_nokia-extensions.yang
srl_nokia-features:
augmented_by: []
augments: []
imports: []
name: srl_nokia-features
path: /srlinux-yang-models/srl_nokia/models/common/srl_nokia-features.yang
prefix:
current: srl_nokia-feat
target: srl-features
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/common/srl_nokia-features.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/common/srl_nokia-features.yang
srl_nokia-ftp:
augmented_by: []
augments:
- node: /srl-system:system
imports:
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-network-instance
prefix: srl_nokia-netinst
- module: srl_nokia-common
prefix: srl_nokia-comm
- module: srl_nokia-features
prefix: srl_nokia-feat
name: srl_nokia-ftp
path: /srlinux-yang-models/srl_nokia/models/system/srl_nokia-ftp.yang
prefix:
current: srl_nokia-ftp
target: srl-ftp
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-ftp.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/system/srl_nokia-ftp.yang
srl_nokia-gnmi:
augmented_by: []
augments: []
imports:
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-extensions
prefix: srl-ext
name: srl_nokia-gnmi
path: /srlinux-yang-models/srl_nokia/models/grpc/srl_nokia-gnmi.yang
prefix:
current: srl-gnmi
target: srl-gnmi
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/grpc/srl_nokia-gnmi.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/grpc/srl_nokia-gnmi.yang
srl_nokia-gnsi-authz:
augmented_by: []
augments:
- node: /srl-system:system/srl-aaa:aaa/srl-aaa:authorization
imports:
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-aaa
prefix: srl-aaa
- module: srl_nokia-extensions
prefix: srl-ext
- module: srl_nokia-features
prefix: srl-feat
name: srl_nokia-gnsi-authz
path: /srlinux-yang-models/srl_nokia/models/grpc/srl_nokia-gnsi-authz.yang
prefix:
current: srl-gnsi-authz
target: srl-gnsi-authz
tree_cmd: pyang -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/grpc/srl_nokia-gnsi-authz.yang
yl_cmd: yanglint -f tree -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/ietf -p ${SRL_YANG_REPO_DIR}/srlinux-yang-models/iana -i ${SRL_YANG_REPO_DIR}/srlinux-yang-models/srl_nokia/models/grpc/srl_nokia-gnsi-authz.yang
srl_nokia-gnsi-certz:
augmented_by: []
augments:
- node: /srl-system:system/srl-tls:tls/srl-tls:server-profile
imports:
- module: srl_nokia-common
prefix: srl-comm
- module: srl_nokia-system
prefix: srl-system
- module: srl_nokia-tls
prefix: srl-tls