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
|
-- ==================================================================
-- Copyright (C) 2005 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: HGMP Information MIB for LAN Switch
-- Reference:
-- Version: V1.8
-- History:
-- V1.0 2001.5.15 Created Ye dalu
-- V1.1 2004/7/20 Modify Object Name from Hh3cNDPNbEntry
-- to Hh3cNDPPortNbEntry
-- V1.2 2004/8/09 add notification hh3chgmpNetTopChange
-- V1.3 2004-09-24 modify value of STATUS clause from 'mandatory' to 'current' by gaolong
-- V1.4 2004-10-12 updated by gaolong
-- Import NOTIFICATION-TYPE.
-- V1.5 2004-11-02 updated by gaolong
-- Import Counter32.
-- V1.6 2005-12-9 added by zhanglin KF0176
-- add hh3chgmpClusterProtocolMac
-- add hh3chgmpWhitelistNbTable
-- add hh3chgmpWhitelistTable
-- add hh3chgmpBlacklistTable
-- 2005-12-20 added by zushuzhi 03030
-- add hh3chgmpMemberPriPortTable
-- add hh3chgmpNTDPTopLinkStatus
-- V1.7 2006-04-30 modified by gaolong
-- relocate hh3chgmpProtocolMac, hh3chgmpTopologyManagement, hh3chgmpMemberPriPortTable
-- and the objects below them.
-- relocate hh3chgmpNTDPTopLinkStatus in hh3chgmpNTDPTopLinkStatus.
-- V1.8 2006-05-08 modify the description of hh3chgmpNTDPCollectTopTime by shanfeng
-- ==================================================================
-- ==================================================================
--
-- Varibles and types be imported
--
-- ==================================================================
HH3C-HGMP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cRhw
FROM HH3C-OID-MIB
IpAddress, Integer32, OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY,
NOTIFICATION-TYPE, Counter32, Unsigned32
FROM SNMPv2-SMI
RowStatus, MacAddress, TEXTUAL-CONVENTION, DisplayString
FROM SNMPv2-TC;
hh3cHgmp MODULE-IDENTITY
LAST-UPDATED "200512061452Z"
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"This MIB contains objects to manage the hh3chgmp operations,
which are used on lanswitch products."
::= { hh3cRhw 7 }
-- ==================================================================
--
-- ======================= definition begin =========================
--
-- ==================================================================
--
-- cluster definitions
--
hh3cClusterObject OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This MIB contains objects to manage the cluster operations, which
are used on lanswitch products."
::= { hh3cHgmp 1 }
hh3chgmpSetVLANSecurity OBJECT-TYPE
SYNTAX INTEGER
{
noSecurity(0),
security(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure whether to perform the VLAN check inside the cluster."
DEFVAL { security }
::= { hh3cClusterObject 1 }
hh3chgmpHandShakeInterval OBJECT-TYPE
SYNTAX Integer32(1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Handshaking interval of the cluster member switches."
DEFVAL { 10 }
::= { hh3cClusterObject 2 }
hh3chgmpHandShakeHoldtime OBJECT-TYPE
SYNTAX Integer32(1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Holdtime of administrator switch and member switch in the cluster."
DEFVAL { 60 }
::= { hh3cClusterObject 3 }
hh3chgmpGrpMemberTableChange OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Add 1 to the member list after it changes. The administrator checks if
the value has changed. If not, he will not read the list once more."
DEFVAL { 0 }
::= { hh3cClusterObject 4 }
hh3chgmpMemberDisconRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disconnection times of the member and administrator switches divided by
member number times 1000."
DEFVAL { 0 }
::= { hh3cClusterObject 5 }
hh3chgmpCmdLanswitchFlag OBJECT-TYPE
SYNTAX INTEGER
{
false(0),
true(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrator switch flag"
DEFVAL { false }
::= { hh3cClusterObject 6 }
hh3chgmpCmdClusterName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..8))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cluster name of the administrator switch"
::= { hh3cClusterObject 7 }
hh3chgmpMngPriIpSegCMIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The private management IP address of the administrator switch,
which can not be modified after the cluster has been created."
::= { hh3cClusterObject 8 }
hh3chgmpMngPriIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The private management IP address mask assigned by the administrator
switch, which cannot be modified after the cluster has been created."
::= { hh3cClusterObject 9 }
hh3chgmpFtpServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The cluster members can access the Ftp Server through the administrator
switch, which can only be configured and accessed on the administrator
switch."
::= { hh3cClusterObject 10 }
hh3chgmpTftpServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The cluster members can access the Tftp Server through the administrator
switch, which can only be configured and accessed on the administrator
switch."
::= { hh3cClusterObject 11 }
hh3chgmpSnmpHost OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Snmp Host to send the cluster trap packets, which can only be
configured and accessed on the administrator switch."
::= { hh3cClusterObject 12 }
hh3chgmpLogHost OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Log host of the cluster, which can only be configured and accessed on
the administrator switch."
::= { hh3cClusterObject 13 }
--
-- TABLE: Group member table
--
hh3chgmpGrpMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpGrpMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of cluster member switches"
::= { hh3cClusterObject 14 }
hh3chgmpGrpMemberEntry OBJECT-TYPE
SYNTAX Hh3cHgmpGrpMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
hh3chgmpGrpMemberDeviceId
}
::= { hh3chgmpGrpMemberTable 1 }
Hh3cHgmpGrpMemberEntry ::=
SEQUENCE
{
hh3chgmpGrpMemberDeviceId OCTET STRING,
hh3chgmpGrpMemberSerial Integer32,
hh3chgmpGrpMemberIpAddr IpAddress,
hh3chgmpGrpMemberName OCTET STRING,
hh3chgmpGrpMemberPassword OCTET STRING,
hh3chgmpGrpMemberPlatform OCTET STRING,
hh3chgmpGrpMemberStatus INTEGER,
hh3chgmpGrpMemberDisconCount Integer32,
hh3chgmpGrpMemberEnrollTime Integer32,
hh3chgmpGrpMemberOperate RowStatus
}
hh3chgmpGrpMemberDeviceId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"4 bytes reserved as 0x0 + 6 bytes of MAC address, expressed as
a character string of the hexadecimal number."
::= { hh3chgmpGrpMemberEntry 1 }
hh3chgmpGrpMemberSerial OBJECT-TYPE
SYNTAX Integer32(0..2047)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When adding member switch to the cluster, the administrator switch
will assign an unique integer to identify it."
::= { hh3chgmpGrpMemberEntry 2 }
hh3chgmpGrpMemberIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The private IP addresses of the member switches for the communication
inside the cluster."
::= { hh3chgmpGrpMemberEntry 3 }
hh3chgmpGrpMemberName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hostname of the member switch"
::= { hh3chgmpGrpMemberEntry 4 }
hh3chgmpGrpMemberPassword OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Member password for joining a cluster"
::= { hh3chgmpGrpMemberEntry 5 }
hh3chgmpGrpMemberPlatform OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Set the hardware platform. A null string indicates the information
does not exist in the device adjacency table."
::= { hh3chgmpGrpMemberEntry 6 }
hh3chgmpGrpMemberStatus OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
fault(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Member status on the administrator switch, use for displaying the
network management status."
DEFVAL { fault }
::= { hh3chgmpGrpMemberEntry 7 }
hh3chgmpGrpMemberDisconCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of inside communication disconnection between the member switch
and the administrator switch."
::= { hh3chgmpGrpMemberEntry 8 }
hh3chgmpGrpMemberEnrollTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enrollment time of the member, measured in seconds."
::= { hh3chgmpGrpMemberEntry 9 }
hh3chgmpGrpMemberOperate OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Operation indication field, indicates the operation of adding/removing
a member by the network management agent."
::= { hh3chgmpGrpMemberEntry 10 }
--
-- TABLE: Member reset table
--
hh3chgmpMemberResetTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpMemberResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Reset a member switch in the cluster."
::= { hh3cClusterObject 15 }
hh3chgmpMemberResetEntry OBJECT-TYPE
SYNTAX Hh3cHgmpMemberResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
hh3chgmpMemberResetMAC
}
::= { hh3chgmpMemberResetTable 1 }
Hh3cHgmpMemberResetEntry ::=
SEQUENCE
{
hh3chgmpMemberResetMAC OCTET STRING,
hh3chgmpMemberEraseflash INTEGER
}
hh3chgmpMemberResetMAC OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The management MAC address of the switch to be reset, which is the
unique identifier of the switch."
::= { hh3chgmpMemberResetEntry 1 }
hh3chgmpMemberEraseflash OBJECT-TYPE
SYNTAX INTEGER
{
noErase(0),
erase(1),
cannotget(65535)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether to erase the configuration file from the flash after
resetting the switch. Read this node, cannotget(65535) will be
returned."
::= { hh3chgmpMemberResetEntry 2 }
hh3chgmpEventsV2 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Definition point for cluster notifications."
::= { hh3cClusterObject 0 }
hh3chgmpMemberfailure NOTIFICATION-TYPE
OBJECTS
{
hh3chgmpGrpMemberDeviceId
}
STATUS current
DESCRIPTION
"When a cluster member failure, send a snmp trap to the network
management."
::= { hh3chgmpEventsV2 1 }
hh3chgmpMemberRecover NOTIFICATION-TYPE
OBJECTS
{
hh3chgmpGrpMemberDeviceId
}
STATUS current
DESCRIPTION
"When a cluster member recover, send a snmp trap to the network
management."
::= { hh3chgmpEventsV2 2 }
hh3chgmpMemberStatusChange NOTIFICATION-TYPE
OBJECTS
{
hh3chgmpGrpMemberDeviceId,
hh3chgmpNTDPCacheClusterRole
}
STATUS current
DESCRIPTION
"When a cluster member status change, send a snmp trap to the
network management."
::= { hh3chgmpEventsV2 3 }
hh3chgmpNetTopChange NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"When net topology of this cluster change, send a snmp trap
to the network management."
::= { hh3chgmpEventsV2 4 }
hh3chgmpClusterRole OBJECT-TYPE
SYNTAX INTEGER
{
roleCMDSW(1),
roleMEMBERSW(2),
roleBAKSW(3),
roleCASW(16),
roleUNISW(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This switch's role in cluster."
DEFVAL { roleUNISW }
::= { hh3cClusterObject 16 }
hh3chgmpClusterMaxPoolNum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max switch members that the cluster can support(include
administrator switch)."
::= { hh3cClusterObject 17 }
hh3chgmpClusterCmdSwMac OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of administrator switch. It will be filled with
zero when not be a member of cluster."
::= { hh3cClusterObject 18 }
hh3chgmpRun OBJECT-TYPE
SYNTAX INTEGER
{
false(0),
true(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable cluster on this switch."
DEFVAL { true }
::= { hh3cClusterObject 19 }
--
-- cluster protocol MAC
--
hh3chgmpProtocolMac OBJECT IDENTIFIER ::= { hh3cClusterObject 22 }
hh3chgmpClusterProtocolMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Protocol MAC of HGMP protocol family. All multicast packets of this
protocol family use this MAC as destination MAC."
DEFVAL { '0180C200000A'H }
::= { hh3chgmpProtocolMac 1 }
--
-- hh3chgmp topology management
--
hh3chgmpTopologyManagement OBJECT IDENTIFIER ::= { hh3cClusterObject 23 }
--
-- TABLE: Whitelist Table
--
hh3chgmpWhitelistTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpWhitelistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Cluster switches white list table. White list topology is the
topology which has been affirmed by network administrator in a
cluster, and all devices in white list topology are recorded in this
table. Against to white list table, black list table records the
devices which are denied to join in cluster. Adding a black list
device to white list table will cause a failure."
::= { hh3chgmpTopologyManagement 1 }
hh3chgmpWhitelistEntry OBJECT-TYPE
SYNTAX Hh3cHgmpWhitelistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items"
INDEX
{
hh3chgmpWhitelistDeviceId
}
::= { hh3chgmpWhitelistTable 1 }
Hh3cHgmpWhitelistEntry ::=
SEQUENCE
{
hh3chgmpWhitelistDeviceId OCTET STRING,
hh3chgmpWhitelistSerial Integer32,
hh3chgmpWhitelistRowStatus RowStatus
}
hh3chgmpWhitelistDeviceId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(10))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique identifier indicating a white list switch. Value format of the
this object is 'XXXXYYYYYY', in which 'XXXX' is reserved as 4 bytes of
0x0, 'YYYYYY' is a MAC address.
For example, if the MAC is 000f-e459-000a, the value of this object is
an octet string: '00' '00' '00' '00' '00' '0f' 'e4' '59' '00' '0a'."
::= { hh3chgmpWhitelistEntry 1 }
hh3chgmpWhitelistSerial OBJECT-TYPE
SYNTAX Integer32(0..2047 | 65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When adding member switch to the cluster, the administrator switch
will assign an unique integer to identify it. 0xffff means invalid
value for this object."
::= { hh3chgmpWhitelistEntry 2 }
hh3chgmpWhitelistRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status of this table."
::= { hh3chgmpWhitelistEntry 3 }
--
-- TABLE: Whitelist neighbor table
--
hh3chgmpWhitelistNbTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpWhitelistNbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Cluster switches white list neighboring information table. White
list neighbor table records all neighbor devices for every white
list device. In fact, white list neighbor table displays the whole
white list topology."
::= { hh3chgmpTopologyManagement 2 }
hh3chgmpWhitelistNbEntry OBJECT-TYPE
SYNTAX Hh3cHgmpWhitelistNbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items"
INDEX
{
hh3chgmpWhitelistDeviceId,
hh3chgmpWhitelistNbIndex
}
::= { hh3chgmpWhitelistNbTable 1 }
Hh3cHgmpWhitelistNbEntry ::=
SEQUENCE
{
hh3chgmpWhitelistNbIndex Integer32,
hh3chgmpWhitelistNbDeviceId OCTET STRING,
hh3chgmpWhitelistPortName OCTET STRING,
hh3chgmpWhitelistNbPortName OCTET STRING
}
hh3chgmpWhitelistNbIndex OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of a switch which is the neighbor of a white list switch
identified by 'hgmpWhitelistDeviceId'."
::= { hh3chgmpWhitelistNbEntry 1 }
hh3chgmpWhitelistNbDeviceId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identifier indicating a neighbor switch of a white list
switch. Value format of the this object is 'XXXXYYYYYY', in which
'XXXX' is reserved as 4 bytes of 0x0, 'YYYYYY' is a MAC address.
For example, if the MAC is 000f-e459-000a, the value of this object
is an octet string: '00' '00' '00' '00' '00' '0f' 'e4' '59' '00' '0a'."
::= { hh3chgmpWhitelistNbEntry 2 }
hh3chgmpWhitelistPortName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..47))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the port which a white list switch connects to the
neighbor specified by 'hgmpWhitelistNbIndex'."
::= { hh3chgmpWhitelistNbEntry 3 }
hh3chgmpWhitelistNbPortName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..47))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the port which a neighbor device connects to the white
list switch specified by 'hgmpWhitelistDeviceId'."
::= { hh3chgmpWhitelistNbEntry 4 }
--
-- TABLE: Blacklist table
--
hh3chgmpBlacklistTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpBlacklistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Cluster switches black list table. The black list table records all
black list devices, and a device in black list is not permitted to
join in any cluster."
::= { hh3chgmpTopologyManagement 3 }
hh3chgmpBlacklistEntry OBJECT-TYPE
SYNTAX Hh3cHgmpBlacklistEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items"
INDEX
{
hh3chgmpBlacklistDeviceId
}
::= { hh3chgmpBlacklistTable 1 }
Hh3cHgmpBlacklistEntry ::=
SEQUENCE
{
hh3chgmpBlacklistDeviceId OCTET STRING,
hh3chgmpBlacklistAccessDeviceId OCTET STRING,
hh3chgmpBlacklistAccessPortName OCTET STRING,
hh3chgmpBlacklistRowStatus RowStatus
}
hh3chgmpBlacklistDeviceId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(10))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique identifier indicating a black list switch. Value format of the
this object is 'XXXXYYYYYY', in which 'XXXX' is reserved as 4 bytes
of 0x0, 'YYYYYY' is a MAC address.
For example, if the MAC is 000f-e459-000a, the value of this object is
an octet string: '00' '00' '00' '00' '00' '0f' 'e4' '59' '00' '0a'."
::= { hh3chgmpBlacklistEntry 1 }
hh3chgmpBlacklistAccessDeviceId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identifier indicating the access device of a black list switch.
Tracing from a black list device to the cluster commander switch, the
device which the black list switch directly connects to is the access
device.
Value format of the this object is 'XXXXYYYYYY', in which 'XXXX' is
reserved as 4 bytes of 0x0, 'YYYYYY' is a MAC address. 10 bytes of 0xff
means invalid value for this object.
For example, if the MAC is 000f-e459-000a, the value of this object is
an octet string: '00' '00' '00' '00' '00' '0f' 'e4' '59' '00' '0a'."
::= { hh3chgmpBlacklistEntry 2 }
hh3chgmpBlacklistAccessPortName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..47))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port which the access device connecting to the black list switch
is named access port, the object returns the access port name.
An empty string means invalid value for this object."
::= { hh3chgmpBlacklistEntry 3 }
hh3chgmpBlacklistRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status of this table."
::= { hh3chgmpBlacklistEntry 4 }
--
-- TABLE: Member private port number table
--
hh3chgmpMemberPriPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpMemberPriPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains port number for different network protocols
on each member switch. The port number can be used to access
a specified member switch with specified protocol and private
IP address."
::= { hh3cClusterObject 24 }
hh3chgmpMemberPriPortEntry OBJECT-TYPE
SYNTAX Hh3cHgmpMemberPriPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specified member private port entry. The
indexes of the entry are hh3chgmpGrpMemberDevId and
hh3chgmpMemberPriPortProto, which indicate entries in the table."
INDEX
{
hh3chgmpMemberDevId,
hh3chgmpMemberPriPortProto
}
::= { hh3chgmpMemberPriPortTable 1 }
Hh3cHgmpMemberPriPortEntry ::=
SEQUENCE
{
hh3chgmpMemberDevId OCTET STRING,
hh3chgmpMemberPriPortProto Unsigned32,
hh3chgmpMemberPriPortProtoDescr DisplayString,
hh3chgmpMemberPriPortNum Unsigned32
}
hh3chgmpMemberDevId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identifier indicating the switch in cluster.
Value format of the this object is 'XXXXYYYYYY', in which 'XXXX' is
is reserved as 4 bytes of 0x0, 'YYYYYY' is a MAC address."
::= { hh3chgmpMemberPriPortEntry 1 }
hh3chgmpMemberPriPortProto OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table. Each instance value of this object
corresponds to a different protocol."
::= { hh3chgmpMemberPriPortEntry 2 }
hh3chgmpMemberPriPortProtoDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It describes the hh3chgmpMemberPriPortProtocol object value.
For example, it is 'SNMP' when hh3chgmpMemberPriPortProtocol value
is 1."
::= { hh3chgmpMemberPriPortEntry 3 }
hh3chgmpMemberPriPortNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The private port number of member switch, used by specified
hh3chgmpMemberPriPortProto. By using the private IP address,
specified protocol and port number, other devices outside
cluster can access member switch. The private IP address
can be acquired by reading hh3chgmpGrpMemberIpAddr."
::= { hh3chgmpMemberPriPortEntry 4 }
--
-- stack definitions
--
hh3cStackObject OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This MIB contains objects to manage the stack operations, which is
used on lanswitch products."
::= { hh3cHgmp 2 }
hh3chgmpStackMemberTableChange OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Change identifier of the stack member table."
DEFVAL { 0 }
::= { hh3cStackObject 1 }
hh3chgmpStackMemberDisconRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Disconnection rate of the stack member switches."
DEFVAL { 0 }
::= { hh3cStackObject 2 }
hh3chgmpMainLanswitchFlag OBJECT-TYPE
SYNTAX INTEGER
{
false(0),
true(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of the local switch in the stack."
DEFVAL { false }
::= { hh3cStackObject 3 }
hh3chgmpStackIpPoolStartIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The first address of the management IP network segment assigned by
the master switch, which cannot be modified in the case that there
is IP address assignment."
::= { hh3cStackObject 4 }
hh3chgmpStackIpPoolLength OBJECT-TYPE
SYNTAX INTEGER(1..200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The length of the management IP segment assigned by the master
switch, which cannot be modified in the case that there is IP
address assignment."
::= { hh3cStackObject 5 }
hh3chgmpStackIpPoolMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mask of the management IP segment assigned by the master switch,
which cannot be modified in the case that there is IP address assignment."
DEFVAL { 'FFFF0000'H }
::= { hh3cStackObject 10 }
--
-- TABLE: Stack member table
--
hh3chgmpStackMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpStackMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Stack member table."
::= { hh3cStackObject 6 }
hh3chgmpStackMemberEntry OBJECT-TYPE
SYNTAX Hh3cHgmpStackMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
hh3chgmpStackMemberDeviceId
}
::= { hh3chgmpStackMemberTable 1 }
Hh3cHgmpStackMemberEntry ::=
SEQUENCE
{
hh3chgmpStackMemberDeviceId OCTET STRING,
hh3chgmpStackMemberSerial Integer32,
hh3chgmpStackMemberIpAddr IpAddress,
hh3chgmpStackMemberName OCTET STRING,
hh3chgmpStackMemberPassword OCTET STRING,
hh3chgmpStackMemberPlatform OCTET STRING,
hh3chgmpStackMemberStatus INTEGER,
hh3chgmpStackMemberDisconCount Integer32,
hh3chgmpStackMemberEnrollTime Integer32
}
hh3chgmpStackMemberDeviceId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"2 bytes address type of the switch + 2 bytes zero + MAC address,
expressed as a hexadecimal number string."
::= { hh3chgmpStackMemberEntry 1 }
hh3chgmpStackMemberSerial OBJECT-TYPE
SYNTAX Integer32(0..2047)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When adding a member switch to the stack, the master switch will
assign an unique integer to identify it."
::= { hh3chgmpStackMemberEntry 2 }
hh3chgmpStackMemberIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The private member IP address for the communication inside the stack."
::= { hh3chgmpStackMemberEntry 3 }
hh3chgmpStackMemberName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hostname of the member switch."
::= { hh3chgmpStackMemberEntry 4 }
hh3chgmpStackMemberPassword OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Member password for joining a stack."
::= { hh3chgmpStackMemberEntry 5 }
hh3chgmpStackMemberPlatform OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Set the hardware platform. A null string indicates the information
does not exist in the device adjacency table."
::= { hh3chgmpStackMemberEntry 6 }
hh3chgmpStackMemberStatus OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
fault(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Member status on the master switch, use for displaying the network
management status."
DEFVAL { fault }
::= { hh3chgmpStackMemberEntry 7 }
hh3chgmpStackMemberDisconCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of inside communication disconnection between the member switch
and the master switch."
::= { hh3chgmpStackMemberEntry 8 }
hh3chgmpStackMemberEnrollTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enrollment time of the member, measured in seconds."
::= { hh3chgmpStackMemberEntry 9 }
hh3chgmpStackRole OBJECT-TYPE
SYNTAX INTEGER
{
roleCMDSW(1),
roleMEMBERSW(2),
roleBAKSW(3),
roleCASW(16),
roleUNISW(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This switch's role status in stack."
DEFVAL { roleUNISW }
::= { hh3cStackObject 7 }
hh3chgmpStackMaxPoolNum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max switch members in one stack that the switch support (include
main switch)."
::= { hh3cStackObject 8 }
hh3chgmpStackMainSwMac OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of main switch. It will be 00.00.00 when not be a
member of stack."
::= { hh3cStackObject 9 }
--
-- Neighbor protocol objects
--
hh3cNDPObject OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This MIB contains objects to manage the ndp operations, which are
used on lanswitch products."
::= { hh3cHgmp 5 }
hh3cNDPStatus OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"NDP protocol module enable flag"
DEFVAL { enable }
::= { hh3cNDPObject 1 }
hh3cNDPHelloTimer OBJECT-TYPE
SYNTAX Integer32 (5..254)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"NDP packet transmission interval, measured in seconds."
DEFVAL { 60 }
::= { hh3cNDPObject 2 }
hh3cNDPAgingTime OBJECT-TYPE
SYNTAX Integer32(5..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"How long the NDP information of the local switch can be hold in
the adjacent switch, measured in seconds."
DEFVAL { 180 }
::= { hh3cNDPObject 3 }
hh3cNDPChange OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Change identifier of the Neighbor table"
DEFVAL { 0 }
::= { hh3cNDPObject 4 }
hh3cNDPPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cNDPPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure to enable/disable the interface NDP of the switch."
::= { hh3cNDPObject 5 }
hh3cNDPPortEntry OBJECT-TYPE
SYNTAX Hh3cNDPPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
hh3cNDPIfIndex
}
::= { hh3cNDPPortTable 1 }
Hh3cNDPPortEntry ::=
SEQUENCE
{
hh3cNDPIfIndex Integer32,
hh3cNDPPortStatus INTEGER
}
hh3cNDPIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identifier of an interface of the device."
::= { hh3cNDPPortEntry 1 }
hh3cNDPPortStatus OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If it is enable, the device will send and receive the NDP
packets via the interface. To disable the NDP function on the
interface, set the entry as false."
DEFVAL { enable }
::= { hh3cNDPPortEntry 2 }
hh3cNDPPortNbTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cNDPPortNbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"NDP neighbor information on the switch."
::= { hh3cNDPObject 6 }
hh3cNDPPortNbEntry OBJECT-TYPE
SYNTAX Hh3cNDPPortNbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
hh3cNDPIfIndex,
hh3cNDPPortNbDeviceId,
hh3cNDPPortNbPortName
}
::= { hh3cNDPPortNbTable 1 }
Hh3cNDPPortNbEntry ::=
SEQUENCE
{
hh3cNDPPortNbDeviceId OCTET STRING,
hh3cNDPPortNbPortName OCTET STRING,
hh3cNDPPortNbDeviceName OCTET STRING,
hh3cNDPPortNbPortMode INTEGER,
hh3cNDPPortNbProductVer OCTET STRING,
hh3cNDPPortNbHardVer OCTET STRING,
hh3cNDPPortNbBootromVer OCTET STRING,
hh3cNDPPortNbSoftVer OCTET STRING,
hh3cNDPPortNbAgingtime Integer32
}
hh3cNDPPortNbDeviceId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"2 bytes address type of the member switch + 2 bytes zero + MAC
address, expressed as a character string of the hexadecimal
number."
::= { hh3cNDPPortNbEntry 1 }
hh3cNDPPortNbPortName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..47))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identifier of a port. A null string indicates that the
field was not included in in the latest NDP packet. Interface
type + card number / slot number / sequence number."
::= { hh3cNDPPortNbEntry 2 }
hh3cNDPPortNbDeviceName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device name. A null string indicates that the field was not
included in the latest NDP packet."
::= { hh3cNDPPortNbEntry 3 }
hh3cNDPPortNbPortMode OBJECT-TYPE
SYNTAX INTEGER
{
full(1),
half(2),
auto(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The neighbor port duplex mode."
::= { hh3cNDPPortNbEntry 4 }
hh3cNDPPortNbProductVer OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Product version. A null string indicates that the field was
not included in the latest NDP packet."
::= { hh3cNDPPortNbEntry 5 }
hh3cNDPPortNbHardVer OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware version. A null string indicates that the field was
not included in the latest NDP packet."
::= { hh3cNDPPortNbEntry 6 }
hh3cNDPPortNbBootromVer OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bootrom version. A null string indicates that the field was
not included in the latest NDP packet."
::= { hh3cNDPPortNbEntry 7 }
hh3cNDPPortNbSoftVer OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software version. A null string indicates that the field was
not included in the latest NDP packet."
::= { hh3cNDPPortNbEntry 8 }
hh3cNDPPortNbAgingtime OBJECT-TYPE
SYNTAX Integer32 (5..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"How long the NDP information of the local switch can be hold
in the adjacent switch, measured in seconds."
::= { hh3cNDPPortNbEntry 9 }
--
-- NTDP management objects
--
hh3cNTDPObject OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This MIB contains objects to manage the ntdp operations, which
are used on lanswitch products."
::= { hh3cHgmp 4 }
hh3chgmpNTDPCollectTopTime OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Topology collection interval of the administrator switch of
the cluster, measured in minutes."
DEFVAL { 0 }
::= { hh3cNTDPObject 1 }
hh3chgmpNTDPHopRange OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Range of the topology collection of the administrator switch"
DEFVAL { 3 }
::= { hh3cNTDPObject 2 }
hh3chgmpNTDPRun OBJECT-TYPE
SYNTAX INTEGER
{
false(0),
true(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable the NTDP function on the switch."
DEFVAL { true }
::= { hh3cNTDPObject 3 }
hh3chgmpNTDPPortDelay OBJECT-TYPE
SYNTAX Integer32 (1..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the delay to forward the topology request via the ports,
measured in milliseconds."
DEFVAL { 20 }
::= { hh3cNTDPObject 4 }
hh3chgmpNTDPHopDelay OBJECT-TYPE
SYNTAX Integer32 (1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the delay to forward the topology request from every hop,
measured in milliseconds."
DEFVAL { 200 }
::= { hh3cNTDPObject 5 }
hh3chgmpNTDPLastTopCollectDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the latest overall topology collection, a
performance count measured in seconds."
DEFVAL { 0 }
::= { hh3cNTDPObject 6 }
hh3chgmpNTDPCacheChange OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Add 1 when the device table changes. The network administrator
will check if it has changed before accessing the table. If it
has not changed, he will not access again."
DEFVAL { 0 }
::= { hh3cNTDPObject 7 }
hh3chgmpNTDPTOPTableChange OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Add 1 when the topology table changes. The network
administrator will check if it has changed before accessing
the table. If it has not changed, he will not access again."
DEFVAL { 0 }
::= { hh3cNTDPObject 8 }
hh3chgmpNTDPInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpNTDPInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Enable/Disable the NTDP on the switch port."
::= { hh3cNTDPObject 9 }
hh3chgmpNTDPInterfaceEntry OBJECT-TYPE
SYNTAX Hh3cHgmpNTDPInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
hh3chgmpNTDPInterfaceIfIndex
}
::= { hh3chgmpNTDPInterfaceTable 1 }
Hh3cHgmpNTDPInterfaceEntry ::=
SEQUENCE
{
hh3chgmpNTDPInterfaceIfIndex Integer32,
hh3chgmpNTDPInterfaceEnable INTEGER
}
hh3chgmpNTDPInterfaceIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identifier an interface of the device."
::= { hh3chgmpNTDPInterfaceEntry 1 }
hh3chgmpNTDPInterfaceEnable OBJECT-TYPE
SYNTAX INTEGER
{
false(0),
true(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If it is true, the device will send and receive the NTDP
packets via the interface. To disable the NTDP function on the
interface, set the entry as false."
DEFVAL { true }
::= { hh3chgmpNTDPInterfaceEntry 2 }
hh3chgmpNTDPCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpNTDPCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Access the information about the switch from the topology table."
::= { hh3cNTDPObject 10 }
hh3chgmpNTDPCacheEntry OBJECT-TYPE
SYNTAX Hh3cHgmpNTDPCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
hh3chgmpNTDPCacheHashIndex,
hh3chgmpNTDPCacheDeviceID
}
::= { hh3chgmpNTDPCacheTable 1 }
Hh3cHgmpNTDPCacheEntry ::=
SEQUENCE
{
hh3chgmpNTDPCacheHashIndex Integer32,
hh3chgmpNTDPCacheDeviceID OCTET STRING,
hh3chgmpNTDPCacheClusterName OCTET STRING,
hh3chgmpNTDPCacheClusterRole INTEGER,
hh3chgmpNTDPCacheCapabilities INTEGER,
hh3chgmpNTDPCacheVersion OCTET STRING,
hh3chgmpNTDPCachePlatform OCTET STRING,
hh3chgmpNTDPCacheMngVLAN INTEGER,
hh3chgmpNTDPCacheHop INTEGER
}
hh3chgmpNTDPCacheHashIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Our NTDP information is saved in the HASH table on the
administrator switch. Using DeviceID as index will lead to the
comparison of a large amount of character strings, which puts
too many burdens on the administrator switch. A HAHSIndex is
added to reduce the character string comparison to the
least range."
::= { hh3chgmpNTDPCacheEntry 1 }
hh3chgmpNTDPCacheDeviceID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"2 bytes address type of the member switch + 2 bytes zero + MAC
address, expressed as a character string of the
hexadecimal number."
::= { hh3chgmpNTDPCacheEntry 2 }
hh3chgmpNTDPCacheClusterName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the cluster including the device."
::= { hh3chgmpNTDPCacheEntry 3 }
hh3chgmpNTDPCacheClusterRole OBJECT-TYPE
SYNTAX INTEGER
{
roleCOSW(1),
roleMSW(2),
roleBKSW(3),
roleCASW(16),
roleUNISW(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cluster role of the current device, which can be a
administrator switch (0x01), member switch(0x02), backup
switch(0x03), candidate switch(0x10) or an independent
switch (incapable of cluster member) (0x11)."
DEFVAL { 17 }
::= { hh3chgmpNTDPCacheEntry 4 }
hh3chgmpNTDPCacheCapabilities OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities of the device. FF indicates that the field
was not included in in the latest NTDP packet."
DEFVAL { 255 }
::= { hh3chgmpNTDPCacheEntry 5 }
hh3chgmpNTDPCacheVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version information of the corresponding device. A null
string indicates that the field was not included in in the
latest NTDP packet."
::= { hh3chgmpNTDPCacheEntry 6 }
hh3chgmpNTDPCachePlatform OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware platform. A null string indicates that the field
was not included in the latest NTDP packet."
::= { hh3chgmpNTDPCacheEntry 7 }
hh3chgmpNTDPCacheMngVLAN OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The management VLAN ID of the device."
DEFVAL { 1 }
::= { hh3chgmpNTDPCacheEntry 8 }
hh3chgmpNTDPCacheHop OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hops to this switch."
::= { hh3chgmpNTDPCacheEntry 9 }
hh3chgmpNTDPTopTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cHgmpNTDPTopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Access the topology structure collected by the NTDP."
::= { hh3cNTDPObject 11 }
hh3chgmpNTDPTopEntry OBJECT-TYPE
SYNTAX Hh3cHgmpNTDPTopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
hh3chgmpNTDPTopHashIndex,
hh3chgmpNTDPTopEdgeStartDevID,
hh3chgmpNTDPTopEdgeIndex
}
::= { hh3chgmpNTDPTopTable 1 }
Hh3cHgmpNTDPTopEntry ::=
SEQUENCE
{
hh3chgmpNTDPTopHashIndex Integer32,
hh3chgmpNTDPTopEdgeStartDevID OCTET STRING,
hh3chgmpNTDPTopEdgeIndex Integer32,
hh3chgmpNTDPTopEdgeEndDevID OCTET STRING,
hh3chgmpNTDPTopEdgeStartPort OCTET STRING,
hh3chgmpNTDPTopEdgeStartPortFullDuplex INTEGER,
hh3chgmpNTDPTopEdgeStartPortSpeed Integer32,
hh3chgmpNTDPTopEdgeEndPort OCTET STRING,
hh3chgmpNTDPTopLinkStatus INTEGER
}
hh3chgmpNTDPTopHashIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Our NTDP information is saved in the HASH table on the
administrator switch. Using DeviceID as index will lead to the
comparison of a large amount of character strings, which puts
too many burdens on the administrator switch. A HAHSIndex is
added to reduce the character string comparison to the
least range."
::= { hh3chgmpNTDPTopEntry 1 }
hh3chgmpNTDPTopEdgeStartDevID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"2 bytes address type of the member switch + 2 bytes zero + MAC
address, expressed as a character string of the hexadecimal number."
::= { hh3chgmpNTDPTopEntry 2 }
hh3chgmpNTDPTopEdgeIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Edge index of this entry in the data structure."
::= { hh3chgmpNTDPTopEntry 3 }
hh3chgmpNTDPTopEdgeEndDevID OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"2 bytes address type of the member switch + 2 bytes zero + MAC
address, expressed as a character string of the hexadecimal number."
::= { hh3chgmpNTDPTopEntry 4 }
hh3chgmpNTDPTopEdgeStartPort OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..47))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the first port of a topology edge. Interface
type + card number / slot number / sequence number."
::= { hh3chgmpNTDPTopEntry 5 }
hh3chgmpNTDPTopEdgeStartPortFullDuplex OBJECT-TYPE
SYNTAX INTEGER
{
half(0),
full(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The full-duplex status of the first port on a topology edge."
DEFVAL { half }
::= { hh3chgmpNTDPTopEntry 6 }
hh3chgmpNTDPTopEdgeStartPortSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The speed of the first port on a topology edge."
DEFVAL { 0 }
::= { hh3chgmpNTDPTopEntry 7 }
hh3chgmpNTDPTopEdgeEndPort OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..47))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the last port of a topology edge. Interface
type + card number / slot number / sequence number."
::= { hh3chgmpNTDPTopEntry 8 }
hh3chgmpNTDPTopLinkStatus OBJECT-TYPE
SYNTAX INTEGER
{
forwarding(1),
blocking(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In STP or RSTP, it describes link status according to port STP
steady status. In MSTP it describes STP steady status of the
instance which management VLAN belongs to. Either
'hgmpNTDPTopEdgeStartPort' or 'hgmpNTDPTopEdgeEndPort' STP
steady status is 'blocking', this object is 'blocking',
otherwise is 'forwarding'.
If STP or MSTP is disabled, this object is 'forwarding'."
::= { hh3chgmpNTDPTopEntry 11 }
hh3chgmpStackEventsV2 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Definition point for Stack notifications."
::= { hh3cStackObject 0 }
hh3chgmpStackMemberfailure NOTIFICATION-TYPE
OBJECTS
{
hh3chgmpStackMemberDeviceId
}
STATUS current
DESCRIPTION
"When a stack member failure, send a snmp trap to the network
management."
::= { hh3chgmpStackEventsV2 1 }
hh3chgmpStackMemberRecover NOTIFICATION-TYPE
OBJECTS
{
hh3chgmpStackMemberDeviceId
}
STATUS current
DESCRIPTION
"When a stack member Recover, send a snmp trap to the network
management."
::= { hh3chgmpStackEventsV2 2 }
hh3chgmpStackMemberStatusChange NOTIFICATION-TYPE
OBJECTS
{
hh3chgmpStackMemberDeviceId,
hh3chgmpNTDPCacheClusterRole
}
STATUS current
DESCRIPTION
"When a stack member status change, send a snmp trap to the network
management."
::= { hh3chgmpStackEventsV2 3 }
END
|