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
|
EQUIPMENT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI
DateAndTime, TruthValue ,DisplayString,RowStatus
FROM SNMPv2-TC
PortList FROM Q-BRIDGE-MIB
swTimeRangeMgmtRangeName FROM TIMERANGE-MIB
AgentNotifyLevel, dlink-common-mgmt
FROM DLINK-ID-REC-MIB;
swEquipmentMIB MODULE-IDENTITY
LAST-UPDATED "201104200000Z"
ORGANIZATION "D-Link Corp."
CONTACT-INFO
"http://support.dlink.com"
DESCRIPTION
" equipments MIB."
::= { dlink-common-mgmt 11 }
MacAddress ::= OCTET STRING (SIZE (6)) -- a 6 octet address
-- in the
-- "canonical"
-- order, copy from RFC1493
-- -----------------------------------------------------------------------------
-- OID Tree Allocation
-- -----------------------------------------------------------------------------
swEquipment OBJECT IDENTIFIER ::= { swEquipmentMIB 1 }
swEquipmentNotify OBJECT IDENTIFIER ::= { swEquipmentMIB 2 }
-- -----------------------------------------------------------------------------
-- Object Definition
-- -----------------------------------------------------------------------------
swEquipmentCapacity OBJECT-TYPE
SYNTAX BITS {
fanCapable(0),
--
redundantPowerCapable(1),
--
tempteratureDetection(2),
stackingCapable(3),
chassisCapable(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the equipment capability supported in the system."
::= { swEquipment 1 }
-- -----------------------------------------------------------------------------
swFanTrapState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicate the fan warning event trap state."
::= { swEquipment 4 }
swPowerTrapState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicate the power warning event trap state."
::= { swEquipment 5 }
swPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A list of power information values."
::= { swEquipment 6 }
swPowerEntry OBJECT-TYPE
SYNTAX SwPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry of power information values."
INDEX { swPowerUnitIndex , swPowerID}
::= { swPowerTable 1 }
SwPowerEntry ::= SEQUENCE {
swPowerUnitIndex INTEGER,
swPowerID INTEGER,
swPowerStatus INTEGER
}
swPowerUnitIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the unit ID in the System."
::= { swPowerEntry 1 }
swPowerID OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates ID of the power
1 : main power
2 : redundant power ."
::= { swPowerEntry 2 }
swPowerStatus OBJECT-TYPE
SYNTAX INTEGER {
other(0),
lowVoltage(1),
overCurrent(2),
working(3),
fail(4),
connect(5),
disconnect(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current power status.
lowVoltage : The voltage of the power unit is too low.
overCurrent: The current of the power unit is too high.
working : The power unit is working normally.
fail : The power unit has failed.
connect : The power unit is connected but not powered on.
disconnect : The power unit is not connected."
::= { swPowerEntry 3 }
-- -----------------------------------------------------------------------------
swFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A list of fan information values."
::= { swEquipment 7 }
swFanEntry OBJECT-TYPE
SYNTAX SwFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry of fan information values."
INDEX { swFanUnitIndex, swFanID}
::= { swFanTable 1 }
SwFanEntry ::= SEQUENCE {
swFanUnitIndex INTEGER,
swFanID INTEGER,
swFanStatus INTEGER,
swFanPostion INTEGER,
swFanNumber INTEGER,
swFanSpeed INTEGER
}
swFanUnitIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the unit ID in the System."
::= { swFanEntry 1 }
swFanID OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the unit ID."
::= { swFanEntry 2 }
swFanStatus OBJECT-TYPE
SYNTAX INTEGER {
other(0),
working(1),
fail(2),
speed-0(3),
speed-low(4),
speed-middle(5),
speed-high(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current fan status.
speed-0 : If the fan function is normal and the fan does not spin
due to the temperature not reaching the threshold,
the status of the fan is speed 0.
speed-low : Fan spin using the lowest speed.
speed-middle: Fan spin using the middle speed.
speed-high : Fan spin using the highest speed."
::= { swFanEntry 3 }
swFanPostion OBJECT-TYPE
SYNTAX INTEGER {
other(1),
left(2),
right(3),
back(4),
cpu(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the position of the fan."
::= { swFanEntry 4 }
swFanNumber OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the fan number."
::= { swFanEntry 5 }
swFanSpeed OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the fan work speed(RPM)."
::= { swFanEntry 6 }
-- -----------------------------------------------------------------------------
swTemperatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwTemperatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A list of temperature values."
::= { swEquipment 8 }
swTemperatureEntry OBJECT-TYPE
SYNTAX SwTemperatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry of temperature values."
INDEX { swTemperatureUnitIndex }
::= { swTemperatureTable 1 }
SwTemperatureEntry ::= SEQUENCE {
swTemperatureUnitIndex INTEGER,
swTemperatureCurrent INTEGER,
swTemperatureHighThresh INTEGER,
swTemperatureLowThresh INTEGER
}
swTemperatureUnitIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the unit ID in the System."
::= { swTemperatureEntry 1 }
swTemperatureCurrent OBJECT-TYPE
SYNTAX INTEGER(-500..500)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The shelf current temperature."
::= { swTemperatureEntry 2 }
swTemperatureHighThresh OBJECT-TYPE
SYNTAX INTEGER (-500..500)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The high threshold of shelf temperature."
::= { swTemperatureEntry 3 }
swTemperatureLowThresh OBJECT-TYPE
SYNTAX INTEGER(-500..500)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The low threshold of shelf temperature."
::= { swTemperatureEntry 4 }
-- -----------------------------------------------------------------------------
swUnitMgmt OBJECT IDENTIFIER ::= { swEquipment 9 }
swUnitStackingVersion OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the version of this stacking system."
::= { swUnitMgmt 1 }
swUnitMaxSupportedUnits OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of units that are supported in the system."
::= { swUnitMgmt 2 }
swUnitNumOfUnit OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of units."
::= { swUnitMgmt 3 }
swUnitMgmtTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwUnitMgmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the unit information."
::= { swUnitMgmt 4 }
swUnitMgmtEntry OBJECT-TYPE
SYNTAX SwUnitMgmtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of management information for each unit in the system."
INDEX { swUnitMgmtId }
::= { swUnitMgmtTable 1 }
SwUnitMgmtEntry ::=
SEQUENCE {
swUnitMgmtId
INTEGER,
swUnitMgmtMacAddr
MacAddress,
swUnitMgmtStartPort
INTEGER,
swUnitMgmtPortRange
INTEGER,
swUnitMgmtFrontPanelLedStatus
OCTET STRING,
swUnitMgmtCtrlMode
INTEGER,
swUnitMgmtCurrentMode
INTEGER,
swUnitMgmtVersion
DisplayString,
swUnitMgmtModuleName
DisplayString,
swUnitMgmtPromVersion
DisplayString,
swUnitMgmtFirmwareVersion
DisplayString,
swUnitMgmtHardwareVersion
DisplayString,
swUnitMgmtPriority
INTEGER,
swUnitMgmtUserSetState
INTEGER,
swUnitMgmtExistState
INTEGER,
swUnitMgmtBoxId
INTEGER,
swUnitMgmtSerialNumber
DisplayString
}
swUnitMgmtId OBJECT-TYPE
SYNTAX INTEGER (1..13)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the specific entry in the stacking/chassis
table."
::= { swUnitMgmtEntry 1 }
swUnitMgmtMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of this unit."
::= { swUnitMgmtEntry 2 }
swUnitMgmtStartPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the starting port of this unit."
::= { swUnitMgmtEntry 3 }
swUnitMgmtPortRange OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total ports of this unit."
::= { swUnitMgmtEntry 4 }
swUnitMgmtFrontPanelLedStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is a set of system LED indicators. The first four
octets are defined as a system LED. The first LED is a power LED.
The second LED in the stacking module is a master LED but in the chassis is
a status LED. The third LED is a console LED. The fourth LED is
an RPS (Redundancy Power Supply) LED. The other octets are the
logical port LED (following dot1dBasePort ordering). Every two
bytes are presented to a port. The first byte is presented as the
link/activity LED. The second byte is presented as the speed LED.
system LED:
01 = fail/error/non existence.
02 = work normal.
link/activity LED :
The most significant bit is used for blinking/solid:
8 = The LED blinks.
The second most significant bit is used for link status:
1 = link fail.
2 = link pass.
speed LED :
01 = 10Mbps.
02 = 100Mbps.
03 = 1000Mbps.
The four remaining bits are currently unused and must be set to 0.
Note:
For the DGS-3700, the first five octets are defined as the system LED.
The first LED is the power LED. The second LED is the console LED.
The third LED is the RPS (Redundancy Power Supply) LED. The fourth
LED is the management port LED. The fifth LED is the fan LED.
For the DGS-3200-10 and DGS-3200-16, the first three octets are defined
as the system LED. The first LED is the power LED. The second LED is the console LED.
The third LED is the RPS (Redundancy Power Supply) LED.
For the DGS-3200-24, the first three octets are defined as the system LED,
the definition of the first three octets is the same as the DGS-3200-10 and DGS-3200-16,
the fourth LED is the SD card LED. The following description is for the SD card LED:
01 = SD card is not present.
02 = SD card is present.
03 = fails to read/write SD card.
04 = read/write SD card successfully."
::= { swUnitMgmtEntry 5 }
swUnitMgmtCtrlMode OBJECT-TYPE
SYNTAX INTEGER {
other(1),
auto(2),
stand-alone(3),
master(4),
slave(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the stacking mode the user configured for
the unit. This object can only be configured when the device is
in standalone mode.
other (1) - This object indicates the stacking mode that the user
has configured for the unit. This object can only be configured
when the device is in standalone mode.
auto (2) - The system will auto-assign a stacking role to this
unit to be: standalone(3), master(4), or slave(5).
standalone (3) - The unit is forced to be in standalone mode.
master (4) - The unit is forced to be in master mode. If this unit is
selected to be a master, the unit can modify the configuration of the stacking system.
slave (5) - The unit is forced to be in slave mode. If this unit is
selected to be a slave, it can only view the configuration of
the stacking system."
::= { swUnitMgmtEntry 6 }
swUnitMgmtCurrentMode OBJECT-TYPE
SYNTAX INTEGER {
other(1),
auto(2),
stand-alone(3),
master(4),
slave(5),
backup-master(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current stacking role of this unit."
::= { swUnitMgmtEntry 7 }
swUnitMgmtVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the version of this stacking unit."
::= { swUnitMgmtEntry 8 }
swUnitMgmtModuleName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing the stacking unit module name. "
::= { swUnitMgmtEntry 9 }
swUnitMgmtPromVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing the PROM version of the
stacking unit. "
::= { swUnitMgmtEntry 10 }
swUnitMgmtFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing the firmware version of the
stacking unit. "
::= { swUnitMgmtEntry 11 }
swUnitMgmtHardwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing the hardware version of the
stacking unit. "
::= { swUnitMgmtEntry 12 }
swUnitMgmtPriority OBJECT-TYPE
SYNTAX INTEGER(1..63)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Priority of the stacking unit. "
::= { swUnitMgmtEntry 13 }
swUnitMgmtUserSetState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
auto(2),
user(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the user set state of this unit."
::= { swUnitMgmtEntry 14 }
swUnitMgmtExistState OBJECT-TYPE
SYNTAX INTEGER {
exist(1),
no-exist(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of existence of this unit."
::= { swUnitMgmtEntry 15 }
swUnitMgmtBoxId OBJECT-TYPE
SYNTAX INTEGER {
box-1(1),
box-2(2),
box-3(3),
box-4(4),
box-5(5),
box-6(6),
box-7(7),
box-8(8),
box-9(9),
box-10(10),
box-11(11),
box-12(12),
auto(13)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The box ID of the stacking unit.
When show, it shows the current box ID of this unit;
When set, it sets the new box ID, and the new box ID will
take effect after the next boot."
::= { swUnitMgmtEntry 16 }
swUnitMgmtSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A text string containing the serial number of the stacking unit."
::= { swUnitMgmtEntry 17 }
swUnitTopology OBJECT-TYPE
SYNTAX INTEGER {
stand-alone(1),
duplex-chain(2),
duplex-ring(3),
star(4),
unstable(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The stacking topology state."
::= { swUnitMgmt 5 }
swUnitStackMode OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the stacking mode supported in the system."
::= { swUnitMgmt 6 }
swUnitStackForceMasterRole OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the stack force master role mode supported in the system."
::= { swUnitMgmt 7 }
swUnitStackTrapState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the stacking trap state."
DEFVAL {enabled}
::= { swUnitMgmt 8 }
swUnitStackLogState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the stacking log state."
DEFVAL {enabled}
::= { swUnitMgmt 9 }
-- -----------------------------------------------------------------------------
-- swExternalAlarmMgmt
-- -----------------------------------------------------------------------------
swExternalAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwExternalAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of the status of each of the alarm channels by this agent."
::= { swEquipment 10 }
swExternalAlarmEntry OBJECT-TYPE
SYNTAX SwExternalAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing objects with the status of each alarm channel."
INDEX { swExternalAlarmChannel }
::= { swExternalAlarmTable 1 }
SwExternalAlarmEntry ::=
SEQUENCE {
swExternalAlarmChannel
INTEGER,
swExternalAlarmMessage
DisplayString,
swExternalAlarmStatus
INTEGER
}
swExternalAlarmChannel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the alarm channel."
::= { swExternalAlarmEntry 1 }
swExternalAlarmMessage OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to configure the alarm message when an alarm occurs on this channel.
If no alarm message is configured on this channel, a default alarm message will be generated."
::= { swExternalAlarmEntry 2 }
swExternalAlarmStatus OBJECT-TYPE
SYNTAX INTEGER {
alarming(1),
normal(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shows the current status of each alarm channel."
::= { swExternalAlarmEntry 3 }
-- --------------------------------------------------------------------------------
-- swEquipmentPowerSaving
-- --------------------------------------------------------------------------------
swEquipmentPowerSaving OBJECT IDENTIFIER ::= { swEquipment 11 }
swEquipPowerSavingLinkDetectState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates the equipment reduced power consumption state."
::= { swEquipmentPowerSaving 1 }
swEquipPowerSavingLenDetect OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates the equipment reduced power consumption state with a link partner."
::= { swEquipmentPowerSaving 2 }
swEquipPowerSavingHiberState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the power saving state of system hibernation."
DEFVAL {disabled}
::= { swEquipmentPowerSaving 3 }
swEquipPowerSavingPortLEDState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the power saving state of port LED."
DEFVAL {disabled}
::= { swEquipmentPowerSaving 4 }
swEquipPowerSavingPortState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the power saving state of port."
DEFVAL {disabled}
::= { swEquipmentPowerSaving 5 }
-- -----------------------------------------------------------------------------
swEquipPowerSavingScheduleCtrl OBJECT IDENTIFIER ::= { swEquipmentPowerSaving 6 }
-- -----------------------------------------------------------------------------
swEquipPowerSavingHibernationTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwEquipPowerSavingHibernationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of the system hibernation configurations of the power saving."
::= { swEquipPowerSavingScheduleCtrl 1 }
swEquipPowerSavingHibernationEntry OBJECT-TYPE
SYNTAX SwEquipPowerSavingHibernationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the system hibernation configurations of the power saving."
INDEX { swTimeRangeMgmtRangeName }
::= { swEquipPowerSavingHibernationTable 1 }
SwEquipPowerSavingHibernationEntry ::=
SEQUENCE {
swEquipPowerSavingHiberRowStatus
RowStatus
}
swEquipPowerSavingHiberRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry."
::= { swEquipPowerSavingHibernationEntry 100 }
-- -----------------------------------------------------------------------------
swEquipPowerSavingPortLedTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwEquipPowerSavingPortLedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of the port LED configurations of the power saving."
::= { swEquipPowerSavingScheduleCtrl 2 }
swEquipPowerSavingPortLedEntry OBJECT-TYPE
SYNTAX SwEquipPowerSavingPortLedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the port LED configurations of the power saving."
INDEX { swTimeRangeMgmtRangeName}
::= { swEquipPowerSavingPortLedTable 1 }
SwEquipPowerSavingPortLedEntry ::=
SEQUENCE {
swEquipPowerSavingPortLedRowStatus
RowStatus
}
swEquipPowerSavingPortLedRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry."
::= { swEquipPowerSavingPortLedEntry 100 }
-- -----------------------------------------------------------------------------
swEquipPowerSavingPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwEquipPowerSavingPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of the port configurations of the power saving."
::= { swEquipPowerSavingScheduleCtrl 3 }
swEquipPowerSavingPortEntry OBJECT-TYPE
SYNTAX SwEquipPowerSavingPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the port configurations of the power saving."
INDEX { swEquipPowerSavingPortIndex, swTimeRangeMgmtRangeName }
::= { swEquipPowerSavingPortTable 1 }
SwEquipPowerSavingPortEntry ::=
SEQUENCE {
swEquipPowerSavingPortIndex
INTEGER,
swEquipPowerSavingPortRowStatus
RowStatus
}
swEquipPowerSavingPortIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the module's port number.(1..Max port number in
the module)."
::= { swEquipPowerSavingPortEntry 1 }
swEquipPowerSavingPortRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry."
::= { swEquipPowerSavingPortEntry 100 }
-- --------------------------------------------------------------------------------
-- swEquipEeeMgmt
-- --------------------------------------------------------------------------------
swEquipEeeMgmt OBJECT IDENTIFIER ::= { swEquipmentPowerSaving 20 }
swEquipEeeState OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the EEE state of all ports.
Note:
If the port's bit has a value of '1', specifies the EEE (Energy Efficient Ethernet)
state of this port is 'Enabled',
otherwise, if the port's bit has a value of '0', specifies the EEE
state of this port is 'Disabled'."
::= { swEquipEeeMgmt 1 }
-- --------------------------------------------------------------------------------
-- swEquipmentTemperatureCtrl
-- --------------------------------------------------------------------------------
swEquipmentTemperatureCtrl OBJECT IDENTIFIER ::= { swEquipment 12 }
swTemperatureTrapState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can enable or disable the warning temperature trap."
::= { swEquipmentTemperatureCtrl 1 }
swTemperatureLogState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can enable or disable the warning temperature log."
::= { swEquipmentTemperatureCtrl 2 }
-- -----------------------------------------------------------------------------
-- swEquipmentLEDCtrl OBJECT IDENTIFIER ::= { swEquipment 13 }
-- -----------------------------------------------------------------------------
swEquipmentLEDCtrl OBJECT IDENTIFIER ::= { swEquipment 13 }
swEquipmentPortLEDState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the LED admin state of all ports."
DEFVAL {enabled}
::= { swEquipmentLEDCtrl 1 }
-- -----------------------------------------------------------------------------
-- swExternalAlarmStackingMgmt
-- -----------------------------------------------------------------------------
swExternalAlarmStackingTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwExternalAlarmStackingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of the status of each of the alarm channels by this agent."
::= { swEquipment 15 }
swExternalAlarmStackingEntry OBJECT-TYPE
SYNTAX SwExternalAlarmStackingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing objects with the status of each alarm channel."
INDEX { swExternalAlarmStackingUnitIndex, swExternalAlarmStackingChannel }
::= { swExternalAlarmStackingTable 1 }
SwExternalAlarmStackingEntry ::=
SEQUENCE {
swExternalAlarmStackingUnitIndex
INTEGER,
swExternalAlarmStackingChannel
INTEGER,
swExternalAlarmStackingMessage
DisplayString,
swExternalAlarmStackingStatus
INTEGER
}
swExternalAlarmStackingUnitIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the unit ID in the System.."
::= { swExternalAlarmStackingEntry 1 }
swExternalAlarmStackingChannel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The number of the alarm channel."
::= { swExternalAlarmStackingEntry 2 }
swExternalAlarmStackingMessage OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to configure the alarm message when an alarm occurs on this channel.
If no alarm message is configured on this channel, a default alarm message will be generated."
::= { swExternalAlarmStackingEntry 3 }
swExternalAlarmStackingStatus OBJECT-TYPE
SYNTAX INTEGER {
alarming(1),
normal(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shows the current status of each alarm channel."
::= { swExternalAlarmStackingEntry 4 }
-- -----------------------------------------------------------------------------
swEquipmentNotifyMgmt OBJECT IDENTIFIER ::= { swEquipmentNotify 1 }
swEquipmentNotification OBJECT IDENTIFIER ::= { swEquipmentNotify 2 }
swEquipUnitNotification OBJECT IDENTIFIER ::= { swEquipmentNotification 1 }
swEquipPowerNotification OBJECT IDENTIFIER ::= { swEquipmentNotification 2 }
swEquipFanNotification OBJECT IDENTIFIER ::= { swEquipmentNotification 3 }
swEquipTemperatureNotification OBJECT IDENTIFIER ::= { swEquipmentNotification 4 }
swEquipExternalAlarmNotification OBJECT IDENTIFIER ::= { swEquipmentNotification 5 }
swEquipUnitNotifyMgmt OBJECT IDENTIFIER ::= { swEquipmentNotifyMgmt 1 }
swEquipPowerNotifyMgmt OBJECT IDENTIFIER ::= { swEquipmentNotifyMgmt 2 }
swEquipFanNotifyMgmt OBJECT IDENTIFIER ::= { swEquipmentNotifyMgmt 3 }
swEquipTemperatureNotifyMgmt OBJECT IDENTIFIER ::= { swEquipmentNotifyMgmt 4 }
-- -----------------------------------------------------------------------------
swUnitInsertSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swUnitInsert detection level."
::= { swEquipUnitNotifyMgmt 1 }
swUnitRemoveSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swUnitRemove detection level."
::= { swEquipUnitNotifyMgmt 2 }
swUnitFailureSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swUnitFailure detection level."
::= { swEquipUnitNotifyMgmt 3 }
-- -----------------------------------------------------------------------------
swPowerStatusChgSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swPowerStatusChg detection level."
::= { swEquipPowerNotifyMgmt 1 }
swPowerFailureSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swPowerFailure detection level."
::= { swEquipPowerNotifyMgmt 2 }
swPowerRecoverSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swPowerRecover detection level."
::= { swEquipPowerNotifyMgmt 3 }
-- -----------------------------------------------------------------------------
swFanFailureSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swFanFailure detection level."
::= { swEquipFanNotifyMgmt 1 }
swFanRecoverSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swFanRecover detection level."
::= { swEquipFanNotifyMgmt 2 }
-- -----------------------------------------------------------------------------
swHighTemperatureSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swHighTemperature detection level."
::= { swEquipTemperatureNotifyMgmt 1 }
swHighTemperatureRecoverSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swHighTemperatureRecover detection level."
::= { swEquipTemperatureNotifyMgmt 2 }
swLowTemperatureSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swLowTemperature detection level."
::= { swEquipTemperatureNotifyMgmt 3 }
swLowTemperatureRecoverSeverity OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the swLowTemperatureRecover detection level."
::= { swEquipTemperatureNotifyMgmt 4 }
-- -----------------------------------------------------------------------------
swEquipUnitNotifyPrefix OBJECT IDENTIFIER ::= { swEquipUnitNotification 0 }
swUnitInsert NOTIFICATION-TYPE
OBJECTS { swUnitMgmtId,
swUnitMgmtMacAddr
}
STATUS current
DESCRIPTION "Unit Hot Insert notification."
::= { swEquipUnitNotifyPrefix 1 }
swUnitRemove NOTIFICATION-TYPE
OBJECTS { swUnitMgmtId,
swUnitMgmtMacAddr
}
STATUS current
DESCRIPTION "Unit Hot Remove notification."
::= { swEquipUnitNotifyPrefix 2 }
swUnitFailure NOTIFICATION-TYPE
OBJECTS { swUnitMgmtId
}
STATUS current
DESCRIPTION "Unit Failure notification."
::= { swEquipUnitNotifyPrefix 3 }
swUnitTPChange NOTIFICATION-TYPE
OBJECTS { swStackTopologyType,
swUnitMgmtId,
swUnitMgmtMacAddr
}
STATUS current
DESCRIPTION "The stacking topology change notification."
::= { swEquipUnitNotifyPrefix 4 }
swUnitRoleChange NOTIFICATION-TYPE
OBJECTS { swStackRoleChangeType,
swUnitMgmtId
}
STATUS current
DESCRIPTION "The stacking unit role change notification."
::= { swEquipUnitNotifyPrefix 5 }
-- -----------------------------------------------------------------------------
swEquipPowerNotifyPerfix OBJECT IDENTIFIER ::= { swEquipPowerNotification 0 }
swPowerStatusChg NOTIFICATION-TYPE
OBJECTS { swPowerUnitIndex,
swPowerID,
swPowerStatus
}
STATUS current
DESCRIPTION "Power Status change notification. The notification is issued
when the swPowerStatus changes in the following cases:
lowVoltage -> overCurrent.
lowVoltage -> working.
lowVoltage -> disconnect.
lowVoltage -> connect.
overCurrent -> lowVoltage.
overCurrent -> working.
overCurrent -> disconnect.
overCurrent -> connect.
working -> lowVoltage.
working -> overCurrent.
working -> connect.
working -> disconnect.
fail -> connect.
fail -> disconnect.
connect -> lowVoltage.
connect -> overCurrent.
connect -> working.
connect -> disconnect.
disconnect -> lowVoltage.
disconnect -> overCurrent.
disconnect -> working.
disconnect -> connect."
::= { swEquipPowerNotifyPerfix 1 }
swPowerFailure NOTIFICATION-TYPE
OBJECTS { swPowerUnitIndex,
swPowerID,
swPowerStatus
}
STATUS current
DESCRIPTION "Power Failure notification. The notification is issued
when the swPowerStatus changes in the following cases:
lowVoltage -> fail.
overCurrent -> fail.
working -> fail.
connect -> fail.
disconnect -> fail."
::= { swEquipPowerNotifyPerfix 2 }
swPowerRecover NOTIFICATION-TYPE
OBJECTS {swPowerUnitIndex,
swPowerID,
swPowerStatus
}
STATUS current
DESCRIPTION "Power Recover notification. The notification is issued
when the swPowerStatus changes in the following cases:
fail -> lowVoltage.
fail -> overCurrent.
fail -> working."
::= { swEquipPowerNotifyPerfix 3 }
-- -----------------------------------------------------------------------------
swEquipFanNotifyPrefix OBJECT IDENTIFIER ::= { swEquipFanNotification 0 }
swFanFailure NOTIFICATION-TYPE
OBJECTS { swFanUnitIndex,
swFanID
}
STATUS current
DESCRIPTION "Fan Failure notification."
::= { swEquipFanNotifyPrefix 1 }
swFanRecover NOTIFICATION-TYPE
OBJECTS { swFanUnitIndex,
swFanID
}
STATUS current
DESCRIPTION "Fan Recover notification."
::= { swEquipFanNotifyPrefix 2 }
-- -----------------------------------------------------------------------------
swEquipTemperatureNotifyPrefix OBJECT IDENTIFIER ::= { swEquipTemperatureNotification 0 }
swHighTemperature NOTIFICATION-TYPE
OBJECTS { swTemperatureUnitIndex,
swTemperSensorID,
swTemperatureCurrent
}
STATUS current
DESCRIPTION "High Temperature notification."
::= { swEquipTemperatureNotifyPrefix 1 }
swHighTemperatureRecover NOTIFICATION-TYPE
OBJECTS { swTemperatureUnitIndex,
swTemperSensorID,
swTemperatureCurrent
}
STATUS current
DESCRIPTION "High Temperature notification."
::= { swEquipTemperatureNotifyPrefix 2 }
swLowTemperature NOTIFICATION-TYPE
OBJECTS { swTemperatureUnitIndex,
swTemperSensorID,
swTemperatureCurrent
}
STATUS current
DESCRIPTION "Low Temperature notification."
::= { swEquipTemperatureNotifyPrefix 3 }
swLowTemperatureRecover NOTIFICATION-TYPE
OBJECTS { swTemperatureUnitIndex,
swTemperSensorID,
swTemperatureCurrent
}
STATUS current
DESCRIPTION "Low Temperature notification."
::= { swEquipTemperatureNotifyPrefix 4 }
-- -----------------------------------------------------------------------------
swEquipExternalAlarmNotifyPrefix OBJECT IDENTIFIER ::= { swEquipExternalAlarmNotification 0 }
swExternalAlarm NOTIFICATION-TYPE
OBJECTS { swExternalAlarmChannel,
swExternalAlarmMessage
}
STATUS current
DESCRIPTION "The notice of an Alarm in the specified channel."
::= { swEquipExternalAlarmNotifyPrefix 1 }
swExternalAlarmStacking NOTIFICATION-TYPE
OBJECTS { swExternalAlarmStackingUnitIndex,
swExternalAlarmStackingChannel,
swExternalAlarmStackingMessage
}
STATUS current
DESCRIPTION "The notice of an Alarm in the specified channel."
::= { swEquipExternalAlarmNotifyPrefix 2 }
--- -----------------------------------------------------------------------------
swNotificationBindings OBJECT IDENTIFIER ::= { swEquipmentNotify 3 }
--- -----------------------------------------------------------------------------
swEquipTemperNotifyBindings OBJECT IDENTIFIER ::= { swNotificationBindings 1 }
swTemperSensorID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the ID of the temperature sensor in the unit."
::= { swEquipTemperNotifyBindings 1 }
swEquipUnitNotifyBindings OBJECT IDENTIFIER ::= { swNotificationBindings 2 }
swStackTopologyType OBJECT-TYPE
SYNTAX INTEGER {
chain(1),
ring(2)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the MAC address of the switch."
::= { swEquipUnitNotifyBindings 1 }
swStackRoleChangeType OBJECT-TYPE
SYNTAX INTEGER {
backup-to-master(1),
slave-to-master(2)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the role information of the switch."
::= { swEquipUnitNotifyBindings 2 }
END
|