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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
|
MPLS-MLDP-STD-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Unsigned32, Counter32, Counter64, TimeTicks
FROM SNMPv2-SMI -- RFC 2578
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF -- RFC 2580
TruthValue, RowStatus, StorageType, TimeStamp
FROM SNMPv2-TC -- RFC 2579
InterfaceIndex
FROM IF-MIB -- [RFC2020]
mplsStdMIB, MplsLdpIdentifier
FROM MPLS-TC-STD-MIB -- RFC 3811
MplsIndexType
FROM MPLS-LSR-STD-MIB -- RFC 3813
IndexInteger, IndexIntegerNextFree
FROM DIFFSERV-MIB -- RFC 3289
InetAddress, InetAddressType
FROM INET-ADDRESS-MIB -- RFC 4001
mplsLdpStdMIB, mplsLdpEntityLdpId, mplsLdpEntityIndex, mplsLdpPeerLdpId, mplsLdpSessionStatsEntry
FROM MPLS-LDP-STD-MIB -- RFC 3815
jnxMldpExperiment -- *** JNX
FROM JUNIPER-EXPERIMENT-MIB -- *** JNX
;
mplsMldpStdMIB MODULE-IDENTITY
LAST-UPDATED "201609260000Z" -- September 26, 2016
ORGANIZATION "Multiprotocol Label Switching (mpls)
Working Group"
CONTACT-INFO
" Kishore Tiruveedhula
Juniper Networks
Email: kishoret@juniper.net
Uwe Joorde
Deutsche Telekom
Email: Uwe.Joorde@telekom.de
Arvind Venkateswaran
Cisco Systems
EMail: arvvenka@cisco.com
Comments about this document should be emailed
directly to the MPLS working group mailing list at
mpls@lists.ietf.org"
DESCRIPTION
"Copyright (c) 2009 IETF Trust and the persons identified as
the document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's
Legal Provisions Relating to IETF Documents in effect on the
date of publication of this document
(http://trustee.ietf.org/license-info). Please review these
documents carefully, as they describe your rights and
restrictions with respect to this document.
The initial version of this MIB module was published in
RFC XXXX. For full legal notices see the RFC itself or see:
http://www.ietf.org/copyrights/ianamib.html
-- RFC Editor. Please replace XXXX with the RFC number for this
-- document and remove this note.
This MIB module contains managed object definitions for mLDP LSPS
defined in Label Distribution Protocol Extensions Point-to-Multipoint and
Multipoint-to-Multipoint Label Switched Paths, RFC 6388, November
2011."
REVISION "201609260000Z" -- September 26, 2016
DESCRIPTION
"Initial version issued as part of RFC XXXX."
-- RFC Editor. Please replace XXXX with the RFC number for this
-- document and remove this note.
-- ::= { mplsStdMIB YYY }
::= { jnxMldpExperiment 1 }
-- RFC Editor. Please replace YYY with the codepoint issued by IANA
-- and remove this note.
-- Top level components of this MIB module.
-- notifications
mplsMldpNotifications OBJECT IDENTIFIER ::= { mplsMldpStdMIB 0 }
-- tables, scalars
mplsMldpScalars OBJECT IDENTIFIER ::= { mplsMldpStdMIB 1 }
mplsMldpObjects OBJECT IDENTIFIER ::= { mplsMldpStdMIB 2 }
-- MPLS mLDP LSP scalars.
mplsMldpP2mpCapable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the P2MP capability of the LSR."
REFERENCE
"Section 2.1 of [RFC6388]."
::= { mplsMldpScalars 1 }
mplsMldpMp2mpCapable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides MP2MP capability of the LSR."
REFERENCE
"Section 3.1 of [RFC6388]."
::= { mplsMldpScalars 2 }
mplsMldpMbbCapable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides MBB (make before break) capability of the LSR."
REFERENCE
"Section 8.3 of [RFC6388]."
::= { mplsMldpScalars 3 }
mplsMldpMbbTime OBJECT-TYPE
SYNTAX Unsigned32 (1..300)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 32-bit unsigned integer value provides the time for waiting MBB Ack
from upstream node."
DEFVAL { 30 }
::= { mplsMldpScalars 4 }
mplsMldpNumFecs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of active and passive mLdp Fecs on this device."
::= { mplsMldpScalars 5 }
mplsMldpNumFecsActive OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of mLdp FECs Active on this device. The mLDP FEC is
considered active if the mplsMldpFecOperStatus is up(1)."
::= { mplsMldpScalars 6 }
mplsMldpPlrCapable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides Point of Local Repair (PLR)
capability of the LSR."
REFERENCE
"Section 5.1 of [I-D.ietf-mpls-mldp-node-protection]."
::= { mplsMldpScalars 7 }
mplsMldpMptCapable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides Merge Point (MPT) capability of the LSR."
REFERENCE
"Section 5.2 of [I-D.ietf-mpls-mldp-node-protection]."
::= { mplsMldpScalars 8 }
mplsMldpProtLsrCapable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides Protected LSR capability."
REFERENCE
"Section 5.3 of [I-D.ietf-mpls-mldp-node-protection]."
::= { mplsMldpScalars 9 }
mplsMldpNodeProtCapable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides Node Protection capability of the LSR."
REFERENCE
"Section 5.3 of [I-D.ietf-mpls-mldp-node-protection]."
::= { mplsMldpScalars 10 }
-- End of MPLS mLDP scalars.
-- MPLS mLDP tables.
--
-- The MPLS LDP Peer Capability Table
--
mplsLdpPeerCapabilityTable OBJECT-TYPE
SYNTAX SEQUENCE OF MplsLdpPeerCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table will have learned information relating to Mldp."
::= { mplsMldpObjects 1 }
mplsLdpPeerCapabilityEntry OBJECT-TYPE
SYNTAX MplsLdpPeerCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a single Peer which is related
to a Session. This table is augmented by
the mplsLdpSessionTable."
INDEX { mplsLdpEntityLdpId,
mplsLdpEntityIndex,
mplsMldpPeerLdpId
}
::= { mplsLdpPeerCapabilityTable 1 }
MplsLdpPeerCapabilityEntry ::= SEQUENCE {
mplsMldpPeerLdpId MplsLdpIdentifier,
mplsLdpPeerCapability BITS
}
mplsMldpPeerLdpId OBJECT-TYPE
SYNTAX MplsLdpIdentifier
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LDP identifier of this LDP Peer."
::= { mplsLdpPeerCapabilityEntry 1 }
mplsLdpPeerCapability OBJECT-TYPE
SYNTAX BITS {
none (0),
p2mp (1),
mp2mp(2),
mbb (3),
upstream-label-assignment (4),
dynamic (5),
plr (6),
mpt (7),
prot-lsr (8),
node-prot (9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This will indicate the LDP capability information about peer.
The p2mp indicates peer supports P2MP Capability.
The mp2mp indicates peer supports MP2MP Capability.
The mbb indicates peer supports MBB Capability.
The upstream-label-assignment indicates peer supports Upstream label
assignment Capability.
The dynamic indicates peer supports dynamic Capability.
The plr indicates Point of Local Repair Capability.
The mpt indicates Point of Merge Point Capability.
The prot-lsr indicates Protected LSR Capability.
The node-prot indicates Node Protection LSR Capability.
"
REFERENCE
"RFC6388, Section 2.1 for P2MP Capability TLV.
and the section 3.1 for MP2MP Capability TLV.
The RFC6388 for MBB Capability TLV.
RFC5561 Section 9 for Dynamic Capability Announcement TLV.
RFC6389 Section 3 for Upstream Label Assignment Capability TLV.
Section 5 of [I-D.ietf-mpls-mldp-node-protection] describes for Point of Local Repair (plr)
capability, Merge Point (mpt) capability,
The Protected LSR (port-lsr) and Node Protection (node-prot) Capability. "
::= { mplsLdpPeerCapabilityEntry 2 }
--
-- The MPLS mLDP Session Statistics Table
--
mplsMldpSessionStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF MplsMldpSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of statistics related to mLDP on Sessions.
This table AUGMENTS the mplsLdpSessionStatsTable."
::= { mplsMldpObjects 2 }
mplsMldpSessionStatsEntry OBJECT-TYPE
SYNTAX MplsMldpSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table represents mLDP statistical
information on a single session between an LDP
Entity and LDP Peer."
INDEX { mplsLdpEntityLdpId,
mplsLdpEntityIndex,
mplsLdpPeerLdpId
}
::= { mplsMldpSessionStatsTable 1 }
MplsMldpSessionStatsEntry ::= SEQUENCE {
mplsMldpSessionStatsNumFecsSent Counter32,
mplsMldpSessionStatsNumMbbReqSentState Counter32,
mplsMldpSessionStatsNumFecsRcvd Counter32,
mplsMldpSessionStatsNumMbbReqRcvdState Counter32,
mplsMldpSessionStatsNumMbbResetAckByTimer Counter32
}
mplsMldpSessionStatsNumFecsSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object counts the number of mLDP FECs sent on this
session. If the FEC is withdrawn, then this number is
decremented.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, and at
other times as indicated by the value of
mplsLdpSessionDiscontinuityTime."
::= { mplsMldpSessionStatsEntry 1 }
mplsMldpSessionStatsNumMbbReqSentState OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object counts the number of mLDP FECs sent on this
session and waiting for MBB Ack. This counter will get incremented
when MBB req sent for a label on this session and will get
decremented when the MBB Ack received."
::= { mplsMldpSessionStatsEntry 2 }
mplsMldpSessionStatsNumFecsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object counts the number of mLDP FECs received on this
session. If the FEC is withdrawn from the downstream session,
then this is decremented.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, and at
other times as indicated by the value of
mplsLdpSessionDiscontinuityTime."
::= { mplsMldpSessionStatsEntry 3 }
mplsMldpSessionStatsNumMbbReqRcvdState OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object counts the number of mLDP FECs received on this
session and waiting for sending MBB Ack. This counter will get
incremented when MBB req is received for a label on this session
and will get decremented when the MBB Ack sent."
::= { mplsMldpSessionStatsEntry 4 }
mplsMldpSessionStatsNumMbbResetAckByTimer OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object counts the number mLDP FECs for which the MBB Ack is
reset by MBB timer, in which the LSR is waiting for MBB ack."
::= { mplsMldpSessionStatsEntry 5 }
--
-- Mpls mLDP FEC Table
--
mplsMldpFecTable OBJECT-TYPE
SYNTAX SEQUENCE OF MplsMldpFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the FEC
(Forwarding Equivalence Class)
Information associated with an mLDP LSP."
::= { mplsMldpObjects 3 }
mplsMldpFecEntry OBJECT-TYPE
SYNTAX MplsMldpFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row represents a single mLDP FEC Element."
INDEX { mplsLdpEntityLdpId,
mplsLdpEntityIndex,
mplsMldpFecIndex
}
::= { mplsMldpFecTable 1 }
MplsMldpFecEntry ::= SEQUENCE {
mplsMldpFecIndex IndexInteger,
mplsMldpFecType INTEGER,
mplsMldpFecRootAddrType InetAddressType,
mplsMldpFecRootAddr InetAddress,
mplsMldpFecOpaqueType INTEGER,
mplsMldpFecOpaqueGenLspId Unsigned32,
mplsMldpFecOpaqueTransitSourceOrBidirAddrType InetAddressType,
mplsMldpFecOpaqueTransitSourceOrBidirAddr InetAddress,
mplsMldpFecOpaqueTransitGroupAddrType InetAddressType,
mplsMldpFecOpaqueTransitGroupAddr InetAddress,
mplsMldpFecAdminStatus INTEGER,
mplsMldpFecOperStatus INTEGER,
mplsMldpFecMoFrr INTEGER,
mplsMldpFecLsrState INTEGER,
mplsMldpFecUpTime TimeStamp
}
mplsMldpFecIndex OBJECT-TYPE
SYNTAX IndexInteger
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index which uniquely identifies this entry."
::= { mplsMldpFecEntry 1 }
mplsMldpFecType OBJECT-TYPE
SYNTAX INTEGER {
p2mp(6),
mp2mpUpstream(7),
mp2mpDownstream(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the FEC. If the value of this object
is 6, then it is P2MP Fec Type, and 7, 8 are correspond to
MP2MP upstream and downstream type."
REFERENCE
"RFC6388, Section 2.2. The P2MP FEC Element and the section 3.3
for the MP2MP Fec elements."
::= { mplsMldpFecEntry 2 }
mplsMldpFecRootAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object is the type of the
Internet address. The value of this object,
decides how the value of the mplsMldpFecRootAddr object
is interpreted."
REFERENCE
"RFC6388, Section 2.2. The P2MP FEC Element and the section 3.3
for the MP2MP Fec elements."
::= { mplsMldpFecEntry 3 }
mplsMldpFecRootAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object is interpreted based
on the value of the mplsMldpFecRootAddrType object.
This is ingress node address for the mLDP LSP."
REFERENCE
"RFC6388, Section 2.2. The P2MP FEC Element and the section 3.3
for the MP2MP Fec elements."
::= { mplsMldpFecEntry 4 }
mplsMldpFecOpaqueType OBJECT-TYPE
SYNTAX INTEGER {
genericLspId(1),
transitIpv4Source(3),
transitIpv6Source(4),
transitIpv4Bidir(5),
transitIpv6Bidir(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is opaque type of the mLDP FEC. The value of this object is
shown below.
1 - The Generic LSP Identifier
3 - Transit IPv4 Source TLV
4 - Transit IPv6 Source TLV
5 - Transit IPv4 Bidir TLV
6 - Transit IPv6 Bidir TLV.
"
::= { mplsMldpFecEntry 5 }
mplsMldpFecOpaqueGenLspId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 32-bit unsigned integer value which is to represent Generic
LSP ID. This value is only valid if the mplsMldpFecOpaqueType is
genericLspId(1), otherwise 0 must be returned."
REFERENCE
"RFC6388, Section 2.3.1."
::= { mplsMldpFecEntry 6 }
mplsMldpFecOpaqueTransitSourceOrBidirAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object is the type of the
Internet address. The value of this object,
decides how the value of the mplsMldpFecOpaqueTransitSourceOrBidirAddr
object is interpreted."
REFERENCE
"RFC6826, Section 3.1."
::= { mplsMldpFecEntry 7 }
mplsMldpFecOpaqueTransitSourceOrBidirAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object is interpreted based
on the value of the mplsMldpFecOpaqueTransitSourceOrBidirAddrType
object. This is source node address for the mLDP inband LSP."
REFERENCE
"RFC6826, Section 3.1."
::= { mplsMldpFecEntry 8 }
mplsMldpFecOpaqueTransitGroupAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object is the type of the
Internet address. The value of this object,
decides how the value of the mplsMldpFecOpaqueTransitGroupAddr
object is interpreted."
REFERENCE
"RFC6826, Section 3.2."
::= { mplsMldpFecEntry 9 }
mplsMldpFecOpaqueTransitGroupAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object is interpreted based
on the value of the mplsMldpFecOpaqueTransitGroupAddrType
object. This is group node address for the mLDP inband LSP."
REFERENCE
"RFC6826, Section 3.2."
::= { mplsMldpFecEntry 10 }
mplsMldpFecAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass data
down(2) -- out of service
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the admin status of this mLDP FEC."
DEFVAL { up }
::= { mplsMldpFecEntry 11 }
mplsMldpFecOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass data
down(2) -- out of service
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the actual operational status of this mLDP Fec."
::= { mplsMldpFecEntry 12 }
mplsMldpFecMoFrr OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides whether MoFRR enabled for this mLDP FEC.
on this mLDP FEC. As mentioned in the section 3.2 of [I-D.ietf-rtgwg-mofrr],
When this is enabled, then mLDP may select two upstream sessions,
one is primary and other one is backup. The backup traffic is
discarded when the primary upstream session is UP. When the
primary upstream session goes down, the traffic from the backup
upstream session will be forwarded to downstream.
"
::= { mplsMldpFecEntry 13 }
mplsMldpFecLsrState OBJECT-TYPE
SYNTAX INTEGER {
egress(1),
bud(2),
transit(3),
ingress(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the role of FEC either egress, bud, transit or ingress"
::= { mplsMldpFecEntry 14 }
mplsMldpFecUpTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This values shows Fec UP time. This is time since mplsMldpFecOperStatus is UP."
::= { mplsMldpFecEntry 15 }
-- MPLS mLDP LSP Branch Traffic Stats Table.
mplsMldpFecBranchStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF MplsMldpFecBranchStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides mLDP Fec branch MPLS Traffic Stats
information."
::= { mplsMldpObjects 4 }
mplsMldpFecBranchStatsEntry OBJECT-TYPE
SYNTAX MplsMldpFecBranchStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table is created by the LSR for each
downstream branch (out-segment) from this LSR for this mLDP
LSP. Each downstream session may represent a single out-segment.
Each entry in the table is indexed by the four identifiers
of the mLDP LSP, and the out-segment that identifies the
outgoing branch."
INDEX { mplsLdpEntityIndex,
mplsMldpFecBranchFecIndex,
mplsMldpFecBranchOutSegIndex
}
::= { mplsMldpFecBranchStatsTable 1 }
MplsMldpFecBranchStatsEntry ::= SEQUENCE {
mplsMldpFecBranchFecIndex MplsIndexType,
mplsMldpFecBranchOutSegIndex MplsIndexType,
mplsMldpFecBranchPeerLdpId MplsLdpIdentifier,
mplsMldpFecBranchStatsPackets Counter64,
mplsMldpFecBranchStatsBytes Counter64,
mplsMldpFecBranchStatsDiscontinuityTime TimeStamp
}
mplsMldpFecBranchFecIndex OBJECT-TYPE
SYNTAX MplsIndexType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This index identifies the mLDP FEC entry in the
mplsMldpFecTable. This is same as mplsMldpFecIndex."
::= { mplsMldpFecBranchStatsEntry 1 }
mplsMldpFecBranchOutSegIndex OBJECT-TYPE
SYNTAX MplsIndexType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies an outgoing branch from this mLDP LSP
Its value is unique within the context of the mLDP LSP.
This contains the same value as the mplsOutSegmentIndex in the
MPLS-LSR-STD-MIBs mplsOutSegmentTable."
::= { mplsMldpFecBranchStatsEntry 2 }
mplsMldpFecBranchPeerLdpId OBJECT-TYPE
SYNTAX MplsLdpIdentifier
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies an outgoing branch peer LDP ID for this
mLDP LSP. Its value is unique within the context of the mLDP LSP.
On Egress node, this value could be 0.0.0.0:00 as there will no
downstream LDP session."
::= { mplsMldpFecBranchStatsEntry 3 }
mplsMldpFecBranchStatsPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the 64-bit value, which gives the number
of packets forwarded by the mLDP LSP onto this branch.
This object should be read in conjunction with
mplsMldpFecBranchStatsDiscontinuityTime."
::= { mplsMldpFecBranchStatsEntry 4 }
mplsMldpFecBranchStatsBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the 64-bit value, which gives the number
of bytes forwarded by the mLDP LSP onto this branch.
This object should be read in conjunction with
mplsMldpFecBranchStatsDiscontinuityTime."
::= { mplsMldpFecBranchStatsEntry 5 }
mplsMldpFecBranchStatsDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime on the most recent occasion at which
any one or more of this rows Counter32 or Counter64 objects
experienced a discontinuity. If no such discontinuity has
occurred since the last re-initialization of the local
management subsystem, then this object contains a zero
value."
::= { mplsMldpFecBranchStatsEntry 6 }
-- End of mplsMldpFecBranchStatsTable
-- MPLS mLDP LSP Upstream Session Table.
mplsMldpFecUpstreamSessTable OBJECT-TYPE
SYNTAX SEQUENCE OF MplsMldpFecUpstreamSessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides mLDP Fec upstream Session information."
::= { mplsMldpObjects 5 }
mplsMldpFecUpstreamSessEntry OBJECT-TYPE
SYNTAX MplsMldpFecUpstreamSessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table is created by the LSR for each
upstream session (in-segment) from this LSR for this mLDP
LSP. Each upstream session may represent a single in-segment.
Each entry in the table is indexed by the four identifiers
of the mLDP LSP, and the in-segment that identifies the
incoming traffic."
INDEX { mplsLdpEntityLdpId,
mplsLdpEntityIndex,
mplsMldpFecUpstreamSessFecIndex,
mplsMldpFecUpstreamSessInSegIndex
}
::= { mplsMldpFecUpstreamSessTable 1 }
MplsMldpFecUpstreamSessEntry ::= SEQUENCE {
mplsMldpFecUpstreamSessFecIndex MplsIndexType,
mplsMldpFecUpstreamSessInSegIndex MplsIndexType,
mplsMldpFecUpstreamSessPeerLdpId MplsLdpIdentifier,
mplsMldpFecUpstreamSessPrimary INTEGER,
mplsMldpFecUpstreamSessActive INTEGER,
mplsMldpFecUpstreamSessPackets Counter64,
mplsMldpFecUpstreamSessBytes Counter64,
mplsMldpFecUpstreamSessDiscontinuityTime TimeStamp
}
mplsMldpFecUpstreamSessFecIndex OBJECT-TYPE
SYNTAX MplsIndexType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This index identifies the mLDP FEC entry in the
mplsMldpFecTable."
::= { mplsMldpFecUpstreamSessEntry 1 }
mplsMldpFecUpstreamSessInSegIndex OBJECT-TYPE
SYNTAX MplsIndexType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies an upstream session from this mLDP LSP
Its value is unique within the context of the mLDP LSP.
This contains the same value as the mplsInSegmentIndex in the
MPLS-LSR-STD-MIBs mplsInSegmentTable."
::= { mplsMldpFecUpstreamSessEntry 2 }
mplsMldpFecUpstreamSessPeerLdpId OBJECT-TYPE
SYNTAX MplsLdpIdentifier
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies an upstream session peer LDP ID for this
mLDP LSP. Its value is unique within the context of the mLDP LSP."
::= { mplsMldpFecUpstreamSessEntry 3 }
mplsMldpFecUpstreamSessPrimary OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
backup(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicated wether the received traffic from upstream is
primary or backup. This is valid only if the MoFRR
(mplsMldpFecMoFrr) is enabled on this FEC."
::= { mplsMldpFecUpstreamSessEntry 4 }
mplsMldpFecUpstreamSessActive OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inactive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates whether the upstream session is active, means the
LSR programmed the forwarding engine to receive the traffic from
this upstream session. This will be Inactive if the LSR is wating
for MBB Ack."
::= { mplsMldpFecUpstreamSessEntry 5 }
mplsMldpFecUpstreamSessPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the 64-bit value, which gives the number
of packets received by the mLDP LSP from this upstream
session. This object should be read in conjunction with
mplsMldpFecUpstreamSessDiscontinuityTime."
::= { mplsMldpFecUpstreamSessEntry 6 }
mplsMldpFecUpstreamSessBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the 64-bit value, which gives the number
of bytes received by the mLDP LSP from this upstream
session. This object should be read in conjunction with
mplsMldpFecUpstreamSessDiscontinuityTime."
::= { mplsMldpFecUpstreamSessEntry 7 }
mplsMldpFecUpstreamSessDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime on the most recent occasion at which
any one or more of this rows Counter32 or Counter64 objects
experienced a discontinuity. If no such discontinuity has
occurred since the last re-initialization of the local
management subsystem, then this object contains a zero
value."
::= { mplsMldpFecUpstreamSessEntry 8 }
-- End of mplsMldpFecBranchStatsTable
-- MPLS mLDP Interface Traffic Stats Table.
mplsMldpInterfaceStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF MplsMldpInterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides mLDP Traffic Stats on specified interface."
::= { mplsMldpObjects 6 }
mplsMldpInterfaceStatsEntry OBJECT-TYPE
SYNTAX MplsMldpInterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table is created by the LSR for each
downstream branch (out-segment) from this LSR for this mLDP
LSP. Each downstream session may represent a single out-segment.
Each entry in the table is indexed by the four identifiers
of the mLDP LSP, and the out-segment that identifies the
outgoing branch."
INDEX { mplsMldpInterfaceIndex
}
::= { mplsMldpInterfaceStatsTable 1 }
MplsMldpInterfaceStatsEntry ::= SEQUENCE {
mplsMldpInterfaceIndex InterfaceIndex,
mplsMldpInterfaceStatsSentPackets Counter64,
mplsMldpInterfaceStatsSentBytes Counter64,
mplsMldpInterfaceStatsRecvPackets Counter64,
mplsMldpInterfaceStatsRecvBytes Counter64
}
mplsMldpInterfaceIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This index identifies the specific interface. "
::= { mplsMldpInterfaceStatsEntry 1 }
mplsMldpInterfaceStatsSentPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is 64 bit value, which gives the number of packets
forwarded by all mLDP LSPs onto this interface."
::= { mplsMldpInterfaceStatsEntry 2 }
mplsMldpInterfaceStatsSentBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is 64 bit value, which gives the number of bytes
forwarded by all mLDP LSPs onto this interface."
::= { mplsMldpInterfaceStatsEntry 3 }
mplsMldpInterfaceStatsRecvPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is 64 bit value, which gives the number of packets
received by all mLDP LSPs from this interface."
::= { mplsMldpInterfaceStatsEntry 4 }
mplsMldpInterfaceStatsRecvBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is 64 bit value, which gives the number of bytes
received by all mLDP LSPs from this interface."
::= { mplsMldpInterfaceStatsEntry 5 }
-- End of mplsMldpInterfaceStatsTable
-- Notifications.
mplsMldpFecUp NOTIFICATION-TYPE
OBJECTS {
mplsMldpFecAdminStatus,
mplsMldpFecOperStatus
}
STATUS current
DESCRIPTION
"This notification is generated when a mplsMldpFecOperStatus
object changes from down to up."
::= { mplsMldpNotifications 1 }
mplsMldpFecDown NOTIFICATION-TYPE
OBJECTS {
mplsMldpFecAdminStatus,
mplsMldpFecOperStatus
}
STATUS current
DESCRIPTION
"This notification is generated when a mplsMldpFecOperStatus
object changes from up to down."
::= { mplsMldpNotifications 2 }
mplsMldpMoFrrStatusChange NOTIFICATION-TYPE
OBJECTS {
mplsMldpFecUpstreamSessPrimary
}
STATUS current
DESCRIPTION
"This notification is generated when a mplsMldpFecUpstreamSessPrimary
object changes from primary to backup and vice versa."
::= { mplsMldpNotifications 3 }
-- End of notifications.
END
|