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
|
--
-- Juniper Multi-Protocol Label Switched Paths MIB
--
-- Copyright (c) 1998-2013, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
MPLS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, Counter32, Counter64, IpAddress
FROM SNMPv2-SMI
DisplayString, TimeStamp
FROM SNMPv2-TC
jnxMibs
FROM JUNIPER-SMI;
mpls MODULE-IDENTITY
LAST-UPDATED "200902231445Z" -- Mon Feb 23 14:45:55 2009 UTC
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"The MIB module for Multi-Protocol Label Switched Paths."
REVISION
"200902231445Z" -- Feb 23, 2009
DESCRIPTION
"Second revision; Deprecated mplsLspList, mplsLspEntry and all objects
in that SEQUENCE. Introduced new table mplsLspInfoList, mplsLspInfoEntry
to support LSP names greater than 32 characters"
::= { jnxMibs 2 }
-- For now, the MPLS MIB is an enterprise (Juniper Inc.) private MIB.
mplsInfo OBJECT IDENTIFIER ::= { mpls 1 }
mplsVersion OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MPLS version number."
::= { mplsInfo 1 }
mplsSignalingProto OBJECT-TYPE
SYNTAX INTEGER {
none(1),
other(2),
rsvp(3),
ldp(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MPLS signaling protocol."
::= { mplsInfo 2 }
mplsConfiguredLsps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of configured LSPs."
::= { mplsInfo 3 }
mplsActiveLsps OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of active LSPs."
::= { mplsInfo 4 }
mplsTEInfo OBJECT IDENTIFIER ::= { mpls 2 }
mplsTEDistProtocol OBJECT-TYPE
SYNTAX INTEGER {
none(1),
isis(2),
ospf(3),
isis-ospf(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IGP used to distribute Traffic Engineering
information and topology to each LSR for the
purpose of automatic path computation."
::= { mplsTEInfo 1 }
mplsAdminGroupList OBJECT-TYPE
SYNTAX SEQUENCE OF MplsAdminGroup
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of configured administrative groups.
Administrative groups are used to label links in
the Traffic Engineering topology in order to place
constraints (include and exclude) on LSP paths."
::= { mplsTEInfo 2 }
mplsAdminGroup OBJECT-TYPE
SYNTAX MplsAdminGroup
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A mapping between a configured group number and its
human-readable name. The group number should be
between 0 and 31, inclusive."
INDEX { mplsAdminGroupNumber }
::= { mplsAdminGroupList 1 }
MplsAdminGroup ::=
SEQUENCE {
mplsAdminGroupNumber INTEGER,
mplsAdminGroupName DisplayString
}
mplsAdminGroupNumber OBJECT-TYPE
SYNTAX INTEGER (0..31)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of the administrative group."
::= { mplsAdminGroup 1 }
mplsAdminGroupName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name of the administrative group."
::= { mplsAdminGroup 2 }
mplsLspList OBJECT-TYPE
SYNTAX SEQUENCE OF MplsLspEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"******* Deprecated Object ******
List of Configured Label Switched Paths. This object
has been deprecated and replaced by mplsLspInfoList"
::= { mpls 3 }
mplsLspEntry OBJECT-TYPE
SYNTAX MplsLspEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"******* Deprecated Object ******
Entry containing information about a particular
Label Switched Path. This object has been deprecated
and replaced by mplsLspInfoEntry"
INDEX { mplsLspName }
::= { mplsLspList 1 }
MplsLspEntry ::=
SEQUENCE {
mplsLspName DisplayString,
mplsLspState INTEGER,
mplsLspOctets Counter64,
mplsLspPackets Counter64,
mplsLspAge TimeStamp,
mplsLspTimeUp TimeStamp,
mplsLspPrimaryTimeUp TimeStamp,
mplsLspTransitions Counter32,
mplsLspLastTransition TimeStamp,
mplsLspPathChanges Counter32,
mplsLspLastPathChange TimeStamp,
mplsLspConfiguredPaths Integer32,
mplsLspStandbyPaths Integer32,
mplsLspOperationalPaths Integer32,
mplsLspFrom IpAddress,
mplsLspTo IpAddress,
mplsPathName DisplayString,
mplsPathType INTEGER,
mplsPathExplicitRoute OCTET STRING,
mplsPathRecordRoute OCTET STRING,
mplsPathBandwidth Integer32,
mplsPathCOS INTEGER,
mplsPathInclude Integer32,
mplsPathExclude Integer32,
mplsPathSetupPriority INTEGER,
mplsPathHoldPriority INTEGER,
mplsPathProperties INTEGER
}
mplsLspName OBJECT-TYPE
SYNTAX DisplayString (SIZE (32))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"******* Deprecated Object ******
Name of the Label Switched Path.
This object has been deprecated and replaced by
mplsLspInfoName"
::= { mplsLspEntry 1 }
mplsLspState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
up(2),
down(3),
notInService(4),
backupActive(5)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION "The operational state of the LSP."
::= { mplsLspEntry 2 }
mplsLspOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of octets that have been forwarded
over current LSP active path. The number reported
is not realtime, may subject to several minutes
delay. The delay is controllable by mpls statistics
gathering interval, which by default is once every
5 minutes. If mpls statistics gathering is not
enabled, this number will not increment."
::= { mplsLspEntry 3 }
mplsLspPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of packets that have been forwarded
over current LSP active path. The number reported
is not realtime, may subject to several minutes
delay. The delay is controllable by mpls statistics
gathering interval, which by default is once every
5 minutes. If mpls statistics gathering is not
enabled, this number will not increment."
::= { mplsLspEntry 4 }
mplsLspAge OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The age (i.e., time from creation till now) of
this LSP in 10-millisecond periods."
::= { mplsLspEntry 5 }
mplsLspTimeUp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total time in 10-millisecond units that this
LSP has been operational. For example, the
percentage up time can be determined by computing
(mplsLspTimeUp/mplsLspAge * 100 %)."
::= { mplsLspEntry 6 }
mplsLspPrimaryTimeUp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total time in 10-millisecond units that this
LSP's primary path has been operational. For
example, the percentage contribution of the primary
path to the operational time is given by
(mplsLspPrimaryTimeUp/mplsLspTimeUp * 100) %."
::= { mplsLspEntry 7 }
mplsLspTransitions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of state transitions (up -> down and
down -> up) this LSP has undergone."
::= { mplsLspEntry 8 }
mplsLspLastTransition OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The time in 10-millisecond units since the last
transition occurred on this LSP."
::= { mplsLspEntry 9 }
mplsLspPathChanges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of path changes this LSP has had. For
every path change (path down, path up, path change),
a corresponding syslog/trap (if enabled) is generated
for it."
::= { mplsLspEntry 10 }
mplsLspLastPathChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The time in 10-millisecond units since the last
change occurred on this LSP."
::= { mplsLspEntry 11 }
mplsLspConfiguredPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of paths configured for this LSP."
::= { mplsLspEntry 12 }
mplsLspStandbyPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of standby paths configured for
this LSP."
::= { mplsLspEntry 13 }
mplsLspOperationalPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of operational paths for this LSP.
This includes the path currently active, as
well as operational standby paths."
::= { mplsLspEntry 14 }
mplsLspFrom OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Source IP address of this LSP."
::= { mplsLspEntry 15 }
mplsLspTo OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Destination IP address of this LSP."
::= { mplsLspEntry 16 }
mplsPathName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The name of the active path for this LSP, if
any. If there is none, the name should be
empty; in that case, the rest of the fields
in mplsLspEntry are meaningless."
::= { mplsLspEntry 17 }
mplsPathType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
primary(2),
standby(3),
secondary(4),
bypass(5)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The type of path that is active, i.e., a
primary path, a standby path, a generic
secondary path, or a bypass path.
The value other, primary, standby and
secondary apply to data LSPs, and are
meaningful only if mplsPathName is not
empty. The value bypass applies to
bypass tunnels. A bypass tunnel
may have an empty mplsPathName."
::= { mplsLspEntry 18 }
mplsPathExplicitRoute OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1024))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The explicit route used to set up this LSP.
This may either be the route configured by
the user, or a route automatically computed
to satisfy constraints set by the user.
This field is a displayable string in the
format of XXX.XXX.XXX.XXX <space> S/L <newline>
repeated for each explicit address. The S/L character
stands for Strict/Loose route.
This field is meaningless unless mplsPathName
is not empty"
::= { mplsLspEntry 19 }
mplsPathRecordRoute OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1024))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The route actually used for this path, as
recorded by the signaling protocol.
This field is a displayable string in the
format of XXX.XXX.XXX.XXX <space>
repeated for each address.
This field is meaningless unless mplsPathName is
not empty"
::= { mplsLspEntry 20 }
mplsPathBandwidth OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The configured bandwidth for this LSP, in units
of thousands of bits per second (Kbps). This
field is meaningless unless mplsPathName is not empty"
::= { mplsLspEntry 21 }
mplsPathCOS OBJECT-TYPE
SYNTAX INTEGER (0..7 | 255)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The configured Class Of Service on this path. If
the value is between 0 and 7 inclusive, this value
will be inserted in the 3 bit COS field in the
label. If the value is 255, the value in the COS
field of the label will depend on other factors.
This field is meaningless unless mplsPathName is not empty"
::= { mplsLspEntry 22 }
mplsPathInclude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This is a configured set of colors (administrative
groups) specified as a bit vector (i.e., bit n is 1
if color n is in the set, where n = 0 is the LSB).
For each link that this path goes through, the
link MUST have colors associated with it, and
the intersection of the link's colors and the
'include' set MUST be non-null. This field is meaningless
unless mplsPathName is not empty"
::= { mplsLspEntry 23 }
mplsPathExclude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This is a configured set of colors (administrative
groups) specified as a bit vector (i.e., bit n is 1
if color n is in the set, where n = 0 is the LSB).
For each link that this path goes through, the
link MUST have colors associated with it, and
the intersection of the link's colors and the
'exclude' set MUST be null. This field is meaningless
unless mplsPathName is not empty"
::= { mplsLspEntry 24 }
mplsPathSetupPriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The setup priority configured for this path. This
field is meaningless unless mplsPathName is not empty"
::= { mplsLspEntry 25 }
mplsPathHoldPriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The hold priority configured for this path. This
field is meaningless unless mplsPathName is not empty"
::= { mplsLspEntry 26 }
mplsPathProperties OBJECT-TYPE
SYNTAX INTEGER {
record-route(1),
adaptive(2),
cspf(4),
mergeable(8),
preemptable(16),
preemptive(32),
fast-reroute(64)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The set of configured properties for this path,
expressed as a bit map. For example, if the path
is an adaptive path, the bit corresponding to bit
value xxx is set. This field is meaningless
unless mplsPathName is not empty"
::= { mplsLspEntry 27 }
--
-- New MIB table for handling LSP names > 32 characters
--
mplsLspInfoList OBJECT-TYPE
SYNTAX SEQUENCE OF MplsLspInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of Configured Label Switched Paths."
::= { mpls 5 }
mplsLspInfoEntry OBJECT-TYPE
SYNTAX MplsLspInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry containing information about a particular
Label Switched Path."
INDEX { IMPLIED mplsLspInfoName }
::= { mplsLspInfoList 1 }
MplsLspInfoEntry ::=
SEQUENCE {
mplsLspInfoName DisplayString,
mplsLspInfoState INTEGER,
mplsLspInfoOctets Counter64,
mplsLspInfoPackets Counter64,
mplsLspInfoAge TimeStamp,
mplsLspInfoTimeUp TimeStamp,
mplsLspInfoPrimaryTimeUp TimeStamp,
mplsLspInfoTransitions Counter32,
mplsLspInfoLastTransition TimeStamp,
mplsLspInfoPathChanges Counter32,
mplsLspInfoLastPathChange TimeStamp,
mplsLspInfoConfiguredPaths Integer32,
mplsLspInfoStandbyPaths Integer32,
mplsLspInfoOperationalPaths Integer32,
mplsLspInfoFrom IpAddress,
mplsLspInfoTo IpAddress,
mplsPathInfoName DisplayString,
mplsPathInfoType INTEGER,
mplsPathInfoExplicitRoute OCTET STRING,
mplsPathInfoRecordRoute OCTET STRING,
mplsPathInfoBandwidth Integer32,
mplsPathInfoCOS INTEGER,
mplsPathInfoInclude Integer32,
mplsPathInfoExclude Integer32,
mplsPathInfoSetupPriority INTEGER,
mplsPathInfoHoldPriority INTEGER,
mplsPathInfoProperties INTEGER,
mplsLspInfoAggrOctets Counter64,
mplsLspInfoAggrPackets Counter64,
mplsPathInfoRecordRouteWithLabels OCTET STRING
}
mplsLspInfoName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Name of the Label Switched Path."
::= { mplsLspInfoEntry 1 }
mplsLspInfoState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
up(2),
down(3),
notInService(4),
backupActive(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operational state of the LSP."
::= { mplsLspInfoEntry 2 }
mplsLspInfoOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets that have been forwarded
over current LSP active path. The number reported
is not realtime, may subject to several minutes
delay. The delay is controllable by mpls statistics
gathering interval, which by default is once every
5 minutes. If mpls statistics gathering is not
enabled, this number will not increment."
::= { mplsLspInfoEntry 3 }
mplsLspInfoPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that have been forwarded
over current LSP active path. The number reported
is not realtime, may subject to several minutes
delay. The delay is controllable by mpls statistics
gathering interval, which by default is once every
5 minutes. If mpls statistics gathering is not
enabled, this number will not increment."
::= { mplsLspInfoEntry 4 }
mplsLspInfoAge OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The age (i.e., time from creation till now) of
this LSP in 10-millisecond periods."
::= { mplsLspInfoEntry 5 }
mplsLspInfoTimeUp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total time in 10-millisecond units that this
LSP has been operational. For example, the
percentage up time can be determined by computing
(mplsLspInfoTimeUp/mplsLspInfoAge * 100 %)."
::= { mplsLspInfoEntry 6 }
mplsLspInfoPrimaryTimeUp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total time in 10-millisecond units that this
LSP's primary path has been operational. For
example, the percentage contribution of the primary
path to the operational time is given by
(mplsLspInfoPrimaryTimeUp/mplsLspInfoTimeUp * 100) %."
::= { mplsLspInfoEntry 7 }
mplsLspInfoTransitions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of state transitions (up -> down and
down -> up) this LSP has undergone."
::= { mplsLspInfoEntry 8 }
mplsLspInfoLastTransition OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time in 10-millisecond units since the last
transition occurred on this LSP."
::= { mplsLspInfoEntry 9 }
mplsLspInfoPathChanges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of path changes this LSP has had. For
every path change (path down, path up, path change),
a corresponding syslog/trap (if enabled) is generated
for it."
::= { mplsLspInfoEntry 10 }
mplsLspInfoLastPathChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time in 10-millisecond units since the last
change occurred on this LSP."
::= { mplsLspInfoEntry 11 }
mplsLspInfoConfiguredPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of paths configured for this LSP."
::= { mplsLspInfoEntry 12 }
mplsLspInfoStandbyPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of standby paths configured for
this LSP."
::= { mplsLspInfoEntry 13 }
mplsLspInfoOperationalPaths OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of operational paths for this LSP.
This includes the path currently active, as
well as operational standby paths."
::= { mplsLspInfoEntry 14 }
mplsLspInfoFrom OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source IP address of this LSP."
::= { mplsLspInfoEntry 15 }
mplsLspInfoTo OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IP address of this LSP."
::= { mplsLspInfoEntry 16 }
mplsPathInfoName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the active path for this LSP, if
any. If there is none, the name should be
empty; in that case, the rest of the fields
in mplsLspInfoEntry are meaningless."
::= { mplsLspInfoEntry 17 }
mplsPathInfoType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
primary(2),
standby(3),
secondary(4),
bypass(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of path that is active, i.e., a
primary path, a standby path, a generic
secondary path, or a bypass path.
The value other, primary, standby and
secondary apply to data LSPs, and are
meaningful only if mplsPathInfoName is not
empty. The value bypass applies to
bypass tunnels. A bypass tunnel
may have an empty mplsPathInfoName."
::= { mplsLspInfoEntry 18 }
mplsPathInfoExplicitRoute OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1024))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The explicit route used to set up this LSP.
This may either be the route configured by
the user, or a route automatically computed
to satisfy constraints set by the user.
This field is a displayable string in the
format of XXX.XXX.XXX.XXX <space> S/L <newline>
repeated for each explicit address. The S/L character
stands for Strict/Loose route.
This field is meaningless unless mplsPathInfoName
is not empty"
::= { mplsLspInfoEntry 19 }
mplsPathInfoRecordRoute OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1024))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The route actually used for this path, as
recorded by the signaling protocol.
This field is a displayable string in the
format of XXX.XXX.XXX.XXX <space>
repeated for each address.
This field is meaningless unless mplsPathInfoName is
not empty"
::= { mplsLspInfoEntry 20 }
mplsPathInfoBandwidth OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The configured bandwidth for this LSP, in units
of thousands of bits per second (Kbps). This
field is meaningless unless mplsPathInfoName is not empty"
::= { mplsLspInfoEntry 21 }
mplsPathInfoCOS OBJECT-TYPE
SYNTAX INTEGER (0..7 | 255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The configured Class Of Service on this path. If
the value is between 0 and 7 inclusive, this value
will be inserted in the 3 bit COS field in the
label. If the value is 255, the value in the COS
field of the label will depend on other factors.
This field is meaningless unless mplsPathInfoName is not empty"
::= { mplsLspInfoEntry 22 }
mplsPathInfoInclude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a configured set of colors (administrative
groups) specified as a bit vector (i.e., bit n is 1
if color n is in the set, where n = 0 is the LSB).
For each link that this path goes through, the
link MUST have colors associated with it, and
the intersection of the link's colors and the
'include' set MUST be non-null. This field is meaningless
unless mplsPathInfoName is not empty"
::= { mplsLspInfoEntry 23 }
mplsPathInfoExclude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a configured set of colors (administrative
groups) specified as a bit vector (i.e., bit n is 1
if color n is in the set, where n = 0 is the LSB).
For each link that this path goes through, the
link MUST have colors associated with it, and
the intersection of the link's colors and the
'exclude' set MUST be null. This field is meaningless
unless mplsPathInfoName is not empty"
::= { mplsLspInfoEntry 24 }
mplsPathInfoSetupPriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The setup priority configured for this path. This
field is meaningless unless mplsPathInfoName is not empty"
::= { mplsLspInfoEntry 25 }
mplsPathInfoHoldPriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hold priority configured for this path. This
field is meaningless unless mplsPathInfoName is not empty"
::= { mplsLspInfoEntry 26 }
mplsPathInfoProperties OBJECT-TYPE
SYNTAX INTEGER {
record-route(1),
adaptive(2),
cspf(4),
mergeable(8),
preemptable(16),
preemptive(32),
fast-reroute(64)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The set of configured properties for this path,
expressed as a bit map. For example, if the path
is an adaptive path, the bit corresponding to bit
value xxx is set. This field is meaningless
unless mplsPathInfoName is not empty"
::= { mplsLspInfoEntry 27 }
mplsLspInfoAggrOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets that have beeen forwarded over
current LSP. This is an aggregate count of octets
forwarded over all LSP instances from the time
LSP was up. The number reported is not realtime, may
be subject to several minutes delay. The delay is
controllable by mpls statistics gathering interval,
which by default is once every 5 minutes. If mpls
statistics gathering is not enabled, this number will
not increment."
::= { mplsLspInfoEntry 28 }
mplsLspInfoAggrPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that have been forwarded over
current LSP. This is an aggregate count of packets
forwarded over all LSP instances from the time
LSP was up. The number reported is not realtime, may
be subject to several minutes delay. The delay is
controllable by mpls statistics gathering interval,
which by default is once every 5 minutes. If mpls
statistics gathering is not enabled, this number will
not increment."
::= { mplsLspInfoEntry 29 }
mplsPathInfoRecordRouteWithLabels OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1024))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The route actually used for this path, as
recorded by the signaling protocol.
This field is a displayable string in the
format of XXX.XXX.XXX.XXX <flag/label> <space>
repeated for each address.
This field is meaningless unless mplsPathInfoName is
not empty"
::= { mplsLspInfoEntry 30 }
--
-- definition of MPLS traps
--
mplsTraps OBJECT IDENTIFIER ::= { mpls 4 }
mplsLspUp NOTIFICATION-TYPE
OBJECTS { mplsLspName,
mplsPathName } -- LspPath
STATUS deprecated
DESCRIPTION
"An mplsLspUp trap signifies that the
specified LSP is up. The current active
path for the LSP is mplsPathName."
::= { mplsTraps 1 }
mplsLspDown NOTIFICATION-TYPE
OBJECTS { mplsLspName,
mplsPathName } -- LspPath
STATUS deprecated
DESCRIPTION
"An mplsLspDown trap signifies that the
specified LSP is down, because the current
active path mplsPathName went down."
::= { mplsTraps 2 }
mplsLspChange NOTIFICATION-TYPE
OBJECTS { mplsLspName,
mplsPathName } -- toLspPath
STATUS deprecated
DESCRIPTION
"An mplsLspChange trap signifies that the
the specified LSP has switched traffic to
the new active path 'toLspPath'. The LSP maintains
up state before and after the switch over"
::= { mplsTraps 3 }
mplsLspPathDown NOTIFICATION-TYPE
OBJECTS { mplsLspName,
mplsPathName } -- LspPath
STATUS deprecated
DESCRIPTION
"An mplsLspPathDown trap signifies that the
specified path mplsPathName for the specified
LSP mplsLspName went down"
::= { mplsTraps 4 }
mplsLspPathUp NOTIFICATION-TYPE
OBJECTS { mplsLspName,
mplsPathName } -- LspPath
STATUS deprecated
DESCRIPTION
"An mplsLspPathUp trap signifies that the
specified path mplsPathName for the specified
LSP mplsLspName came up"
::= { mplsTraps 5 }
--
-- definition of MPLS traps based on mplsLspInfoName
--
mplsLspTraps OBJECT IDENTIFIER ::= { mpls 0 }
mplsLspInfoUp NOTIFICATION-TYPE
OBJECTS { mplsLspInfoName,
mplsPathInfoName } -- LspPath
STATUS current
DESCRIPTION
"An mplsLspInfoUp trap signifies that the
specified LSP is up. The current active
path for the LSP is mplsPathInfoName."
::= { mplsLspTraps 1 }
mplsLspInfoDown NOTIFICATION-TYPE
OBJECTS { mplsLspInfoName,
mplsPathInfoName } -- LspPath
STATUS current
DESCRIPTION
"An mplsLspInfoDown trap signifies that the
specified LSP is down, because the current
active path mplsPathInfoName went down."
::= { mplsLspTraps 2 }
mplsLspInfoChange NOTIFICATION-TYPE
OBJECTS { mplsLspInfoName,
mplsPathInfoName } -- toLspPath
STATUS current
DESCRIPTION
"An mplsLspInfoChange trap signifies that the
the specified LSP has switched traffic to
the new active path 'toLspPath'. The LSP maintains
up state before and after the switch over"
::= { mplsLspTraps 3 }
mplsLspInfoPathDown NOTIFICATION-TYPE
OBJECTS { mplsLspInfoName,
mplsPathInfoName } -- LspPath
STATUS current
DESCRIPTION
"An mplsLspInfoPathDown trap signifies that the
specified path mplsPathName for the specified
LSP mplsLspInfoName went down"
::= { mplsLspTraps 4 }
mplsLspInfoPathUp NOTIFICATION-TYPE
OBJECTS { mplsLspInfoName,
mplsPathInfoName } -- LspPath
STATUS current
DESCRIPTION
"An mplsLspInfoPathUp trap signifies that the
specified path mplsPathName for the specified
LSP mplsLspInfoName came up"
::= { mplsLspTraps 5 }
END
|