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
|
CTRON-COMMON-MIB DEFINITIONS ::= BEGIN
-- ctron-common-mib.txt
-- Part Number: 2170549-01
-- Revision: 1.03.03
-- Date: December 9, 1997
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- support@ctron.com
-- This module provides authoritative definitions for Cabletron's
-- enterprise-specific common MIB.
--
-- This module will be extended, as required.
--
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright August 94 Cabletron Systems
IMPORTS
NetworkAddress, Counter
FROM RFC1155-SMI
subSysMMAC, subSysDevice, ups,
commonRev1, dl
FROM IRM-OIDS
DisplayString, PhysAddress
FROM RFC1213-MIB
OBJECT-TYPE FROM RFC-1212;
-- Updated to Revision 1.01 on January 31, 1992. Added
-- download group.
-- This MIB module uses the extended OBJECT-TYPE macro as defined
-- in [9];
-- Textual convention
-- DisplayString ::= OCTET STRING
-- This data type is used to model textual information taken from
-- the NVT ASCII character set. By convention, objects with this
-- syntax are declared as having:
--
-- SIZE (0..255)
-- PhysAddress ::= OCTET STRING
-- This data type is used to model media addresses. For many
-- types of media, this will be in a binary representation. For
-- example, an Ethernet address would be represented as a string
-- of 6 octets.
fnb2 OBJECT IDENTIFIER ::= { subSysMMAC 2 }
chassis OBJECT IDENTIFIER ::= { subSysMMAC 3 }
environment OBJECT IDENTIFIER ::= { subSysMMAC 4 }
fnbTR OBJECT IDENTIFIER ::= { fnb2 1 }
fnbCSMACD OBJECT IDENTIFIER ::= { fnb2 2 }
fnbPortConnect OBJECT IDENTIFIER ::= { fnb2 3 }
nB55 OBJECT IDENTIFIER ::= { subSysDevice 3 }
mRXI OBJECT IDENTIFIER ::= { subSysDevice 6 }
iRM3 OBJECT IDENTIFIER ::= { subSysDevice 7 }
tRMM OBJECT IDENTIFIER ::= { subSysDevice 8 }
eMME OBJECT IDENTIFIER ::= { subSysDevice 9 }
fPRedundancy OBJECT IDENTIFIER ::= { subSysDevice 10 }
upsVersion OBJECT IDENTIFIER ::= { ups 1 }
upsRevision OBJECT IDENTIFIER ::= { upsVersion 1 }
-- The commonRev1 group
-- Implementation of this group is mandatory for all Cabletron
-- devices.
deviceType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
iRM2(176), -- integrated repeater and
-- management subsystem, version 2
iRBM(177), -- integrated repeater, bridge,
-- and management subsystem
iRM3(178), -- integrated repeater and
-- management subsystem, version 3
tRMBM-R(179), -- token ring repeater, management,
-- and bridge subsystem, type R
tRMBM-S(180), -- token ring repeater, management,
-- and bridge subsystem, type S
emm-E(185), -- ethernet repeater, management,
-- and bridge subsystem
tRMM(187), -- token ring repeater and
-- management subsystem
trmMim(190), -- token ring repeater MIM
mrxi24(65569), -- integrated repeater and
-- management subsytem with 24
-- 10BaseT ports (RJ45), 2 EPIMs
mrxi22(65570), -- integrated repeater and
-- management subsytem with 12
-- 10BaseT ports (RJ45), 1 EPIM
mrxi34(65571), -- integrated repeater and
-- management subsytem with 24
-- 10BaseT ports (50-POS CHAMP), 1 EPIM
mrxi38(65572) -- integrated repeater and
-- management subsytem with 48
-- 10BaseT ports (50-POS CHAMP), 2 EPIMs
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of management board."
::= { commonRev1 1 }
deviceName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A textual description on the entity managed by the
resident agent. It is mandatory that this only con-
tain printable ASCII characters."
::= { commonRev1 2 }
deviceIPAddress OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Network address, in this case the IP address,
of the device. This object is required for use by
the Local Management Interface."
::= { commonRev1 3 }
deviceTime OBJECT-TYPE
SYNTAX DisplayString (SIZE(8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current time of day, in 24 hour format, as
measured by the device. The representation shall
use the standard HHMMSS format."
::= { commonRev1 4 }
deviceDate OBJECT-TYPE
SYNTAX DisplayString (SIZE(8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current date, as measured by the device. The
representation shall use the standard MMDDYYYY
format."
::= { commonRev1 5 }
-- The fnbTR group implementation of this group is optional
-- Implementation of this group is mandatory for Token Ring
-- subsystems on devices that incorporate the FNB.
fnbTRTable OBJECT-TYPE
SYNTAX SEQUENCE OF FnbTREntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of entries that provide connection status of
Token Ring subsystems, for the FNB."
::= { fnbTR 1 }
fnbTREntry OBJECT-TYPE
SYNTAX FnbTREntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the fnbTRTable containing objects that
provide FNB connection status for a Token Ring sub-
system."
INDEX { fnbTRIndex }
::= { fnbTRTable 1 }
FnbTREntry ::=
SEQUENCE {
fnbTRIndex
INTEGER,
fnbConnectLeft
INTEGER,
fnbConnectRight
INTEGER,
fnbBypass
INTEGER,
fnbRPBypass
INTEGER
}
fnbTRIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An unique value for each Token Ring subsystem. Its
value ranges between 1 and chassisSlots. The value
for each interface must remain constant, at least,
from one re-initialization of the entity's network
management system to the next re-initialization."
::= { fnbTREntry 1 }
fnbConnectLeft OBJECT-TYPE
SYNTAX INTEGER {
detached(1),
attached(2),
faulted(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Connected Left board (board n + 1) has the following
states:
Detached == 1 (Management (only management) detached,
read/write).
Attached == 2 (Management/AutoMode attached, read/write).
Faulted == 3 (Management/AutoMode tried to attach but
failed READ ONLY)."
::= { fnbTREntry 2 }
fnbConnectRight OBJECT-TYPE
SYNTAX INTEGER {
detached(1),
attached(2),
faulted(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Connected Right board (board n - 1) has the following states:
Detached == 1 (Management (only management) detached, read/write).
Attached == 2 (Management/AutoMode attached, read/write ).
Faulted == 3 (Management/AutoMode tried to attach but failed,
READ ONLY)."
::= { fnbTREntry 3 }
fnbBypass OBJECT-TYPE
SYNTAX INTEGER {
off(1), -- not bypassed
on(2) -- bypassed
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Denotes the bypass status of the current Token Ring
board. Bypassed means the board is NOT attached to the
FNB."
::= { fnbTREntry 4 }
fnbRPBypass OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Denotes the Ring Port bypass status of the current Token Ring
board. If this capability is not available on this board, the
value 'other' is returned when read, and BADSETINFO when written."
::= { fnbTREntry 5 }
-- The fnbCSMACD group
-- Implementation of this group is mandatory for CSMA/CD
-- subsystems on devices that incorporate the FNB.
fnbCSMACDTable OBJECT-TYPE
SYNTAX SEQUENCE OF FnbCSMACDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of entries that provide connection status of
CSMA/CD subsystems, for the FNB."
::= { fnbCSMACD 1 }
fnbCSMACDEntry OBJECT-TYPE
SYNTAX FnbCSMACDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the fnbCSMACDTable containing objects
that provide FNB connection status for a CSMA/CD
subsystem."
INDEX { fnbCSMACDIndex }
::= { fnbCSMACDTable 1 }
FnbCSMACDEntry ::=
SEQUENCE {
fnbCSMACDIndex
INTEGER,
fnbConnect
INTEGER,
fnbPortChanges
Counter
}
fnbCSMACDIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An unique value for each CSMACD subsystem. Its
value ranges between 1 and chassisSlots. The value
for each interface must remain constant, at least,
from one re-initialization of the entity's network
management system to the next re-initialization."
::= { fnbCSMACDEntry 1 }
fnbConnect OBJECT-TYPE
SYNTAX INTEGER {
connectB(1),
connectC(2),
disconnect(3),
connectA(4),
subnetB(5),
subnetC(6),
multiChannel(7),
frontPanel(8)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Denotes the connection status of the CSMA/CD board
to the inter-RIC bus."
::= { fnbCSMACDEntry 2 }
fnbPortChanges OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the number of times any port on the
given MIM has changed it's connection to the
inter-RIC bus."
::= { fnbCSMACDEntry 3 }
-- The fnbPortConnect group. This group is required only for those devices
-- that support port switching
fnbPortConnectTable OBJECT-TYPE
SYNTAX SEQUENCE OF FnbPortConnectEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table is used to control port
association on ethernet devices. Only
those boards that support port switching
will be listed in this table."
::= { fnbPortConnect 1 }
fnbPortConnectEntry OBJECT-TYPE
SYNTAX FnbPortConnectEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Describes a specific port connection entry."
INDEX { fnbPortConnectBoardIndex, fnbPortConnectPortIndex }
::= { fnbPortConnectTable 1 }
FnbPortConnectEntry ::= SEQUENCE {
fnbPortConnectBoardIndex
INTEGER,
fnbPortConnectPortIndex
INTEGER,
fnbPortConnectPortAssignment
INTEGER,
fnbPortConnectCompID
INTEGER
}
fnbPortConnectBoardIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An instance of a board for which this port
assignment relationship exists."
::= { fnbPortConnectEntry 1 }
fnbPortConnectPortIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An instance of a port for which this
assignment relationship exists."
::= { fnbPortConnectEntry 2 }
fnbPortConnectPortAssignment OBJECT-TYPE
SYNTAX INTEGER {
connectA(1),
connectB(2),
connectC(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The specific channel that the port is
assigned."
::= { fnbPortConnectEntry 3 }
fnbPortConnectCompID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the component ID as defined in the chassis
MIB that this port is associated with. These
components will be repeater components."
::= { fnbPortConnectEntry 4 }
fnbPortConnectionChanges OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maintains the number of times any port within
the mangement domain of this MIM changes it's
port assignment."
::= { fnbPortConnect 2 }
-- The chassis group
-- Implementation of this group is mandatory for all cabletron
-- devices. Except for bounded slotless entities.
chassisHWRev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Define the hardware revision of the device or sys-
tem chassis."
::= { chassis 1 }
chassisType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
mMAC8FNB(2), -- non shunting
mMAC5FNB(3), -- non shunting
mMAC3FNB(4), -- non shunting
mINIMMAC(5),
mRXI(6),
m3FNB(7), -- shunting
m5FNB(8), -- shunting
m8FNB(9), -- non shunting
nonFNB(10),
mMAC3FNBS(11), -- shunting
mMAC5FNBS(12), -- shunting
mMAC8FNBS(13), -- shunting
m8FNBS(14) -- shunting
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the type of chassis."
::= { chassis 2 }
chassisSlots OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the number of available chassis slots."
::= { chassis 3 }
chassisFNB OBJECT-TYPE
SYNTAX INTEGER {
absent(1),
present(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the presence or absence of the FNB."
::= { chassis 4 }
chassisAlarmEna OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Allow an audible alarm to be either enabled or dis-
abled."
::= { chassis 5 }
chassisAlarmState OBJECT-TYPE
SYNTAX INTEGER {
chassisNoFaultCondition(1),
chassisFaultCondition(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Denotes the current condition of the power supply
fault detection circuit. Setting a value of
chassisNoFaultCondition(1) disables the current
chassis alarm condition, and stops the current
audible alarm from sounding. Setting a value of
chassisFaultCondition(2) is not allowed.
This object will read with the value of
chassisNoFaultCondition(1) when the chassis is
currently operating with no power faults detected.
This object will read with the value of
chassisFaultCondition(2) when the chassis is
currently in a power fault condition."
::= { chassis 6 }
-- The environment group
-- Implementation of this group is optional
powerTable OBJECT-TYPE
SYNTAX SEQUENCE OF PowerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of power supply entries."
::= { environment 1 }
powerEntry OBJECT-TYPE
SYNTAX PowerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the powerTable providing objects for a
power supply."
INDEX { powerSupplyNum }
::= { powerTable 1 }
PowerEntry ::=
SEQUENCE {
powerSupplyNum
INTEGER,
powerSupplyState
INTEGER,
powerSupplyId
OBJECT IDENTIFIER,
powerSupplyRedun
INTEGER,
powerSupplyRemoteDisable
INTEGER
}
powerSupplyNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the power supply that may have failed."
::= { powerEntry 1 }
powerSupplyState OBJECT-TYPE
SYNTAX INTEGER {
infoNotAvailable(1),
notInstalled(2),
installedAndOperating(3),
installedAndNotOperating(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the power supply's state."
::= { powerEntry 2 }
powerSupplyId OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Identifies the type of power supply. For example, this
could be used to identify power supplies which support
additional remote management capabilities."
::= { powerEntry 3 }
powerSupplyRedun OBJECT-TYPE
SYNTAX INTEGER {
redundancyAvail(1),
redundancyNotAvail(2),
infoNotAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Identifies whether power redundancy is available
within the chassis.
Devices that do not support power supply redundancy,
will return infoNotAvailable."
::= { powerEntry 4 }
powerSupplyRemoteDisable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
infoNotAvailable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Provides Enable/Disable control of the power supply.
For devices that do not support this capability, a set
attempt will return BADVALUE, and a read will always
return infoNotAvailable."
::= { powerEntry 5 }
-- The nB55 group
-- Implementation of this group is mandatory for the nB55 device.
nB55HWAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device's MAC address."
REFERENCE
"This value is the same as ifPhysAddress in RFC
1213."
::= { nB55 1 }
nB55HWRev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of the nB55 board. A value of
one denotes Revision 1, a value of two denotes Revi-
sion 2, and so on."
::= { nB55 2 }
nB55FWRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of firmware in the module.
The first octets provides the version, and the
second provides the revision."
::= { nB55 3 }
-- The mRXI group
-- Implementation of this group is mandatory for the mRXI device.
mRXIHWAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device's MAC address."
REFERENCE
"This value is the same as ifPhysAddress in RFC
1213."
::= { mRXI 1 }
mRXIHWRev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of the mRXI board. A value of
one denotes Revision 1, a value of two denotes Revi-
sion 2, and so on."
::= { mRXI 2 }
mRXIFWRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of firmware in the module.
The first octets provides the version, and the
second provides the revision."
::= { mRXI 3 }
-- The iRM3 group
-- Implementation of this group is mandatory for the iRM3 device.
iRM3HWAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device's MAC address."
REFERENCE
"This value is the same as ifPhysAddress in RFC
1213."
::= { iRM3 1 }
iRM3HWRev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of the IRM3 board. A value of
one denotes Revision 1, a value of two denotes Revi-
sion 2, and so on."
::= { iRM3 2 }
iRM3FWRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of firmware in the module.
The first octets provides the version, and the
second provides the revision."
::= { iRM3 3 }
iRM3PortAssoc OBJECT-TYPE
SYNTAX INTEGER {
aoffFrp(5), -- AUI is repeater, fiber
-- is off
arpFoff(6) -- AUI is off, fiber
-- is repeater
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls how front panel ports are associated
with the Irm3."
::= { iRM3 4 }
iRM3BPSupport OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
supported (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes whether or not Backplane Protocol Support is
present in the current version of the IRM3."
::= { iRM3 5 }
-- The tRMM group
-- Implementation of this group is mandatory for the tRMM device.
tRMMHWAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device's MAC address."
REFERENCE
"This value is the same as ifPhysAddress in RFC
1213."
::= { tRMM 1 }
tRMMHWRev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of the tRMM board. A value of
one denotes Revision 1, a value of two denotes Revi-
sion 2, and so on."
::= { tRMM 2 }
tRMMFWRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of firmware in the module.
The first octets provides the version, and the
second provides the revision."
::= { tRMM 3 }
-- The eMME group
-- Implementation of this group is mandatory for the eMME device.
eMMEHWAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device's MAC address."
REFERENCE
"This value is the same as ifPhysAddress in RFC
1213."
::= { eMME 1 }
eMMEHWRev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of the eMME board. A value of
one denotes Revision 1, a value of two denotes Revi-
sion 2, and so on."
::= { eMME 2 }
eMMEFWRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of firmware in the module.
The first octets provides the version, and the
second provides the revision."
::= { eMME 3 }
eMMEBoardMap OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes a bit encoded representation of the slots that
contain MIM boards. If a bit is a one then the board
is present."
::= { eMME 4 }
-- The fPredund group
-- Implementation of this group is mandatory for devices with
-- front panel redundancy.
fPRedund OBJECT IDENTIFIER ::= { fPRedundancy 1 }
fPRedundReset OBJECT-TYPE
SYNTAX INTEGER {
noReset(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If this object is set to Reset it will cause a reset
of the front panel redundancy. Setting this object to
NoReset will do nothing. This object will always be
read as NoReset."
::= { fPRedund 1 }
fPRedundPollInterval OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get/Set the number of seconds between polls for front
panel redundancy."
::= { fPRedund 2 }
fPRedundRetrys OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get/Set the the number of unanswered polls allowed for
the front panel redundancy before it switches ports."
::= { fPRedund 3 }
fPRedundNumAddr OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Get the number of IP Addresses associated with front panel
redundancy."
::= { fPRedund 4 }
fPRedundAddAddr OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Add an IP Address to the polling list for the front panel
redundancy."
::= { fPRedund 5 }
fPRedundDelAddr OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Delete an IP Address from the polling list for the
front panel redundancy."
::= { fPRedund 6 }
fPRedundActivePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Get/Set the front panel port you want to be active
when front panel redundancy is enabled."
::= { fPRedund 7 }
fPRedundEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If this object is set to enable, the front panel
redundancy will be activated. If this object is set
to disable, the front panel redundancy will be
deactivated. When read, this object will returns the
state of the object based on the last request
made."
::= { fPRedund 8 }
-- The fPredundAddr group
-- Implementation of this group is mandatory for devices with
-- front panel redundancy.
fPRedundAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF FPRedundAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of entries that provide IP address
information for front panel redundancy."
::= { fPRedundancy 2 }
fPRedundAddrEntry OBJECT-TYPE
SYNTAX FPRedundAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the fPRedundAddrTable providing objects
for front panel redundancy."
INDEX { fPRedundAddrId }
::= { fPRedundAddrTable 1 }
FPRedundAddrEntry ::=
SEQUENCE {
fPRedundAddrId
INTEGER,
fPRedundAddrIPAddr
NetworkAddress
}
fPRedundAddrId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value identifying an element in a sequence of
member IP Addresses which belong to the front panel
redundancy. This value goes from 1 to the maximum
number of IP Addresses which may be included in
front panel redundancy."
::= { fPRedundAddrEntry 1 }
fPRedundAddrIPAddr OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Returns an IP Address associated with the front panel
redundancy."
::= { fPRedundAddrEntry 2 }
-- The ups group
-- Implementation of this group is mandatory for devices that
-- incorporate uninterruptible power supplies.
upsID OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
aPCModel370(257),
aPCModel400(258),
aPCModel600(259),
aPCModel900(260),
aPCModel1250(261),
aPCModel2000(262)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Denotes a type code which refers to the manufactur-
ers and model of the UPS."
::= { upsRevision 1 }
upsUpTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the operating time, in hours, since the UPS
was last powered on."
::= { upsRevision 2 }
upsDisable OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS deprecated
DESCRIPTION
"Allows the UPS to be disabled. A set turns of the
UPS for those systems, so equipped. A get/get-next
always returns 0."
::= { upsRevision 3 }
upsDisconnect OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Allows the UPS backup power system to conserve its
battery. Setting the object to a value of 1 turns off
the power system. A get/get-next always retuns a 0."
::= { upsRevision 4 }
upsTest OBJECT-TYPE
SYNTAX INTEGER {
unitOK(1),
unitFailed(2),
badBattery(3),
noRecentTest(4), -- no test performed in the last five
-- minutes
underTest(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Denotes the status performed on the UPS. A write
unitOK(1) intiates the test. A read indicates status of
test."
::= { upsRevision 5 }
upsBatteryCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the percentage of battery capacity left,
100% being a fully-charged battery."
::= { upsRevision 6 }
upsACLineVoltsIn OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the input AC utility line voltage."
::= { upsRevision 7 }
upsBatteryVoltsOut OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the battery voltage."
::= { upsRevision 8 }
-- The dl group
-- Implementation of this group is mandatory for systems
-- that provide the ability to download firmware."
dlForceOnBoot OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When set to a 1, the system will request a
download, during the next system restart.
If no server is found and the current image
in flash memory is valid, the system will boot
using the flash-resident image."
::= { dl 1 }
dlCommitRAMToFlash OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When written with a 1, the boot software will erase
flash memory, compress the downloaded code, and save
the compressed image into flash memory. Upon com-
pletion of this operation, the flash memory driver
resets this object to 0, indicating completion of
the programming operation."
::= { dl 2 }
dlInitiateColdBoot OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When written with a 1, the boot software intiates a
system reboot. All MIB variables used to control
the exact nature of the download should be set,
prior to activating a system reset.
A read always returns a 0."
::= { dl 3 }
dlTFTPRequestHost OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the server to be used, when
firmware is to be loaded across the network."
::= { dl 4 }
dlTFTPRequest OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The filename requested of the server, when firmware
is to be loaded across the network."
::= { dl 5 }
dlLastImageFilename OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Filename of the last image to be successfully
loaded into memory."
::= { dl 6 }
dlLastServerIPAddress OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the server used to load the
present image in flash memory."
::= { dl 7 }
dlFlashSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the size, in bytes, of flash memory con-
tained on this module."
::= { dl 8 }
dlFlashCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the number of times that flash memory has
been reprogrammed. This value is initialzed to 1,
when the module is initially powered up."
::= { dl 9 }
dlFirmwareBase OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the starting address of the firmware in
RAM."
::= { dl 10 }
dlFirmwareTop OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the ending address of firmware in RAM."
::= { dl 11 }
dlFirmwareStart OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the start address of the firmware, in RAM,
as established by the boot process."
::= { dl 12 }
dlBootRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Denotes the revision of boot firmware in the module.
The first octets provides the version, and the
second provides the revision."
::= { dl 13 }
dlForceBootp OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When set, this variable forces the client to send a
BOOTP request packet when rebooting. The client will
make several attempts before timing out if a server
does not respond. This variable stays set. When set to
a 1 it should always be read as a one. When set to zero
it should always be read as zero."
::= { dl 14 }
dlServerName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This OID is reserved for future use of the Bootp server
name. This field can be used when a client wants to get
boot information from a particular bootp server."
::= { dl 15 }
dlOnLineDownLoad OBJECT-TYPE
SYNTAX INTEGER {
normalOperation(1),
forceDownLoad(2),
forceDownLoadReset(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"During normal operation this object has the value of 1. By
setting this object to a value of forceDownLoad(2) an online
download will be performed. By setting this object to a
value of forceDownLoadReset(3) an online down load will be
performed and a reset will be forced upon successful completion
of the download."
::= { dl 16 }
dlOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
unknown(2),
normalOperation(3),
downLoadActive(4),
downLoadCompleteError(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object reflects the status of the download code. A
value of normalOperation(3) reflects either a down load was
started but has finished normally and no reset was specified
or no down load has been started. A value of downLoadActive
only appears while a down load is in progress. A value of
downLoadCompleteError reflects that a down load was started
however an error was detected."
::= { dl 17 }
dlNetAddress OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"IP Address of the server to be used when an image is to be
downloaded using the Runtime TFTP Download."
::= { dl 18 }
dlFileName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Filename requested of the server when an image is to be
downloaded using the Runtime TFTP Download. This should be a
complete path filename."
::= { dl 19 }
dlErrorString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the value of ctDLOperStatus is downloadCompleteError(5)
then this object will provide a more complete description of
the error. Otherwise this object will be the zero length
string."
::= { dl 20 }
dlTftpServerGatewayIPAddress OBJECT-TYPE
SYNTAX NetworkAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the gateway/router which connects
this SNMP agent to the TFTP server."
::= { dl 21 }
-- Enterprise specific trap definitions
-- Trap Description
-- fPRedundActivePort
-- Specific Trap Type Code - 0x15F
-- This trap indicates that a new port has been activated for the front panel
-- redundant circuit. This does NOT indicate this port is usable, but is being
-- tested.
-- The interesting information will include:
-- Active Port Number
--
-- aPCLineFail OBJECT-TYPE
-- ENTERPRISE cabletron
-- DESCRIPTION
-- "This trap is generated in the event of an AC util-
-- ity line failure."
-- ::= 0x1101
--
-- aPCLineFailRecovery OBJECT-TYPE
-- ENTERPRISE cabletron
-- DESCRIPTION
-- "This trap is generated when the UPS switches back
-- to line, and only if the aPCLineFail trap was issued
-- first."
-- ::= 0x1102
--
-- aPCLowBattery OBJECT-TYPE
-- ENTERPRISE cabletron
-- DESCRIPTION
-- "This trap is generated in the event that the UPS'
-- battery is found to be low."
-- ::= 0x1103
--
-- aPCLowBatteryRecovery OBJECT-TYPE
-- ENTERPRISE cabletron
-- DESCRIPTION
-- "This trap is generated when the UPS' battery has
-- charged above the low-battery point, and only if the
-- aPCLowBattery trap was issued first."
-- ::= 0x1104
--
-- aPCAbnormalCondition OBJECT-TYPE
-- ENTERPRISE cabletron
-- DESCRIPTION
-- "This trap is generated in the event that the UPS
-- has entered an abnormal condition, such as an over-
-- load or trip on low battery. This trap is also
-- sent, when the UPS is first turned on."
-- ::= 0x1105
--
-- aPCAbnormalConditionRecovery OBJECT-TYPE
-- ENTERPRISE cabletron
-- DESCRIPTION
-- "This trap is generated when the UPS has recovered
-- from an abnormal condition, and only if the aPCAb-
-- normalCondition trap was issued first."
-- ::= 0x1106
--
-- aPCShuttingDown OBJECT-TYPE
-- ENTERPRISE cabletron
-- DESCRIPTION
-- "This trap is generated in the event that the UPS
-- has been ordered to shut itself, or the load, off
-- over the serial line."
-- ::= 0x1107
--
--
END
|