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
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
|
--
-- Juniper Enterprise Specific MIB: Fabric Chassis MIB
--
-- Copyright (c) 2012, Juniper Networks, Inc.
-- All rights reserved.
--
JUNIPER-FABRIC-CHASSIS DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, Counter32, TimeTicks
FROM SNMPv2-SMI
DisplayString, TEXTUAL-CONVENTION, DateAndTime
FROM SNMPv2-TC
jnxDcfMibRoot, jnxFabricChassisTraps, jnxFabricChassisOKTraps
FROM JUNIPER-SMI
JnxChassisId
FROM JUNIPER-MIB;
jnxFabricAnatomy MODULE-IDENTITY
LAST-UPDATED "201209130000Z" -- Thur Sept 13 00:00:00 2012 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 modules representing Juniper Networks'
Quantum Fabric hardware components."
REVISION
"201209130000Z" -- Thur Sept 13 00:00:00 2012 UTC
DESCRIPTION
"Added director group device (DG) enum to JnxFabricContainersFamily."
REVISION
"201207260000Z" -- Thur July 26 00:00:00 2012 UTC
DESCRIPTION
"Modified the description for JnxFabricDeviceId. Added
ufabric as part of JnxFabricContainersFamily."
::= { jnxDcfMibRoot 2 }
jnxFabricAnatomyScalars OBJECT IDENTIFIER ::= { jnxFabricAnatomy 1 }
jnxFabricAnatomyTables OBJECT IDENTIFIER ::= { jnxFabricAnatomy 2 }
--
-- Textual Conventions
--
JnxFabricDeviceId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The device identifier assigned to the individual devices across the fabric by SFC.
This shall be a unique index for each of the devices constituting the fabric."
SYNTAX Integer32 (1..2147483647)
JnxFabricContainersFamily ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The family of container that defines the device."
SYNTAX INTEGER {
fabricChassis(1),
fabricNode(2),
ufabric(3),
directorGroupDevice(4)
}
-- Juniper Fabric Anatomy MIB
--
-- Fabric Scalar Objects
jnxFabricClass OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The product line of the fabric switch."
::= { jnxFabricAnatomyScalars 1 }
jnxFabricDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name, model, or detailed description of the fabric,
indicating which product the fabric is about."
::= { jnxFabricAnatomyScalars 2 }
jnxFabricSerialNo 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."
::= { jnxFabricAnatomyScalars 3 }
jnxFabricRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The revision of this subject, blank if unknown or
unavailable."
::= { jnxFabricAnatomyScalars 4 }
jnxFabricFirmwareRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware (u-boot) revision of this subject, blank if unknown or
unavailable."
::= { jnxFabricAnatomyScalars 5 }
jnxFabricLastInstalled OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
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."
::= { jnxFabricAnatomyScalars 6 }
jnxFabricContentsLastChange OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the fabric contents
table last changed. Zero if unknown or already
existing when the agent was up."
::= { jnxFabricAnatomyScalars 7 }
jnxFabricFilledLastChange OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the fabric filled
status table last changed. Zero if unknown or
already at that state when the agent was up."
::= { jnxFabricAnatomyScalars 8 }
--
-- Fabric Device Table
--
jnxFabricDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFabricDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of fabric device entries."
::= { jnxFabricAnatomyTables 1 }
jnxFabricDeviceEntry OBJECT-TYPE
SYNTAX JnxFabricDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of fabric device table."
INDEX { jnxFabricDeviceIndex }
::= { jnxFabricDeviceTable 1 }
JnxFabricDeviceEntry ::= SEQUENCE {
jnxFabricDeviceIndex JnxFabricDeviceId,
jnxFabricDeviceEntryContainersFamily JnxFabricContainersFamily,
jnxFabricDeviceEntryClass OBJECT IDENTIFIER,
jnxFabricDeviceEntryModel OBJECT IDENTIFIER,
jnxFabricDeviceEntryDescr DisplayString,
jnxFabricDeviceEntrySerialNo DisplayString,
jnxFabricDeviceEntryName DisplayString,
jnxFabricDeviceEntryRevision DisplayString,
jnxFabricDeviceEntryFirmwareRevision DisplayString,
jnxFabricDeviceEntryInstalled TimeTicks,
jnxFabricDeviceEntryContentsLastChange TimeTicks,
jnxFabricDeviceEntryFilledLastChange TimeTicks,
jnxFabricDeviceEntryKernelMemoryUsedPercent Integer32
}
jnxFabricDeviceIndex OBJECT-TYPE
SYNTAX JnxFabricDeviceId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the device on which the contents of this
row exists."
::= { jnxFabricDeviceEntry 1 }
jnxFabricDeviceEntryContainersFamily OBJECT-TYPE
SYNTAX JnxFabricContainersFamily
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The family of container that defines this device."
::= { jnxFabricDeviceEntry 2 }
jnxFabricDeviceEntryClass OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The productline of the device entry."
::= { jnxFabricDeviceEntry 3 }
jnxFabricDeviceEntryModel OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model object identifier of the device entry."
::= { jnxFabricDeviceEntry 4 }
jnxFabricDeviceEntryDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of the device entry."
::= { jnxFabricDeviceEntry 5 }
jnxFabricDeviceEntrySerialNo 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."
::= { jnxFabricDeviceEntry 6 }
jnxFabricDeviceEntryName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of this subject which is same as the serial
number unless a device alias has been configured."
::= { jnxFabricDeviceEntry 7 }
jnxFabricDeviceEntryRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The revision of this subject, blank if unknown or
unavailable."
::= { jnxFabricDeviceEntry 8 }
jnxFabricDeviceEntryFirmwareRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware (u-boot) revision of this subject, blank if unknown or
unavailable."
::= { jnxFabricDeviceEntry 9 }
jnxFabricDeviceEntryInstalled OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
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."
::= { jnxFabricDeviceEntry 10 }
jnxFabricDeviceEntryContentsLastChange OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the contents
table last changed. Zero if unknown or already
existing when the agent was up."
::= { jnxFabricDeviceEntry 11 }
jnxFabricDeviceEntryFilledLastChange OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the filled
status table last changed. Zero if unknown or
already at that state when the agent was up."
::= { jnxFabricDeviceEntry 12 }
jnxFabricDeviceEntryKernelMemoryUsedPercent 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."
::= { jnxFabricDeviceEntry 13 }
--
-- Fabric Containers Table
--
jnxFabricContainersTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFabricContainersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of containers entries."
::= { jnxFabricAnatomyTables 2 }
jnxFabricContainersEntry OBJECT-TYPE
SYNTAX JnxFabricContainersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of containers table. Each entry is
indexed by the container table type and
the container index."
INDEX { jnxFabricContainersFamily,
jnxFabricContainersIndex }
::= { jnxFabricContainersTable 1 }
JnxFabricContainersEntry ::= SEQUENCE {
jnxFabricContainersFamily JnxFabricContainersFamily,
jnxFabricContainersIndex Integer32,
jnxFabricContainersView BITS,
jnxFabricContainersLevel INTEGER,
jnxFabricContainersWithin Integer32,
jnxFabricContainersType OBJECT IDENTIFIER,
jnxFabricContainersDescr DisplayString,
jnxFabricContainersCount Integer32
}
jnxFabricContainersFamily OBJECT-TYPE
SYNTAX JnxFabricContainersFamily
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The family of container."
::= { jnxFabricContainersEntry 1 }
jnxFabricContainersIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for this entry."
::= { jnxFabricContainersEntry 2 }
jnxFabricContainersView OBJECT-TYPE
SYNTAX BITS {
viewFront(0),
viewRear(1),
viewTop(2),
viewBottom(3),
viewLeftHandSide(4),
viewRightHandSide(5)
}
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."
::= { jnxFabricContainersEntry 3 }
jnxFabricContainersLevel OBJECT-TYPE
SYNTAX INTEGER {
level0(0),
level1(1),
level2(2),
level3(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The abstraction level of the chassis or device.
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."
::= { jnxFabricContainersEntry 4 }
jnxFabricContainersWithin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of its next higher level container
housing this entry. The associated
jnxFabricContainersIndex in the jnxFabricContainersTable
represents its next higher level container."
::= { jnxFabricContainersEntry 5 }
jnxFabricContainersType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of this container."
::= { jnxFabricContainersEntry 6 }
jnxFabricContainersDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this
subject."
::= { jnxFabricContainersEntry 7 }
jnxFabricContainersCount 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 jnxFabricContainersCount for
level 2 is six."
::= { jnxFabricContainersEntry 8 }
--
-- Fabric Contents Table
--
jnxFabricContentsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFabricContentsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of contents entries."
::= { jnxFabricAnatomyTables 3 }
jnxFabricContentsEntry OBJECT-TYPE
SYNTAX JnxFabricContentsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of contents table."
INDEX { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricContentsL3Index }
::= { jnxFabricContentsTable 1 }
JnxFabricContentsEntry ::= SEQUENCE {
jnxFabricContentsContainerIndex Integer32,
jnxFabricContentsL1Index Integer32,
jnxFabricContentsL2Index Integer32,
jnxFabricContentsL3Index Integer32,
jnxFabricContentsType OBJECT IDENTIFIER,
jnxFabricContentsDescr DisplayString,
jnxFabricContentsSerialNo DisplayString,
jnxFabricContentsRevision DisplayString,
jnxFabricContentsInstalled TimeTicks,
jnxFabricContentsPartNo DisplayString,
jnxFabricContentsChassisId JnxChassisId,
jnxFabricContentsChassisDescr DisplayString,
jnxFabricContentsChassisCleiCode DisplayString
}
jnxFabricContentsContainerIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxFabricContainersIndex in the
jnxFabricContainersTable."
::= { jnxFabricContentsEntry 1 }
jnxFabricContentsL1Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level one index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFabricContentsEntry 2 }
jnxFabricContentsL2Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level two index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFabricContentsEntry 3 }
jnxFabricContentsL3Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level three index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFabricContentsEntry 4 }
jnxFabricContentsType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of this subject. zeroDotZero
if unknown."
::= { jnxFabricContentsEntry 5 }
jnxFabricContentsDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this
subject."
::= { jnxFabricContentsEntry 6 }
jnxFabricContentsSerialNo 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."
::= { jnxFabricContentsEntry 7 }
jnxFabricContentsRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The revision of this subject, blank if unknown
or unavailable."
::= { jnxFabricContentsEntry 8 }
jnxFabricContentsInstalled OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
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."
::= { jnxFabricContentsEntry 9 }
jnxFabricContentsPartNo 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."
::= { jnxFabricContentsEntry 10 }
jnxFabricContentsChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxFabricContentsEntry 11 }
jnxFabricContentsChassisDescr 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."
::= { jnxFabricContentsEntry 12 }
jnxFabricContentsChassisCleiCode 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."
::= { jnxFabricContentsEntry 13 }
--
-- Fabric Filled Status Table
--
-- This table show the empty/filled status of the container in the
-- fabric containers table.
--
jnxFabricFilledTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFabricFilledEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of filled status entries."
::= { jnxFabricAnatomyTables 4 }
jnxFabricFilledEntry OBJECT-TYPE
SYNTAX JnxFabricFilledEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of filled status table."
INDEX { jnxFabricDeviceIndex,
jnxFabricFilledContainerIndex,
jnxFabricFilledL1Index,
jnxFabricFilledL2Index,
jnxFabricFilledL3Index }
::= { jnxFabricFilledTable 1 }
JnxFabricFilledEntry ::= SEQUENCE {
jnxFabricFilledContainerIndex Integer32,
jnxFabricFilledL1Index Integer32,
jnxFabricFilledL2Index Integer32,
jnxFabricFilledL3Index Integer32,
jnxFabricFilledDescr DisplayString,
jnxFabricFilledState INTEGER,
jnxFabricFilledChassisId JnxChassisId,
jnxFabricFilledChassisDescr DisplayString
}
jnxFabricFilledContainerIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxFabricContainersIndex in the
jnxFabricContainersTable."
::= { jnxFabricFilledEntry 1 }
jnxFabricFilledL1Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level one index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFabricFilledEntry 2 }
jnxFabricFilledL2Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level two index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFabricFilledEntry 3 }
jnxFabricFilledL3Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level three index of the container
housing this subject. Zero if unavailable
or inapplicable."
::= { jnxFabricFilledEntry 4 }
jnxFabricFilledDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this
subject."
::= { jnxFabricFilledEntry 5 }
jnxFabricFilledState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
empty(2),
filled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The filled state of this subject."
::= { jnxFabricFilledEntry 6 }
jnxFabricFilledChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxFabricFilledEntry 7 }
jnxFabricFilledChassisDescr 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."
::= { jnxFabricFilledEntry 8 }
--
-- Fabric Operating Status Table
--
-- This table reveals the operating status of some subjects
-- of interest in the fabric contents table.
--
jnxFabricOperatingTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFabricOperatingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of operating status entries."
::= { jnxFabricAnatomyTables 5 }
jnxFabricOperatingEntry OBJECT-TYPE
SYNTAX JnxFabricOperatingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of operating status table."
INDEX { jnxFabricDeviceIndex,
jnxFabricOperatingContentsIndex,
jnxFabricOperatingL1Index,
jnxFabricOperatingL2Index,
jnxFabricOperatingL3Index }
::= { jnxFabricOperatingTable 1 }
JnxFabricOperatingEntry ::= SEQUENCE {
jnxFabricOperatingContentsIndex Integer32,
jnxFabricOperatingL1Index Integer32,
jnxFabricOperatingL2Index Integer32,
jnxFabricOperatingL3Index Integer32,
jnxFabricOperatingDescr DisplayString,
jnxFabricOperatingState INTEGER,
jnxFabricOperatingTemp Integer32,
jnxFabricOperatingCPU Integer32,
jnxFabricOperatingISR Integer32,
jnxFabricOperatingDRAMSize Integer32,
jnxFabricOperatingBuffer Integer32,
jnxFabricOperatingHeap Integer32,
jnxFabricOperatingUpTime TimeTicks,
jnxFabricOperatingLastRestart TimeTicks,
jnxFabricOperatingMemory Integer32,
jnxFabricOperatingStateOrdered INTEGER,
jnxFabricOperatingChassisId JnxChassisId,
jnxFabricOperatingChassisDescr DisplayString,
jnxFabricOperatingRestartTime DateAndTime,
jnxFabricOperating1MinLoadAvg Integer32,
jnxFabricOperating5MinLoadAvg Integer32,
jnxFabricOperating15MinLoadAvg Integer32
}
jnxFabricOperatingContentsIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxFabricContentsContainerIndex in the
jnxFabricContentsTable."
::= { jnxFabricOperatingEntry 1 }
jnxFabricOperatingL1Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level one index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricOperatingEntry 2 }
jnxFabricOperatingL2Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level two index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricOperatingEntry 3 }
jnxFabricOperatingL3Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level three index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricOperatingEntry 4 }
jnxFabricOperatingDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this subject."
::= { jnxFabricOperatingEntry 5 }
jnxFabricOperatingState 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."
::= { jnxFabricOperatingEntry 6 }
jnxFabricOperatingTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "Celsius (degrees C)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature in Celsius (degrees C) of this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricOperatingEntry 7 }
jnxFabricOperatingCPU OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU utilization in percentage of this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricOperatingEntry 8 }
jnxFabricOperatingISR OBJECT-TYPE
SYNTAX Integer32
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."
::= { jnxFabricOperatingEntry 9 }
jnxFabricOperatingDRAMSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The DRAM size in bytes of this subject.
Zero if unavailable or inapplicable."
::= { jnxFabricOperatingEntry 10 }
jnxFabricOperatingBuffer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The buffer pool utilization in percentage
of this subject. Zero if unavailable or
inapplicable."
::= { jnxFabricOperatingEntry 11 }
jnxFabricOperatingHeap OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The heap utilization in percentage of
this subject. Zero if unavailable or
inapplicable."
::= { jnxFabricOperatingEntry 12 }
jnxFabricOperatingUpTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time interval in 10-millisecond period
that this subject has been up and running.
Zero if unavailable or inapplicable."
::= { jnxFabricOperatingEntry 13 }
jnxFabricOperatingLastRestart OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this subject
last restarted. Zero if unavailable or
inapplicable."
::= { jnxFabricOperatingEntry 14 }
jnxFabricOperatingMemory OBJECT-TYPE
SYNTAX Integer32
UNITS "Megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The installed memory size in Megabytes
of this subject. Zero if unavailable or
inapplicable."
::= { jnxFabricOperatingEntry 15 }
jnxFabricOperatingStateOrdered 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
jnxFabricOperatingState, but with enums ordered from 'most
operational' to 'least operational' states."
::= { jnxFabricOperatingEntry 16 }
jnxFabricOperatingChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxFabricOperatingEntry 17 }
jnxFabricOperatingChassisDescr 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."
::= { jnxFabricOperatingEntry 18 }
jnxFabricOperatingRestartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this entity
last restarted."
::= { jnxFabricOperatingEntry 19 }
jnxFabricOperating1MinLoadAvg OBJECT-TYPE
SYNTAX Integer32
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."
::= { jnxFabricOperatingEntry 20 }
jnxFabricOperating5MinLoadAvg OBJECT-TYPE
SYNTAX Integer32
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."
::= { jnxFabricOperatingEntry 21 }
jnxFabricOperating15MinLoadAvg OBJECT-TYPE
SYNTAX Integer32
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."
::= { jnxFabricOperatingEntry 22 }
--
-- Fabric Redundancy Information Table
--
-- This table shows the internal configuration setting for the
-- available redundant subsystems or components in the fabric.
--
jnxFabricRedundancyTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFabricRedundancyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of redundancy information entries."
::= { jnxFabricAnatomyTables 6 }
jnxFabricRedundancyEntry OBJECT-TYPE
SYNTAX JnxFabricRedundancyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the redundancy information table."
INDEX { jnxFabricDeviceIndex,
jnxFabricRedundancyContentsIndex,
jnxFabricRedundancyL1Index,
jnxFabricRedundancyL2Index,
jnxFabricRedundancyL3Index }
::= { jnxFabricRedundancyTable 1 }
JnxFabricRedundancyEntry ::= SEQUENCE {
jnxFabricRedundancyContentsIndex Integer32,
jnxFabricRedundancyL1Index Integer32,
jnxFabricRedundancyL2Index Integer32,
jnxFabricRedundancyL3Index Integer32,
jnxFabricRedundancyDescr DisplayString,
jnxFabricRedundancyConfig INTEGER,
jnxFabricRedundancyState INTEGER,
jnxFabricRedundancySwitchoverCount Counter32,
jnxFabricRedundancySwitchoverTime TimeTicks,
jnxFabricRedundancySwitchoverReason INTEGER,
jnxFabricRedundancyKeepaliveHeartbeat Integer32,
jnxFabricRedundancyKeepaliveTimeout Integer32,
jnxFabricRedundancyKeepaliveElapsed Integer32,
jnxFabricRedundancyKeepaliveLoss Counter32,
jnxFabricRedundancyChassisId JnxChassisId,
jnxFabricRedundancyChassisDescr DisplayString
}
jnxFabricRedundancyContentsIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxFabricContentsContainerIndex in the
jnxFabricContentsTable."
::= { jnxFabricRedundancyEntry 1 }
jnxFabricRedundancyL1Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level one index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricRedundancyEntry 2 }
jnxFabricRedundancyL2Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level two index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricRedundancyEntry 3 }
jnxFabricRedundancyL3Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level three index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricRedundancyEntry 4 }
jnxFabricRedundancyDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this subject."
::= { jnxFabricRedundancyEntry 5 }
jnxFabricRedundancyConfig 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."
::= { jnxFabricRedundancyEntry 6 }
jnxFabricRedundancyState 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."
::= { jnxFabricRedundancyEntry 7 }
jnxFabricRedundancySwitchoverCount 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
jnxFabricRedundancyState from master to backup or vice
versa. Its value is reset when the routing engine
is reset or rebooted."
::= { jnxFabricRedundancyEntry 8 }
jnxFabricRedundancySwitchoverTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the jnxFabricRedundancyState
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."
::= { jnxFabricRedundancyEntry 9 }
jnxFabricRedundancySwitchoverReason 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."
::= { jnxFabricRedundancyEntry 10 }
jnxFabricRedundancyKeepaliveHeartbeat 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."
::= { jnxFabricRedundancyEntry 11 }
jnxFabricRedundancyKeepaliveTimeout 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."
::= { jnxFabricRedundancyEntry 12 }
jnxFabricRedundancyKeepaliveElapsed 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."
::= { jnxFabricRedundancyEntry 13 }
jnxFabricRedundancyKeepaliveLoss 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."
::= { jnxFabricRedundancyEntry 14 }
jnxFabricRedundancyChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxFabricRedundancyEntry 15 }
jnxFabricRedundancyChassisDescr 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."
::= { jnxFabricRedundancyEntry 16 }
--
-- FRU (Field Replaceable Unit) Status Table
--
-- This table shows the status of the FRUs in the chassis' within the fabric
--
jnxFabricFruTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFabricFruEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of FRU status entries."
::= { jnxFabricAnatomyTables 7 }
jnxFabricFruEntry OBJECT-TYPE
SYNTAX JnxFabricFruEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the FRU status table."
INDEX { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index }
::= { jnxFabricFruTable 1 }
JnxFabricFruEntry ::= SEQUENCE {
jnxFabricFruContentsIndex Integer32,
jnxFabricFruL1Index Integer32,
jnxFabricFruL2Index Integer32,
jnxFabricFruL3Index Integer32,
jnxFabricFruName DisplayString,
jnxFabricFruType INTEGER,
jnxFabricFruSlot Integer32,
jnxFabricFruState INTEGER,
jnxFabricFruTemp Integer32,
jnxFabricFruOfflineReason INTEGER,
jnxFabricFruLastPowerOff TimeTicks,
jnxFabricFruLastPowerOn TimeTicks,
jnxFabricFruPowerUpTime TimeTicks,
jnxFabricFruChassisId JnxChassisId,
jnxFabricFruChassisDescr DisplayString,
jnxFabricFruPsdAssignment Integer32
}
jnxFabricFruContentsIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The associated jnxFabricContentsContainerIndex in the
jnxFabricContentsTable."
::= { jnxFabricFruEntry 1 }
jnxFabricFruL1Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level one index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricFruEntry 2 }
jnxFabricFruL2Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level two index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricFruEntry 3 }
jnxFabricFruL3Index OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The level three index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricFruEntry 4 }
jnxFabricFruName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name or detailed description of this subject."
::= { jnxFabricFruEntry 5 }
jnxFabricFruType 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."
::= { jnxFabricFruEntry 6 }
jnxFabricFruSlot OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot number of this subject. This is equivalent
to jnxFabricFruL1Index in meaning. Zero if unavailable or
inapplicable."
::= { jnxFabricFruEntry 7 }
jnxFabricFruState 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."
::= { jnxFabricFruEntry 8 }
jnxFabricFruTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "Celsius (degrees C)"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature in Celsius (degrees C) of this
subject. Zero if unavailable or inapplicable."
::= { jnxFabricFruEntry 9 }
jnxFabricFruOfflineReason 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
fruFPCReducedFabricBW(75) -- FPC offlined due to Reduced Fabric Bandwidth
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The offline reason of this subject."
::= { jnxFabricFruEntry 10 }
jnxFabricFruLastPowerOff OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this subject was last
powered off. Zero if unavailable or inapplicable."
::= { jnxFabricFruEntry 11 }
jnxFabricFruLastPowerOn OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this subject was last
powered on. Zero if unavailable or inapplicable."
::= { jnxFabricFruEntry 12 }
jnxFabricFruPowerUpTime OBJECT-TYPE
SYNTAX TimeTicks
UNITS "centi-seconds"
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."
::= { jnxFabricFruEntry 13 }
jnxFabricFruChassisId OBJECT-TYPE
SYNTAX JnxChassisId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the chassis on which the contents of this
row exists."
::= { jnxFabricFruEntry 14 }
jnxFabricFruChassisDescr 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."
::= { jnxFabricFruEntry 15 }
jnxFabricFruPsdAssignment 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."
::= { jnxFabricFruEntry 16 }
--
-- definition of chassis related traps
--
-- Traps for chassis alarm conditions
jnxFabricPowerSupplyFailure NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricContentsL3Index,
jnxFabricContentsDescr,
jnxFabricOperatingState }
STATUS current
DESCRIPTION
"A jnxFabricPowerSupplyFailure 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."
::= { jnxFabricChassisTraps 1 }
jnxFabricFanFailure NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricContentsL3Index,
jnxFabricContentsDescr,
jnxFabricOperatingState }
STATUS current
DESCRIPTION
"A jnxFabricFanFailure 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."
::= { jnxFabricChassisTraps 2 }
jnxFabricOverTemperature NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricContentsL3Index,
jnxFabricContentsDescr,
jnxFabricOperatingTemp }
STATUS current
DESCRIPTION
"A jnxFabricOverTemperature 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."
::= { jnxFabricChassisTraps 3 }
jnxFabricRedundancySwitchover NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricRedundancyContentsIndex,
jnxFabricRedundancyL1Index,
jnxFabricRedundancyL2Index,
jnxFabricRedundancyL3Index,
jnxFabricRedundancyDescr,
jnxFabricRedundancyConfig,
jnxFabricRedundancyState,
jnxFabricRedundancySwitchoverCount,
jnxFabricRedundancySwitchoverTime,
jnxFabricRedundancySwitchoverReason }
STATUS current
DESCRIPTION
"A jnxFabricRedundancySwitchover 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 jnxFabricRedundancyState from master to backup or
vice versa."
::= { jnxFabricChassisTraps 4 }
jnxFabricFruRemoval NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
STATUS current
DESCRIPTION
"A jnxFabricFruRemoval 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."
::= { jnxFabricChassisTraps 5 }
jnxFabricFruInsertion NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
STATUS current
DESCRIPTION
"A jnxFabricFruInsertion 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."
::= { jnxFabricChassisTraps 6 }
jnxFabricFruPowerOff NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot,
jnxFabricFruOfflineReason,
jnxFabricFruLastPowerOff,
jnxFabricFruLastPowerOn }
STATUS current
DESCRIPTION
"A jnxFabricFruPowerOff 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."
::= { jnxFabricChassisTraps 7 }
jnxFabricFruPowerOn NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot,
jnxFabricFruOfflineReason,
jnxFabricFruLastPowerOff,
jnxFabricFruLastPowerOn }
STATUS current
DESCRIPTION
"A jnxFabricFruPowerOn 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."
::= { jnxFabricChassisTraps 8 }
jnxFabricFruFailed NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
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."
::= { jnxFabricChassisTraps 9 }
jnxFabricFruOffline NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot,
jnxFabricFruOfflineReason,
jnxFabricFruLastPowerOff,
jnxFabricFruLastPowerOn }
STATUS current
DESCRIPTION
"A jnxFabricFruOffline 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."
::= { jnxFabricChassisTraps 10 }
jnxFabricFruOnline NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
STATUS current
DESCRIPTION
"A jnxFabricFruOnline 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."
::= { jnxFabricChassisTraps 11 }
jnxFabricFruCheck NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
STATUS current
DESCRIPTION
"A jnxFabricFruCheck 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."
::= { jnxFabricChassisTraps 12 }
jnxFabricFEBSwitchover NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
STATUS current
DESCRIPTION
"A jnxFabricFEBSwitchover trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified FEB (Forwarding Engine Board) has
switched over."
::= { jnxFabricChassisTraps 13 }
jnxFabricHardDiskFailed NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
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."
::= { jnxFabricChassisTraps 14 }
jnxFabricHardDiskMissing NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
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."
::= { jnxFabricChassisTraps 15 }
jnxFabricBootFromBackup NOTIFICATION-TYPE
OBJECTS { jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
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"
::= { jnxFabricChassisTraps 16 }
jnxFabricHighPower NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
STATUS current
DESCRIPTION
"A jnxFabricHighPowerConsumption trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified fabric ASIC consumes more power than
expected"
::= { jnxFabricChassisTraps 17 }
-- Traps for chassis alarm cleared conditions
jnxFabricPowerSupplyOK NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricContentsL3Index,
jnxFabricContentsDescr,
jnxFabricOperatingState }
STATUS current
DESCRIPTION
"A jnxFabricPowerSupplyOK 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."
::= { jnxFabricChassisOKTraps 1 }
jnxFabricFanOK NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricContentsL3Index,
jnxFabricContentsDescr,
jnxFabricOperatingState }
STATUS current
DESCRIPTION
"A jnxFabricFanOK 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."
::= { jnxFabricChassisOKTraps 2 }
jnxFabricTemperatureOK NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricContentsL3Index,
jnxFabricContentsDescr,
jnxFabricOperatingTemp }
STATUS current
DESCRIPTION
"A jnxFabricTemperatureOK 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."
::= { jnxFabricChassisOKTraps 3 }
jnxFabricFruOK NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricFruContentsIndex,
jnxFabricFruL1Index,
jnxFabricFruL2Index,
jnxFabricFruL3Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
STATUS current
DESCRIPTION
"A jnxFabricFabricFruOK 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."
::= { jnxFabricChassisOKTraps 4 }
jnxFabricHighPowerCleared NOTIFICATION-TYPE
OBJECTS { jnxFabricDeviceIndex,
jnxFabricContentsContainerIndex,
jnxFabricContentsL1Index,
jnxFabricContentsL2Index,
jnxFabricFruName,
jnxFabricFruType,
jnxFabricFruSlot }
STATUS current
DESCRIPTION
"A jnxFabricHighPowerCleared trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified fabric ASIC has cleared its high power condition"
::= { jnxFabricChassisOKTraps 5 }
END
|