This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathJUNIPER-MIB
1958 lines (1776 loc) · 60.4 KB
/
JUNIPER-MIB
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
--
-- Juniper Enterprise Specific MIB: Chassis MIB
--
-- Copyright (c) 1998-2008, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, Gauge32, Counter32
FROM SNMPv2-SMI
DisplayString, TimeStamp, TimeInterval, TEXTUAL-CONVENTION, DateAndTime
FROM SNMPv2-TC
jnxMibs, jnxChassisTraps, jnxChassisOKTraps
FROM JUNIPER-SMI;
jnxBoxAnatomy MODULE-IDENTITY
LAST-UPDATED "201010220000Z" -- Fri Oct 22 00:00:00 2008 UTC
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Technical Assistance Center
Juniper Networks, Inc.
1194 N. Mathilda Avenue
Sunnyvale, CA 94089
E-mail: [email protected]"
DESCRIPTION
"The MIB modules representing Juniper Networks'
implementation of enterprise specific MIBs
supported by a single SNMP agent."
REVISION "201010220000Z"
DESCRIPTION
"Added load average variables"
REVISION "200403230000Z"
DESCRIPTION
"Added chassis identification objects."
REVISION "200406300000Z" -- July 30, 2004
DESCRIPTION
"Added following new traps for chassis
alarm conditions: jnxFruFailed, jnxFruOffline
and jnxFruOnline."
REVISION "200409170000Z" -- Sep 17, 2004
DESCRIPTION
"Added new traps for chassis
alarm condition jnxFruCheck."
REVISION "200507180000Z" -- Jul 18, 2005
DESCRIPTION
"Added new fru type FEB in jnxFruType enumeration."
REVISION "200507190000Z" -- Jul 19, 2005
DESCRIPTION
"Added new offline reason pfeVersionMismatch
to jnxFruOfflineReason enumeration."
REVISION "200611200000Z" -- Nov 20, 2006
DESCRIPTION
"Added new offline reason fruFebOffline
to jnxFruOfflineReason enumeration."
REVISION "200807310000Z" -- Jul 31, 2008
DESCRIPTION
"Added jnxBoxSystemDomainType object."
REVISION "200808010000Z" -- Aug 01, 2008
DESCRIPTION
"Added new fru type PSD to jnxFruType enumeration and
added jcsX chassis IDs to JnxChassisId enumeration."
REVISION "200812310000Z" -- Dec 31, 2008
DESCRIPTION "Added nodeX chassis IDs to JnxChassisId enumeration."
REVISION "200901090000Z" -- Jan 09, 2009
DESCRIPTION
"Added sfcX and lcc4-lcc15 chassis IDs to JnxChassisId
enumeration."
::= { jnxMibs 1 }
--
-- Textual Conventions
--
JnxChassisId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Identifies a specific router chassis."
SYNTAX INTEGER {
unknown (1),
singleChassis (2),
scc (3),
lcc0 (4),
lcc1 (5),
lcc2 (6),
lcc3 (7),
jcs1 (8),
jcs2 (9),
jcs3 (10),
jcs4 (11),
node0 (12),
node1 (13),
sfc0 (14),
sfc1 (15),
sfc2 (16),
sfc3 (17),
sfc4 (18),
lcc4 (19),
lcc5 (20),
lcc6 (21),
lcc7 (22),
lcc8 (23),
lcc9 (24),
lcc10 (25),
lcc11 (26),
lcc12 (27),
lcc13 (28),
lcc14 (29),
lcc15 (30),
member0 (31),
member1 (32),
member2 (33),
member3 (34),
member4 (35),
member5 (36),
member6 (37),
member7 (38)
}
-- Juniper Box Anatomy MIB
--
-- Top level objects
jnxBoxClass OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The class of the box, indicating which product line
the box is about, for example, 'Internet Router'."
::= { jnxBoxAnatomy 1 }
jnxBoxDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name, model, or detailed description of the box,
indicating which product the box is about, for example
'M40'."
::= { jnxBoxAnatomy 2 }
jnxBoxSerialNo OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of this subject, blank if unknown
or unavailable."
::= { jnxBoxAnatomy 3 }
jnxBoxRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The revision of this subject, blank if unknown or
unavailable."
::= { jnxBoxAnatomy 4 }
jnxBoxInstalled OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the subject was last
installed, up-and-running. Zero if unknown or
already up-and-running when the agent was up."
::= { jnxBoxAnatomy 5 }
--
-- Box Containers Table
--
jnxContainersTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxContainersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of containers entries."
::= { jnxBoxAnatomy 6 }
jnxContainersEntry OBJECT-TYPE
SYNTAX JnxContainersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of containers table."
INDEX { jnxContainersIndex }
::= { jnxContainersTable 1 }
JnxContainersEntry ::= SEQUENCE {
jnxContainersIndex Integer32,
jnxContainersView Integer32,
jnxContainersLevel Integer32,
jnxContainersWithin Integer32,
jnxContainersType OBJECT IDENTIFIER,
jnxContainersDescr DisplayString,
jnxContainersCount Integer32
}
jnxContainersIndex OBJECT-TYPE
SYNTAX Integer32 (1..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for this entry."
::= { jnxContainersEntry 1 }
jnxContainersView OBJECT-TYPE
SYNTAX Integer32 (1..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The view(s) from which the specific container
appears.
This variable indicates that the specific container
is embedded and accessible from the corresponding
view(s).
The value is a bit map represented as a sum.
If multiple bits are set, the specified
container(s) are located and accessible from
that set of views.
The various values representing the bit positions
and its corresponding views are:
1 front
2 rear
4 top
8 bottom
16 leftHandSide
32 rightHandSide
Note 1:
LefHandSide and rightHandSide are referred
to based on the view from the front.
Note 2:
If the specified containers are scattered
around various views, the numbering is according
to the following sequence:
front -> rear -> top -> bottom
-> leftHandSide -> rightHandSide
For each view plane, the numbering sequence is
first from left to right, and then from up to down.
Note 3:
Even though the value in chassis hardware (e.g.
slot number) may be labelled from 0, 1, 2, and up,
all the indices in MIB start with 1 (not 0)
according to network management convention."
::= { jnxContainersEntry 2 }
jnxContainersLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The abstraction level of the box or chassis.
It is enumerated from the outside to the inside,
from the outer layer to the inner layer.
For example, top level (i.e. level 0) refers to
chassis frame, level 1 FPC slot within chassis
frame, level 2 PIC space within FPC slot."
::= { jnxContainersEntry 3 }
jnxContainersWithin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of its next higher level container
housing this entry. The associated
jnxContainersIndex in the jnxContainersTable
represents its next higher level container."
::= { jnxContainersEntry 4 }
jnxContainersType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of this container."
::= { jnxContainersEntry 5 }
jnxContainersDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this
subject."
::= { jnxContainersEntry 6 }
jnxContainersCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of containers of this level
per container of the next higher level.
e.g. if there are six level 2 containers in
level 1 container, then jnxContainersCount for
level 2 is six."
::= { jnxContainersEntry 7 }
--
-- Box Contents Table
--
jnxContentsLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the box contents
table last changed. Zero if unknown or already
existing when the agent was up."
::= { jnxBoxAnatomy 7 }
jnxContentsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxContentsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of contents entries."
::= { jnxBoxAnatomy 8 }
jnxContentsEntry OBJECT-TYPE
SYNTAX JnxContentsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of contents table."
INDEX { jnxContentsContainerIndex,
jnxContentsL1Index,
jnxContentsL2Index,
jnxContentsL3Index }
::= { jnxContentsTable 1 }
JnxContentsEntry ::= SEQUENCE {
jnxContentsContainerIndex Integer32,
jnxContentsL1Index Integer32,
jnxContentsL2Index Integer32,
jnxContentsL3Index Integer32,
jnxContentsType OBJECT IDENTIFIER,
jnxContentsDescr DisplayString,
jnxContentsSerialNo DisplayString,
jnxContentsRevision DisplayString,
jnxContentsInstalled TimeStamp,
jnxContentsPartNo DisplayString,
jnxContentsChassisId JnxChassisId,
jnxContentsChassisDescr DisplayString,
jnxContentsChassisCleiCode DisplayString
}
jnxContentsContainerIndex OBJECT-TYPE
SYNTAX Integer32 (1..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxContainersIndex in the
jnxContainersTable."
::= { jnxContentsEntry 1 }
jnxContentsL1Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level one index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxContentsEntry 2 }
jnxContentsL2Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level two index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxContentsEntry 3 }
jnxContentsL3Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level three index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxContentsEntry 4 }
jnxContentsType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of this subject. zeroDotZero
if unknown."
::= { jnxContentsEntry 5 }
jnxContentsDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this
subject."
::= { jnxContentsEntry 6 }
jnxContentsSerialNo OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of this subject, blank if
unknown or unavailable."
::= { jnxContentsEntry 7 }
jnxContentsRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The revision of this subject, blank if unknown
or unavailable."
::= { jnxContentsEntry 8 }
jnxContentsInstalled OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the subject was last
installed, up-and-running. Zero if unknown
or already up-and-running when the agent was up."
::= { jnxContentsEntry 9 }
jnxContentsPartNo OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The part number of this subject, blank if unknown
or unavailable."
::= { jnxContentsEntry 10 }
jnxContentsChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxContentsEntry 11 }
jnxContentsChassisDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of the chassis on which the
contents of this row exists."
::= { jnxContentsEntry 12 }
jnxContentsChassisCleiCode OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The clei code of this subject, blank if unknown
or unavailable.
A CLEI code is an intelligent code that consists of 10
alphanumeric characters with 4 data elements. The first data
element is considered the basic code with the first 2 characters
indicating the technology or equipment type, and the third and
fourth characters denoting the functional sub-category. The
second data element represents the features, and its three
characters denote functional capabilities or changes. The third
data element has one character and denotes a reference to a
manufacturer, system ID, specification, or drawing. The fourth
data element consists of two characters and contains complementary
data. These two characters provide a means of differentiating or
providing uniqueness between the eight character CLEI codes by
identifying the manufacturing vintage of the product. Names are
assigned via procedures defined in [GR485].
The assigned maintenance agent for the CLEI code, Telcordia
Technologies, is responsible for assigning certain equipment and
other identifiers (e.g., location, manufacturer/supplier) for the
telecommunications industry."
::= { jnxContentsEntry 13 }
--
-- Box LED Indicators Table
--
jnxLEDLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of sysUpTime when the box LED table
last changed. Zero if unknown or already at
that state when the agent was up."
::= { jnxBoxAnatomy 9 }
jnxLEDTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxLEDEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A list of status entries."
::= { jnxBoxAnatomy 10 }
jnxLEDEntry OBJECT-TYPE
SYNTAX JnxLEDEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry of status table."
INDEX { jnxLEDAssociateTable,
jnxLEDAssociateIndex,
jnxLEDL1Index,
jnxLEDL2Index,
jnxLEDL3Index }
::= { jnxLEDTable 1 }
JnxLEDEntry ::= SEQUENCE {
jnxLEDAssociateTable INTEGER,
jnxLEDAssociateIndex Integer32,
jnxLEDL1Index Integer32,
jnxLEDL2Index Integer32,
jnxLEDL3Index Integer32,
jnxLEDOriginator OBJECT IDENTIFIER,
jnxLEDDescr DisplayString,
jnxLEDState INTEGER,
jnxLEDStateOrdered INTEGER
}
jnxLEDAssociateTable OBJECT-TYPE
SYNTAX INTEGER {
other(1),
jnxContainersTable(2),
jnxContentsTable(3)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The associated table that this entry is
related."
::= { jnxLEDEntry 1 }
jnxLEDAssociateIndex OBJECT-TYPE
SYNTAX Integer32 (1..'7fffffff'h)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The index of the associated table that this
entry is related."
::= { jnxLEDEntry 2 }
jnxLEDL1Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The level one index of the associated
table that this entry is related. Zero
if unavailable or inapplicable."
::= { jnxLEDEntry 3 }
jnxLEDL2Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The level two index of the associated
table that this entry is related. Zero
if unavailable or inapplicable."
::= { jnxLEDEntry 4 }
jnxLEDL3Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The level three index of the associated
table that this entry is related. Zero
if unavailable or inapplicable."
::= { jnxLEDEntry 5 }
jnxLEDOriginator OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The originator of the this entry."
::= { jnxLEDEntry 6 }
jnxLEDDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The name or detailed description of this subject."
::= { jnxLEDEntry 7 }
jnxLEDState OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- unknown or unavailable
green(2), -- ok, good, normally working,
-- or on-line as a standby backup if
-- there is an active primary
yellow(3), -- alarm, warning, marginally working
red(4), -- alert, failed, not working
blue(5), -- ok, on-line as an active primary
amber(6) -- alarm, off-line, not running
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The state of the LED indicator."
::= { jnxLEDEntry 8 }
jnxLEDStateOrdered OBJECT-TYPE
SYNTAX INTEGER {
blue(1), -- ok, on-line as an active primary
green(2), -- ok, good, normally working,
-- or on-line as a standby backup if
-- there is an active primary
amber(3), -- alarm, off-line, not running
yellow(4), -- alarm, warning, marginally working
red(5), -- alert, failed, not working
other(6) -- unknown or unavailable
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The state of the LED indicator. Identical to jnxLEDState, but
with enums ordered from 'most operational' to 'least
operational' states."
::= { jnxLEDEntry 9 }
--
-- Box Filled Status Table
--
-- This table show the empty/filled status of the container in the
-- box containers table.
--
jnxFilledLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the box filled
status table last changed. Zero if unknown or
already at that state when the agent was up."
::= { jnxBoxAnatomy 11 }
jnxFilledTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFilledEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of filled status entries."
::= { jnxBoxAnatomy 12 }
jnxFilledEntry OBJECT-TYPE
SYNTAX JnxFilledEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of filled status table."
INDEX { jnxFilledContainerIndex,
jnxFilledL1Index,
jnxFilledL2Index,
jnxFilledL3Index }
::= { jnxFilledTable 1 }
JnxFilledEntry ::= SEQUENCE {
jnxFilledContainerIndex Integer32,
jnxFilledL1Index Integer32,
jnxFilledL2Index Integer32,
jnxFilledL3Index Integer32,
jnxFilledDescr DisplayString,
jnxFilledState INTEGER,
jnxFilledChassisId JnxChassisId,
jnxFilledChassisDescr DisplayString
}
jnxFilledContainerIndex OBJECT-TYPE
SYNTAX Integer32 (1..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxContainersIndex in the
jnxContainersTable."
::= { jnxFilledEntry 1 }
jnxFilledL1Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level one index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFilledEntry 2 }
jnxFilledL2Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level two index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFilledEntry 3 }
jnxFilledL3Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level three index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFilledEntry 4 }
jnxFilledDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this
subject."
::= { jnxFilledEntry 5 }
jnxFilledState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
empty(2),
filled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The filled state of this subject."
::= { jnxFilledEntry 6 }
jnxFilledChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxFilledEntry 7 }
jnxFilledChassisDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of the chassis on which the
contents of this row exists."
::= { jnxFilledEntry 8 }
--
-- Box Operating Status Table
--
-- This table reveals the operating status of some subjects
-- of interest in the box contents table.
--
jnxOperatingTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxOperatingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of operating status entries."
::= { jnxBoxAnatomy 13 }
jnxOperatingEntry OBJECT-TYPE
SYNTAX JnxOperatingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of operating status table."
INDEX { jnxOperatingContentsIndex,
jnxOperatingL1Index,
jnxOperatingL2Index,
jnxOperatingL3Index }
::= { jnxOperatingTable 1 }
JnxOperatingEntry ::= SEQUENCE {
jnxOperatingContentsIndex Integer32,
jnxOperatingL1Index Integer32,
jnxOperatingL2Index Integer32,
jnxOperatingL3Index Integer32,
jnxOperatingDescr DisplayString,
jnxOperatingState INTEGER,
jnxOperatingTemp Gauge32,
jnxOperatingCPU Gauge32,
jnxOperatingISR Gauge32,
jnxOperatingDRAMSize Integer32,
jnxOperatingBuffer Gauge32,
jnxOperatingHeap Gauge32,
jnxOperatingUpTime TimeInterval,
jnxOperatingLastRestart TimeStamp,
jnxOperatingMemory Integer32,
jnxOperatingStateOrdered INTEGER,
jnxOperatingChassisId JnxChassisId,
jnxOperatingChassisDescr DisplayString,
jnxOperatingRestartTime DateAndTime,
jnxOperating1MinLoadAvg Gauge32,
jnxOperating5MinLoadAvg Gauge32,
jnxOperating15MinLoadAvg Gauge32
}
jnxOperatingContentsIndex OBJECT-TYPE
SYNTAX Integer32 (1..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxContentsContainerIndex in the
jnxContentsTable."
::= { jnxOperatingEntry 1 }
jnxOperatingL1Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level one index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 2 }
jnxOperatingL2Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level two index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 3 }
jnxOperatingL3Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level three index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 4 }
jnxOperatingDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this subject."
::= { jnxOperatingEntry 5 }
jnxOperatingState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
running(2), -- up and running,
-- as a active primary
ready(3), -- ready to run, not running yet
reset(4), -- held in reset, not ready yet
runningAtFullSpeed(5),
-- valid for fans only
down(6), -- down or off, for power supply
standby(7) -- running as a standby backup
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating state of this subject."
::= { jnxOperatingEntry 6 }
jnxOperatingTemp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature in Celsius (degrees C) of this
subject. Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 7 }
jnxOperatingCPU OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization in percentage of this
subject. Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 8 }
jnxOperatingISR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization in percentage of this subject
spending in interrupt service routine (ISR).
Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 9 }
jnxOperatingDRAMSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The DRAM size in bytes of this subject.
Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 10 }
jnxOperatingBuffer OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The buffer pool utilization in percentage
of this subject. Zero if unavailable or
inapplicable."
::= { jnxOperatingEntry 11 }
jnxOperatingHeap OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The heap utilization in percentage of
this subject. Zero if unavailable or
inapplicable."
::= { jnxOperatingEntry 12 }
jnxOperatingUpTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The time interval in 10-millisecond period
that this subject has been up and running.
Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 13 }
jnxOperatingLastRestart OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this subject
last restarted. Zero if unavailable or
inapplicable."
::= { jnxOperatingEntry 14 }
jnxOperatingMemory OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The installed memory size in Megabytes
of this subject. Zero if unavailable or
inapplicable."
::= { jnxOperatingEntry 15 }
jnxOperatingStateOrdered OBJECT-TYPE
SYNTAX INTEGER {
running(1), -- up and running,
-- as a active primary
standby(2), -- running as a standby backup
ready(3), -- ready to run, not running yet
runningAtFullSpeed(4),
-- valid for fans only
reset(5), -- held in reset, not ready yet
down(6), -- down or off, for power supply
unknown(7)