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
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
|
--
-- 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: support@juniper.net"
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)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating state of this subject. Identical to
jnxOperatingState, but with enums ordered from 'most
operational' to 'least operational' states."
::= { jnxOperatingEntry 16 }
jnxOperatingChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxOperatingEntry 17 }
jnxOperatingChassisDescr 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."
::= { jnxOperatingEntry 18 }
jnxOperatingRestartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this entity
last restarted."
::= { jnxOperatingEntry 19 }
jnxOperating1MinLoadAvg OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU Load Average over the last 1 minutes
Here it will be shown as percentage value
Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 20 }
jnxOperating5MinLoadAvg OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU Load Average over the last 5 minutes
Here it will be shown as percentage value
Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 21 }
jnxOperating15MinLoadAvg OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU Load Average over the last 15 minutes
Here it will be shown as percentage value
Zero if unavailable or inapplicable."
::= { jnxOperatingEntry 22 }
--
-- Box Redundancy Information Table
--
-- This table shows the internal configuration setting for the
-- available redundant subsystems or components in the box.
--
jnxRedundancyTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxRedundancyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of redundancy information entries."
::= { jnxBoxAnatomy 14 }
jnxRedundancyEntry OBJECT-TYPE
SYNTAX JnxRedundancyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the redundancy information table."
INDEX { jnxRedundancyContentsIndex,
jnxRedundancyL1Index,
jnxRedundancyL2Index,
jnxRedundancyL3Index }
::= { jnxRedundancyTable 1 }
JnxRedundancyEntry ::= SEQUENCE {
jnxRedundancyContentsIndex Integer32,
jnxRedundancyL1Index Integer32,
jnxRedundancyL2Index Integer32,
jnxRedundancyL3Index Integer32,
jnxRedundancyDescr DisplayString,
jnxRedundancyConfig INTEGER,
jnxRedundancyState INTEGER,
jnxRedundancySwitchoverCount Counter32,
jnxRedundancySwitchoverTime TimeStamp,
jnxRedundancySwitchoverReason INTEGER,
jnxRedundancyKeepaliveHeartbeat Integer32,
jnxRedundancyKeepaliveTimeout Integer32,
jnxRedundancyKeepaliveElapsed Integer32,
jnxRedundancyKeepaliveLoss Counter32,
jnxRedundancyChassisId JnxChassisId,
jnxRedundancyChassisDescr DisplayString
}
jnxRedundancyContentsIndex OBJECT-TYPE
SYNTAX Integer32 (1..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxContentsContainerIndex in the
jnxContentsTable."
::= { jnxRedundancyEntry 1 }
jnxRedundancyL1Index 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."
::= { jnxRedundancyEntry 2 }
jnxRedundancyL2Index 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."
::= { jnxRedundancyEntry 3 }
jnxRedundancyL3Index 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."
::= { jnxRedundancyEntry 4 }
jnxRedundancyDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this subject."
::= { jnxRedundancyEntry 5 }
jnxRedundancyConfig OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
master(2), -- election priority set as a master
backup(3), -- election priority set as a backup
disabled(4), -- election disabled
notApplicable(5) -- any among the available can be master
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The election priority of redundancy configuration for
this subject. The value 'notApplicable' means no
specific instance is configured to be master or
backup; whichever component boots up first becomes a
master."
::= { jnxRedundancyEntry 6 }
jnxRedundancyState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
master(2), -- master
backup(3), -- backup
disabled(4) -- disabled
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current running state for this subject."
::= { jnxRedundancyEntry 7 }
jnxRedundancySwitchoverCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of switchover as perceived by
this subject since routing engine is up and running.
The switchover is defined as a change in state of
jnxRedundancyState from master to backup or vice
versa. Its value is reset when the routing engine
is reset or rebooted."
::= { jnxRedundancyEntry 8 }
jnxRedundancySwitchoverTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the jnxRedundancyState
of this subject was last switched over from master
to backup or vice versa. Zero if unknown or never
switched over since the routing engine is up and
running."
::= { jnxRedundancyEntry 9 }
jnxRedundancySwitchoverReason OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- others
neverSwitched(2), -- never switched
userSwitched(3), -- user-initiated switchover
autoSwitched(4) -- automatic switchover
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason of the last switchover for this subject."
::= { jnxRedundancyEntry 10 }
jnxRedundancyKeepaliveHeartbeat OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The period of sending keepalive messages between
the master and backup subsystems. It is a system-wide
preset value in seconds used by internal mastership
resolution. Zero if unavailable or inapplicable."
::= { jnxRedundancyEntry 11 }
jnxRedundancyKeepaliveTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The timeout period in seconds, by the keepalive
watchdog timer, before initiating a switch over to
the backup subsystem. Zero if unavailable or
inapplicable."
::= { jnxRedundancyEntry 12 }
jnxRedundancyKeepaliveElapsed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The elapsed time in seconds by this subject since
receiving the last keepalive message from the other
subsystems. Zero if unavailable or inapplicable."
::= { jnxRedundancyEntry 13 }
jnxRedundancyKeepaliveLoss OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of losses on keepalive messages
between the master and backup subsystems as perceived
by this subject since the system is up and running.
Zero if unavailable or inapplicable."
::= { jnxRedundancyEntry 14 }
jnxRedundancyChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxRedundancyEntry 15 }
jnxRedundancyChassisDescr 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."
::= { jnxRedundancyEntry 16 }
--
-- FRU (Field Replaceable Unit) Status Table
--
-- This table shows the status of the FRUs in the chassis.
--
jnxFruTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFruEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of FRU status entries."
::= { jnxBoxAnatomy 15 }
jnxFruEntry OBJECT-TYPE
SYNTAX JnxFruEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the FRU status table."
INDEX { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index }
::= { jnxFruTable 1 }
JnxFruEntry ::= SEQUENCE {
jnxFruContentsIndex Integer32,
jnxFruL1Index Integer32,
jnxFruL2Index Integer32,
jnxFruL3Index Integer32,
jnxFruName DisplayString,
jnxFruType INTEGER,
jnxFruSlot Integer32,
jnxFruState INTEGER,
jnxFruTemp Gauge32,
jnxFruOfflineReason INTEGER,
jnxFruLastPowerOff TimeStamp,
jnxFruLastPowerOn TimeStamp,
jnxFruPowerUpTime TimeInterval,
jnxFruChassisId JnxChassisId,
jnxFruChassisDescr DisplayString,
jnxFruPsdAssignment Integer32
}
jnxFruContentsIndex OBJECT-TYPE
SYNTAX Integer32 (1..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxContentsContainerIndex in the
jnxContentsTable."
::= { jnxFruEntry 1 }
jnxFruL1Index 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."
::= { jnxFruEntry 2 }
jnxFruL2Index 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."
::= { jnxFruEntry 3 }
jnxFruL3Index 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."
::= { jnxFruEntry 4 }
jnxFruName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this subject."
::= { jnxFruEntry 5 }
jnxFruType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- unknown or others
clockGenerator(2), -- CG
flexiblePicConcentrator(3), -- FPC
switchingAndForwardingModule(4), -- SFM
controlBoard(5), -- CBD, SCB
routingEngine(6), -- RE
powerEntryModule(7), -- PEM
frontPanelModule(8), -- FPM
switchInterfaceBoard(9), -- SIB
processorMezzanineBoardForSIB(10), -- SPMB
portInterfaceCard(11), -- PIC
craftInterfacePanel(12), -- CIP
fan(13), -- fan
lineCardChassis(14), -- LCC
forwardingEngineBoard(15), -- FEB
protectedSystemDomain(16) -- PSD
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FRU type for this subject."
::= { jnxFruEntry 6 }
jnxFruSlot OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot number of this subject. This is equivalent
to jnxFruL1Index in meaning. Zero if unavailable or
inapplicable."
::= { jnxFruEntry 7 }
jnxFruState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
empty(2),
present(3),
ready(4),
announceOnline(5),
online(6),
anounceOffline(7),
offline(8),
diagnostic(9),
standby(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state for this subject."
::= { jnxFruEntry 8 }
jnxFruTemp 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."
::= { jnxFruEntry 9 }
jnxFruOfflineReason OBJECT-TYPE
SYNTAX INTEGER {
unknown(1), -- unknown or other
none(2), -- none
error(3), -- error
noPower(4), -- no power
configPowerOff(5), -- configured to power off
configHoldInReset(6), -- configured to hold in reset
cliCommand(7), -- offlined by cli command
buttonPress(8), -- offlined by button press
cliRestart(9), -- restarted by cli command
overtempShutdown(10), -- overtemperature shutdown
masterClockDown(11), -- master clock down
singleSfmModeChange(12), -- single SFM mode change
packetSchedulingModeChange(13), -- packet scheduling mode change
physicalRemoval(14), -- physical removal
unresponsiveRestart(15), -- restarting unresponsive board
sonetClockAbsent(16), -- sonet out clock absent
rddPowerOff(17), -- RDD power off
majorErrors(18), -- major errors
minorErrors(19), -- minor errors
lccHardRestart(20), -- LCC hard restart
lccVersionMismatch(21), -- LCC version mismatch
powerCycle(22), -- power cycle
reconnect(23), -- reconnect
overvoltage(24), -- overvoltage
pfeVersionMismatch(25), -- PFE version mismatch
febRddCfgChange(26), -- FEB redundancy cfg changed
fpcMisconfig(27), -- FPC is misconfigured
fruReconnectFail(28), -- FRU did not reconnect
fruFwddReset(29), -- FWDD reset the fru
fruFebSwitch(30), -- FEB got switched
fruFebOffline(31), -- FEB was offlined
fruInServSoftUpgradeError(32), -- In Service Software Upgrade Error
fruChasdPowerRatingExceed(33), -- Chassis power rating exceeded
fruConfigOffline(34), -- Configured offline
fruServiceRestartRequest(35), -- restarting request from a service
spuResetRequest(36), -- SPU reset request
spuFlowdDown(37), -- SPU flowd down
spuSpi4Down(38), -- SPU SPI4 down
spuWatchdogTimeout(39), -- SPU Watchdog timeout
spuCoreDump(40), -- SPU kernel core dump
fpgaSpi4LinkDown(41), -- FPGA SPI4 link down
i3Spi4LinkDown(42), -- I3 SPI4 link down
cppDisconnect(43), -- CPP disconnect
cpuNotBoot(44), -- CPU not boot
spuCoreDumpComplete(45), -- SPU kernel core dump complete
rstOnSpcSpuFailure(46), -- Rst on SPC SPU failure
softRstOnSpcSpuFailure(47), -- Soft Reset on SPC SPU failure
hwAuthenticationFailure(48), -- HW authentication failure
reconnectFpcFail(49), -- Reconnect FPC fail
fpcAppFailed(50), -- FPC app failed
fpcKernelCrash(51), -- FPC kernel crash
spuFlowdDownNoCore(52), -- SPU flowd down, no core dump
spuFlowdCoreDumpIncomplete(53), -- SPU flowd crash with incomplete core dump
spuFlowdCoreDumpComplete(54), -- SPU flowd crash with complete core dump
spuIdpdDownNoCore(55), -- SPU idpd down, no core dump
spuIdpdCoreDumpIncomplete(56), -- SPU idpd crash with incomplete core dump
spuIdpdCoreDumpComplete(57), -- SPU idpd crash with complete core dump
spuCoreDumpIncomplete(58), -- SPU kernel crash with incomplete core dump
spuIdpdDown(59), -- SPU idpd down
fruPfeReset(60), -- PFE reset
fruReconnectNotReady(61), -- FPC not ready to reconnect
fruSfLinkDown(62), -- FE - Fabric links down
fruFabricDown(63), -- Fabric transitioned from up to down
fruAntiCounterfeitRetry(64), -- FPC offlined due to Anti Counterfeit Retry
fruFPCChassisClusterDisable(65), -- FPC offlined due to Chassis Cluster Disable
spuFipsError(66), -- SPU fips error
fruFPCFabricDownOffline(67), -- FPC offlined due to Fabric down
febCfgChange(68), -- FEB config change
routeLocalizationRoleChange(69), -- Route localization role change
fruFpcUnsupported(70), -- FPC unsupported
psdVersionMismatch(71), -- PSD version mismatch
fruResetThresholdExceeded(72), -- FRU Reset Threshold Exceeded
picBounce(73), -- PIC Bounce
badVoltage(74) -- bad voltage
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The offline reason of this subject."
::= { jnxFruEntry 10 }
jnxFruLastPowerOff OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this subject was last
powered off. Zero if unavailable or inapplicable."
::= { jnxFruEntry 11 }
jnxFruLastPowerOn OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this subject was last
powered on. Zero if unavailable or inapplicable."
::= { jnxFruEntry 12 }
jnxFruPowerUpTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time interval in 10-millisecond period
that this subject has been up and running
since the last power on time. Zero if
unavailable or inapplicable."
::= { jnxFruEntry 13 }
jnxFruChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxFruEntry 14 }
jnxFruChassisDescr 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."
::= { jnxFruEntry 15 }
jnxFruPsdAssignment OBJECT-TYPE
SYNTAX Integer32 (0..31)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PSD assignment of this subject. Zero if unavailable or
not applicable."
::= { jnxFruEntry 16 }
--
-- definition of Kernel Memory Used related stuff
--
jnxBoxKernelMemoryUsedPercent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of kernel memory used
of this subject. 0 if unavailable or
inapplicable."
::= { jnxBoxAnatomy 16 }
--
-- definition of system domain information
--
jnxBoxSystemDomainType OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
rootSystemDomain(2),
protectedSystemDomain(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system domain type of this subject, notApplicable will
be returned if this feature is not supported."
::= { jnxBoxAnatomy 17 }
--
-- definition of chassis related traps
--
-- Traps for chassis alarm conditions
jnxPowerSupplyFailure NOTIFICATION-TYPE
OBJECTS { jnxContentsContainerIndex,
jnxContentsL1Index,
jnxContentsL2Index,
jnxContentsL3Index,
jnxContentsDescr,
jnxOperatingState }
STATUS current
DESCRIPTION
"A jnxPowerSupplyFailure trap signifies that
the SNMP entity, acting in an agent role, has
detected that the specified power supply in the
chassis has been in the failure (bad DC output)
condition."
::= { jnxChassisTraps 1 }
jnxFanFailure NOTIFICATION-TYPE
OBJECTS { jnxContentsContainerIndex,
jnxContentsL1Index,
jnxContentsL2Index,
jnxContentsL3Index,
jnxContentsDescr,
jnxOperatingState }
STATUS current
DESCRIPTION
"A jnxFanFailure trap signifies that the SNMP
entity, acting in an agent role, has detected
that the specified cooling fan or impeller in
the chassis has been in the failure (not spinning)
condition."
::= { jnxChassisTraps 2 }
jnxOverTemperature NOTIFICATION-TYPE
OBJECTS { jnxContentsContainerIndex,
jnxContentsL1Index,
jnxContentsL2Index,
jnxContentsL3Index,
jnxContentsDescr,
jnxOperatingTemp }
STATUS current
DESCRIPTION
"A jnxOverTemperature trap signifies that the
SNMP entity, acting in an agent role, has
detected that the specified hardware component
in the chassis has experienced over temperature
condition."
::= { jnxChassisTraps 3 }
jnxRedundancySwitchover NOTIFICATION-TYPE
OBJECTS { jnxRedundancyContentsIndex,
jnxRedundancyL1Index,
jnxRedundancyL2Index,
jnxRedundancyL3Index,
jnxRedundancyDescr,
jnxRedundancyConfig,
jnxRedundancyState,
jnxRedundancySwitchoverCount,
jnxRedundancySwitchoverTime,
jnxRedundancySwitchoverReason }
STATUS current
DESCRIPTION
"A jnxRedundancySwitchover trap signifies that
the SNMP entity, acting in an agent role, has
detected that the specified hardware component
in the chassis has experienced a redundancy
switchover event defined as a change in state
of jnxRedundancyState from master to backup or
vice versa."
::= { jnxChassisTraps 4 }
jnxFruRemoval NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A jnxFruRemoval trap signifies that the SNMP
entity, acting in an agent role, has detected
that the specified FRU (Field Replaceable Unit)
has been removed from the chassis."
::= { jnxChassisTraps 5 }
jnxFruInsertion NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A jnxFruInsertion trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified FRU (Field Replaceable Unit) has been
inserted into the chassis."
::= { jnxChassisTraps 6 }
jnxFruPowerOff NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot,
jnxFruOfflineReason,
jnxFruLastPowerOff,
jnxFruLastPowerOn }
STATUS current
DESCRIPTION
"A jnxFruPowerOff trap signifies that the SNMP
entity, acting in an agent role, has detected
that the specified FRU (Field Replaceable Unit)
has been powered off in the chassis."
::= { jnxChassisTraps 7 }
jnxFruPowerOn NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot,
jnxFruOfflineReason,
jnxFruLastPowerOff,
jnxFruLastPowerOn }
STATUS current
DESCRIPTION
"A jnxFruPowerOn trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified FRU (Field Replaceable Unit) has been
powered on in the chassis."
::= { jnxChassisTraps 8 }
jnxFruFailed NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"This indicates the specified FRU (Field Replaceable Unit)
has failed in the chassis. Most probably this is due toi
some hard error such as fru is not powering up or not
able to load ukernel. In these cases, fru is replaced."
::= { jnxChassisTraps 9 }
jnxFruOffline NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot,
jnxFruOfflineReason,
jnxFruLastPowerOff,
jnxFruLastPowerOn }
STATUS current
DESCRIPTION
"A jnxFruOffline trap signifies that the SNMP
entity, acting in an agent role, has detected
that the specified FRU (Field Replaceable Unit)
has gone offline in the chassis."
::= { jnxChassisTraps 10 }
jnxFruOnline NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A jnxFruOnline trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified FRU (Field Replaceable Unit) has
gone online in the chassis."
::= { jnxChassisTraps 11 }
jnxFruCheck NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A jnxFruCheck trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified FRU (Field Replaceable Unit) has
encountered some operational errors and gone into
check state in the chassis."
::= { jnxChassisTraps 12 }
jnxFEBSwitchover NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A jnxFEBSwitchover trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified FEB (Forwarding Engine Board) has
switched over."
::= { jnxChassisTraps 13 }
jnxHardDiskFailed NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A jnxHardDiskFailed trap signifies that the SNMP
entity, acting in an agent role, has detected that
the Disk in the specified Routing Engine has
encountered some operational errors and gone into
failed state in the chassis."
::= { jnxChassisTraps 14 }
jnxHardDiskMissing NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A DiskMissing trap signifies that the SNMP
entity, acting in an agent role, has detected that
hard disk in the specified outing Engine is missing
from boot device list."
::= { jnxChassisTraps 15 }
jnxBootFromBackup NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A jnxBootFromBackup trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified routing-engine/member has booted from
the back up root partition"
::= { jnxChassisTraps 16 }
-- Traps for chassis alarm cleared conditions
jnxPowerSupplyOK NOTIFICATION-TYPE
OBJECTS { jnxContentsContainerIndex,
jnxContentsL1Index,
jnxContentsL2Index,
jnxContentsL3Index,
jnxContentsDescr,
jnxOperatingState }
STATUS current
DESCRIPTION
"A jnxPowerSupplyOK trap signifies that the
SNMP entity, acting in an agent role, has
detected that the specified power supply in the
chassis has recovered from the failure (bad DC output)
condition."
::= { jnxChassisOKTraps 1 }
jnxFanOK NOTIFICATION-TYPE
OBJECTS { jnxContentsContainerIndex,
jnxContentsL1Index,
jnxContentsL2Index,
jnxContentsL3Index,
jnxContentsDescr,
jnxOperatingState }
STATUS current
DESCRIPTION
"A jnxFanOK trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified cooling fan or impeller in the chassis
has recovered from the failure (not spinning) condition."
::= { jnxChassisOKTraps 2 }
jnxTemperatureOK NOTIFICATION-TYPE
OBJECTS { jnxContentsContainerIndex,
jnxContentsL1Index,
jnxContentsL2Index,
jnxContentsL3Index,
jnxContentsDescr,
jnxOperatingTemp }
STATUS current
DESCRIPTION
"A jnxTemperatureOK trap signifies that the
SNMP entity, acting in an agent role, has
detected that the specified hardware component
in the chassis has recovered from over temperature
condition."
::= { jnxChassisOKTraps 3 }
jnxFruOK NOTIFICATION-TYPE
OBJECTS { jnxFruContentsIndex,
jnxFruL1Index,
jnxFruL2Index,
jnxFruL3Index,
jnxFruName,
jnxFruType,
jnxFruSlot }
STATUS current
DESCRIPTION
"A jnxFruOK trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified FRU (Field Replaceable Unit) has
recovered from previous operational errors and it
is in ok state in the chassis."
::= { jnxChassisOKTraps 4 }
END
|