-
Notifications
You must be signed in to change notification settings - Fork 694
Expand file tree
/
Copy pathopenconfig-rib-bgp-tables.yang
More file actions
1765 lines (1438 loc) · 48 KB
/
openconfig-rib-bgp-tables.yang
File metadata and controls
1765 lines (1438 loc) · 48 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
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
submodule openconfig-rib-bgp-tables {
belongs-to openconfig-rib-bgp {
prefix "oc-rib-bgp";
}
// import some basic types
import openconfig-inet-types { prefix oc-inet; }
import openconfig-yang-types { prefix oc-yang; }
import openconfig-extensions { prefix oc-ext; }
import openconfig-policy-types { prefix oc-pol-types; }
import openconfig-network-instance-types { prefix oc-ni-types; }
import openconfig-evpn-types { prefix oc-evpn-types; }
import openconfig-bgp-types { prefix oc-bgpt; }
include openconfig-rib-bgp-attributes;
include openconfig-rib-bgp-shared-attributes;
include openconfig-rib-bgp-table-attributes;
// meta
organization "OpenConfig working group";
contact
"OpenConfig working group
www.openconfig.net";
description
"This submodule contains structural data definitions for
BGP routing tables.";
oc-ext:openconfig-version "0.10.0";
revision "2026-03-24" {
description
"Add BGP AIGP support.";
reference "0.10.0";
}
revision "2022-12-20" {
description
"Convert as-segment and as4-segment to keyed lists.";
reference "0.9.0";
}
revision "2022-06-06" {
description
"Revert IETF types in favor of oc-inet types";
reference "0.8.1";
}
revision "2021-06-21" {
description
"Add L2VPN-EVPN BGP RIB Support";
reference "0.8.0";
}
revision "2019-10-15" {
description
"Change imported segment-routing module.";
reference "0.7.0";
}
revision "2019-04-25" {
description
"Update last-modified timestamp to be expressed as nanoseconds
since the Unix epoch.";
reference "0.6.0";
}
revision "2019-04-16" {
description
"Rename the top-level BGP RIB container's name
to RIB.";
reference "0.5.0";
}
revision "2019-02-27" {
description
"Remove top-level BGP RIB container, and update list
names to be compatible with path compression.";
reference "0.4.0";
}
revision "2018-11-21" {
description
"Add OpenConfig module metadata extensions.";
reference "0.3.1";
}
revision "2016-10-17" {
description
"OpenConfig BGP RIB refactor";
reference "0.3.0";
}
grouping bgp-adj-rib-common-attr-refs {
description
"Definitions of common references to attribute sets for
multiple AFI-SAFIs for Adj-RIB tables";
leaf attr-index {
type leafref {
path "../../../../../../../../../../attr-sets/attr-set/" +
"state/index";
}
description
"Reference to the common attribute group for the
route";
}
leaf community-index {
type leafref {
path "../../../../../../../../../../communities/community/" +
"state/index";
}
description
"Reference to the community attribute for the route";
}
leaf ext-community-index {
type leafref {
path "../../../../../../../../../../ext-communities/" +
"ext-community/state/index";
}
description
"Reference to the extended community attribute for the
route";
}
}
grouping bgp-loc-rib-common-attr-refs {
description
"Definitions of common references to attribute sets for
multiple AFI-SAFIs for LOC-RIB tables";
leaf attr-index {
type leafref {
path "../../../../../../../../attr-sets/attr-set/" +
"state/index";
}
description
"Reference to the common attribute group for the
route";
}
leaf community-index {
type leafref {
path "../../../../../../../../communities/community/" +
"state/index";
}
description
"Reference to the community attribute for the route";
}
leaf ext-community-index {
type leafref {
path "../../../../../../../../ext-communities/" +
"ext-community/state/index";
}
description
"Reference to the extended community attribute for the
route";
}
}
grouping bgp-loc-rib-common-keys {
description
"Common references used in keys for IPv4 and IPv6
LOC-RIB entries";
leaf origin {
type union {
type oc-inet:ip-address;
type identityref {
base oc-pol-types:INSTALL_PROTOCOL_TYPE;
}
}
description
"Indicates the origin of the route. If the route is learned
from a neighbor, this value is the neighbor address. If
the route was injected or redistributed from another
protocol, the origin indicates the source protocol for the
route.";
}
leaf path-id {
type uint32;
default 0;
description
"If the route is learned from a neighbor, the path-id
corresponds to the path-id for the route in the
corresponding adj-rib-in-post table. If the route is
injected from another protocol, or the neighbor does not
support BGP add-paths, the path-id should be set
to zero, also the default value.";
}
}
grouping bgp-loc-rib-key-refs {
description
"Key references to support operational state structure for
the BGP LOC-RIB table";
leaf prefix {
type leafref {
path "../state/prefix";
}
description
"Reference to the prefix list key";
}
leaf origin {
type leafref {
path "../state/origin";
}
description
"Reference to the origin list key";
}
leaf path-id {
type leafref {
path "../state/path-id";
}
description
"Reference to the path-id list key";
}
}
grouping ipv4-loc-rib-top {
description
"Top-level grouping for IPv4 routing tables";
container loc-rib {
config false;
description
"Container for the IPv4 BGP LOC-RIB data";
uses bgp-common-table-attrs-top;
container routes {
description
"Enclosing container for list of routes in the routing
table.";
list route {
key "prefix origin path-id";
description
"List of routes in the table, keyed by the route
prefix, the route origin, and path-id. The route
origin can be either the neighbor address from which
the route was learned, or the source protocol that
injected the route. The path-id distinguishes routes
for the same prefix received from a neighbor (e.g.,
if add-paths is eanbled).";
uses bgp-loc-rib-key-refs;
container state {
description
"Operational state data for route entries in the
BGP LOC-RIB";
leaf prefix {
type oc-inet:ipv4-prefix;
description
"The IPv4 prefix corresponding to the route";
}
uses bgp-loc-rib-common-keys;
uses bgp-loc-rib-common-attr-refs;
uses bgp-loc-rib-attr-state;
uses bgp-common-route-annotations-state;
uses bgp-loc-rib-route-annotations-state;
}
uses bgp-unknown-attr-top;
}
}
}
}
grouping ipv6-loc-rib-top {
description
"Top-level grouping for IPv6 routing tables";
container loc-rib {
config false;
description
"Container for the IPv6 BGP LOC-RIB data";
uses bgp-common-table-attrs-top;
container routes {
description
"Enclosing container for list of routes in the routing
table.";
list route {
key "prefix origin path-id";
description
"List of routes in the table, keyed by the route
prefix, the route origin, and path-id. The route
origin can be either the neighbor address from which
the route was learned, or the source protocol that
injected the route. The path-id distinguishes routes
for the same prefix received from a neighbor (e.g.,
if add-paths is eanbled).";
uses bgp-loc-rib-key-refs;
container state {
description
"Operational state data for route entries in the
BGP LOC-RIB";
leaf prefix {
type oc-inet:ipv6-prefix;
description
"The IPv6 prefix corresponding to the route";
}
uses bgp-loc-rib-common-keys;
uses bgp-loc-rib-common-attr-refs;
uses bgp-loc-rib-attr-state;
uses bgp-common-route-annotations-state;
uses bgp-loc-rib-route-annotations-state;
}
uses bgp-unknown-attr-top;
}
}
}
}
grouping l2vpn-evpn-loc-rib-top {
description
"Top-level grouping for L2VPN EVPN routing tables";
container loc-rib {
config false;
description
"Container for the L2VPN EVPN BGP LOC-RIB data";
uses bgp-common-table-attrs-top;
container routes {
description
"Enclosing container for list of routes in the routing
table.";
list route-distinguisher {
description "List of route distinguishers";
key "route-distinguisher";
leaf route-distinguisher {
type leafref {
path "../state/route-distinguisher";
}
description
"An EVPN instance requires a Route Distinguisher (RD) that is
unique per MAC-VRF";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
container state {
description "Top level container for L2VPN EVPN RDs";
leaf route-distinguisher {
type oc-ni-types:route-distinguisher;
description
"Route Distinguisher for all supported EVPN route types";
}
}
uses bgp-evpn-type-one-state;
uses bgp-evpn-type-two-state;
uses bgp-evpn-type-three-state;
uses bgp-evpn-type-four-state;
uses bgp-evpn-type-five-state;
}
}
}
}
grouping bgp-loc-rib-l2vpn-evpn-attr-refs {
description
"Definitions of common references to attribute sets for
multiple AFI-SAFIs for LOC-RIB tables";
leaf attr-index {
type leafref {
path "../../../../../../../../../../../../attr-sets/attr-set/" +
"state/index";
}
description
"Reference to the common attribute group for the
route";
}
leaf community-index {
type leafref {
path "../../../../../../../../../../../../communities/community/" +
"state/index";
}
description
"Reference to the community attribute for the route";
}
leaf ext-community-index {
type leafref {
path "../../../../../../../../../../../../ext-communities/" +
"ext-community/state/index";
}
description
"Reference to the extended community attribute for the
route";
}
}
grouping bgp-evpn-route-path-common-state {
description
"Grouping for BGP L2VPN EVPN route-type common path state information";
container paths {
description "List of BGP path attributes for this route";
list path {
description "List of paths";
key "peer-ip peer-path-id source-route-distinguisher source-address-family";
uses bgp-evpn-route-path-lefref-common;
container state {
description "BGP path attributes for this route";
uses bgp-evpn-route-path-keys-common;
uses bgp-evpn-route-path-attributes-common;
}
uses bgp-unknown-attr-top;
}
}
}
grouping bgp-evpn-route-path-type2-state {
description
"Grouping for BGP L2VPN EVPN route-type path state information for
route type 2";
container paths {
description "List of BGP path attributes for this route";
list path {
description "List of paths";
key "peer-ip peer-path-id source-route-distinguisher source-address-family";
uses bgp-evpn-route-path-lefref-common;
container state {
description "BGP path attributes for this route";
uses bgp-evpn-route-path-keys-common;
leaf esi {
type oc-evpn-types:esi;
description
"The Ethernet Segment Identifier (ESI) identifying the ethernet
segment for this route";
}
uses bgp-evpn-route-path-attributes-common;
}
uses bgp-unknown-attr-top;
}
}
}
grouping bgp-evpn-route-path-type5-state {
description
"Grouping for BGP L2VPN EVPN route-type path state information for
route type 5";
container paths {
description "List of BGP path attributes for this route";
list path {
description "List of paths";
key "peer-ip peer-path-id source-route-distinguisher source-address-family";
uses bgp-evpn-route-path-lefref-common;
container state {
description "BGP path attributes for this route";
leaf esi {
type oc-evpn-types:esi;
description
"The Ethernet Segment Identifier (ESI) identifying the ethernet
segment for this route";
}
leaf gateway-ip-address {
type oc-inet:ip-prefix;
description
"The gateway-ip-address for the route";
}
uses bgp-evpn-route-path-keys-common;
uses bgp-evpn-route-path-attributes-common;
}
uses bgp-unknown-attr-top;
}
}
}
grouping bgp-evpn-route-path-lefref-common {
description "Common BGP L2VPN EVPN Path Leaf References";
leaf peer-ip {
type leafref {
path "../state/peer-ip";
}
description "The source peer ip address of the imported route";
}
leaf peer-path-id {
type leafref {
path "../state/peer-path-id";
}
description "The source peer path id of the imported route";
}
leaf source-route-distinguisher {
type leafref {
path "../state/source-route-distinguisher";
}
description
"The source route distinguisher is the remote RD source of the
imported route";
}
leaf source-address-family {
type leafref {
path "../state/source-address-family";
}
description "The source address-family of the imported route";
}
}
grouping bgp-evpn-route-path-keys-common {
description "Common BGP L2VPN EVPN Path Keys";
leaf peer-ip {
type oc-inet:ip-address;
description
"The source peer ip address of the imported route";
}
leaf peer-path-id {
type uint32;
description "The source peer path id of the imported route";
}
leaf source-route-distinguisher {
type oc-ni-types:route-distinguisher;
description
"The source route distinguisher is the remote RD source of the
imported route";
}
leaf source-address-family {
type identityref {
base oc-bgpt:AFI_SAFI_TYPE;
}
description "The source address-family of the imported route";
}
}
grouping bgp-evpn-route-path-attributes-common {
description "Common BGP L2VPN EVPN Path Attributes";
leaf-list advertised-to-peer {
type oc-inet:ip-address;
description "List of peers to which this path is advertised";
}
leaf label {
type string;
description
"MPLS Label field used for route attributes";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf label2 {
type string;
description "MPLS Label2 field used for route attributes";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf bestpath {
type boolean;
description
"BGP can receive multiple paths to the same destination. This
parameter indicates that this path is the bestpath to install
in the IP routing table and use for traffic forwarding";
}
leaf multipath {
type boolean;
description
"BGP can use multiple paths to reach a destination allowing
BGP to load-balance traffic. This parameter indicates that this
path is marked as multipath";
}
leaf backup {
type boolean;
description "BGP path marked as a backup path";
}
uses bgp-common-route-annotations-state;
uses bgp-loc-rib-l2vpn-evpn-attr-refs;
}
grouping bgp-evpn-type-one-key-refs {
description
"Key references to support operational state structure for
BGP EVPN Ethernet Auto-discovery routes.
For the purpose of BGP route key processing, only the Ethernet Segment
Identifier and Ethernet Tag ID are considered to be part of the prefix in
the NLRI";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
leaf esi {
type leafref {
path "../state/esi";
}
description
"The Ethernet Segment Identifier (ESI) is a unique non-zero
identifier that identifies an Ethernet segment";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf ethernet-tag {
type leafref {
path "../state/ethernet-tag";
}
description
"The Ethernet tag identifies a particular broadcast domain. An EVPN
instance consists of one or more broadcast domains";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
}
grouping bgp-evpn-type-one-state {
description "Grouping for BGP EVPN Ethernet Auto-discovery routes";
container type-one-ethernet-auto-discovery {
description "Top level container BGP EVPN Ethernet Auto-discovery routes";
list type-one-route {
key "esi ethernet-tag";
description
"List of BGP EVPN Ethernet Auto-discovery routes
For the purpose of BGP route key processing, only the Ethernet Segment
Identifier and Ethernet Tag ID are considered to be part of the prefix in
the NLRI";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
uses bgp-evpn-type-one-key-refs;
container state {
description
"Operational state data for BGP EVPN Ethernet Auto-discovery route
entries in the BGP LOC-RIB";
leaf esi {
type oc-evpn-types:esi;
description
"The Ethernet Segment Identifier (ESI) identifying the ethernet
segment for this route";
}
leaf ethernet-tag {
type oc-evpn-types:ethernet-tag;
description
"The Ethernet tag identifying the broadcast domain for this
route";
}
uses bgp-loc-rib-attr-state;
uses bgp-loc-rib-route-annotations-state;
}
uses bgp-evpn-route-path-common-state;
}
}
}
grouping bgp-evpn-type-two-key-refs {
description
"Key references to support operational state structure for
MAC_IP Advertisement routes.
For the purpose of BGP route key processing, only the Ethernet Tag ID,
MAC Address Length, MAC Address, IP Address Length, and IP Address fields
are considered to be part of the prefix in the NLRI";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
leaf ethernet-tag {
type leafref {
path "../state/ethernet-tag";
}
description
"The Ethernet tag identifies a particular broadcast domain. An EVPN
instance consists of one or more broadcast domains";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf mac-address {
type leafref {
path "../state/mac-address";
}
description
"The PEs forward packets that they receive based on the destination
MAC address";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf mac-length {
type leafref {
path "../state/mac-length";
}
description
"The MAC Address Length for the MAC address defined in mac-address";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf ip-prefix {
type leafref {
path "../state/ip-prefix";
}
description
"The IPv4 or IPv6 address carried in a MAC_IP Advertisement route";
}
leaf ip-length {
type leafref {
path "../state/ip-length";
}
description
"The IPv4 or IPv6 address prefix length for the address defined in
ip-prefix";
}
}
grouping bgp-evpn-type-two-state {
description "Grouping for MAC_IP Advertisement L2VPN EVPN routes";
container type-two-mac-ip-advertisement {
description
"Top level container for MAC_IP Advertisement L2VPN EVPN routes";
list type-two-route {
key "ethernet-tag mac-address mac-length ip-prefix ip-length";
description
"List of MAC_IP Advertisement L2VPN EVPN routes
For the purpose of BGP route key processing, only the Ethernet Tag ID,
MAC Address Length, MAC Address, IP Address Length, and IP Address fields
are considered to be part of the prefix in the NLRI";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
uses bgp-evpn-type-two-key-refs;
container state {
description
"Operational state data MAC_IP Advertisement L2VPN EVPN route
entries in the BGP LOC-RIB";
leaf ethernet-tag {
type oc-evpn-types:ethernet-tag;
description
"The Ethernet tag identifying the broadcast domain for this
route";
}
leaf mac-address {
type oc-yang:mac-address;
description
"The MAC address that is learned on a PE from a CE that is
connected to it or learned from other PEs";
}
leaf mac-length {
type uint32;
description
"The MAC address length for the mac-address";
}
leaf ip-prefix {
type oc-inet:ip-prefix;
description
"The IP address for end-host reachability information";
}
leaf ip-length {
type uint32;
description
"The ip-prefix length for the IP address specified by ip-prefix";
}
uses bgp-loc-rib-attr-state;
uses bgp-loc-rib-route-annotations-state;
}
uses bgp-evpn-route-path-type2-state;
}
}
}
grouping bgp-evpn-type-three-key-refs {
description
"Key references to support operational state structure for Inclusive
Multicast Ethernet Tag routes.
For the purpose of BGP route key processing, only the Ethernet Tag ID,
IP Address Length, and Originating Router's IP Address fields are
considered to be part of the prefix in the NLRI";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
leaf ethernet-tag {
type leafref {
path "../state/ethernet-tag";
}
description
"The Ethernet tag identifies a particular broadcast domain. An EVPN
instance consists of one or more broadcast domains";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf originating-router-ip {
type leafref {
path "../state/originating-router-ip";
}
description
"Reference to the originating-router-ip list key";
}
leaf originator-ip-length {
type leafref {
path "../state/originator-ip-length";
}
description
"Reference to the originating router ip length list key";
}
}
grouping bgp-evpn-type-three-state {
description
"Grouping for Inclusive Multicast Ethernet Tag L2VPN EVPN routes";
container type-three-inclusive-multicast-ethernet-tag {
description
"Top level container for Inclusive Multicast Ethernet Tag L2VPN EVPN
routes";
list type-three-route {
key "ethernet-tag originating-router-ip originator-ip-length";
description
"List of Inclusive Multicast Ethernet Tag L2VPN EVPN routes
For the purpose of BGP route key processing, only the Ethernet Tag ID,
IP Address Length, and Originating Router's IP Address fields are
considered to be part of the prefix in the NLRI";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
uses bgp-evpn-type-three-key-refs;
container state {
description
"Operational state data for Inclusive Multicast Ethernet Tag L2VPN
EVPN entries in the BGP LOC-RIB";
leaf ethernet-tag {
type oc-evpn-types:ethernet-tag;
description
"The Ethernet tag identifying the broadcast domain for this
route";
}
leaf originating-router-ip {
type oc-inet:ip-prefix;
description
"The Originating Router's IP Address";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf originator-ip-length {
type uint32;
description
"The ip-prefix length for the route";
}
uses bgp-loc-rib-attr-state;
uses bgp-loc-rib-route-annotations-state;
}
uses bgp-evpn-route-path-common-state;
}
}
}
grouping bgp-evpn-type-four-key-refs {
description
"Key references to support operational state structure for Ethernet
Segment routes.
For the purpose of BGP route key processing, only the Ethernet Segment ID,
IP Address Length, and Originating Router's IP Address fields are
considered to be part of the prefix in the NLRI";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
leaf esi {
type leafref {
path "../state/esi";
}
description
"The Ethernet Segment Identifier (ESI) is a unique non-zero
identifier that identifies an Ethernet segment";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
}
leaf originating-router-ip {
type leafref {
path "../state/originating-router-ip";
}
description
"Reference to the ip-prefix list key";
}
leaf originator-ip-length {
type leafref {
path "../state/originator-ip-length";
}
description
"Reference to the ip-length list key";
}
}
grouping bgp-evpn-type-four-state {
description "Grouping for Ethernet Segment L2VPN EVPN routes";
container type-four-ethernet-segment {
description "Top level container for Ethernet Segment L2VPN EVPN routes";
list type-four-route {
key "esi originating-router-ip originator-ip-length";
description
"List of Ethernet Segment L2VPN EVPN routes
For the purpose of BGP route key processing, only the Ethernet Segment ID,
IP Address Length, and Originating Router's IP Address fields are
considered to be part of the prefix in the NLRI";
reference "RFC7432: BGP MPLS-Based Ethernet VPN";
uses bgp-evpn-type-four-key-refs;
container state {
description
"Operational state data for Ethernet Segment L2VPN EVPN route
entries in the BGP LOC-RIB";
leaf esi {
type oc-evpn-types:esi;
description
"The Ethernet Segment Identifier (ESI) identifying the ethernet
segment for this route";
}
leaf originating-router-ip {
type oc-inet:ip-prefix;
description
"The originating router ip";
}
leaf originator-ip-length {
type uint32;
description
"The originating router ip length";
}