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
|
-- =================================================================
-- Copyright (c) 2004-2015 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: flash management mib
-- Reference:
-- Version: V3.3
-- History:
-- V1.0 initial version 2002-12-20
-- V1.1 2004-6-15 add delete(4) to hh3cFlhOperType
-- V1.2 2004-7-15 add some Hh3cFlashOperationStatus types:
-- opAuthFail(17),
-- opTimeout(18),
-- opDeleteFileOpenError(20),
-- opDeleteInvalidDevice(21),
-- opDeleteInvalidFunction(22),
-- opDeleteOperationError(23),
-- opDeleteInvalidFileName(24),
-- opDeleteDeviceBusy(25),
-- opDeleteParaError(26),
-- opDeleteInvalidPath(27)
-- V1.21 2004-8-19 modify the DESCRIPTION of hh3cFlhMinPartitionSize
-- by fanxiaoxun
-- V2.0 2004-10-12 updated by gaolong
-- Fix hh3cFlhMIBCompliance MODULE name to HH3C-FLASH-MAN-MIB
-- V2.1 2004-11-22 modify the SYNTAX of hh3cFlhSupportNum and hh3cFlhIndex
-- by wangpengju
-- V2.2 2005-01-11 updated by gaolong and weixinzhe
-- File description updated
-- V2.3 2005-01-11 add 'rename' operation type for hh3cFlhOperType,
-- by wangpengju
-- V2.4 2005-06-06 add enum value in SYNTAX of hh3cFlhOperProtocol
-- by jinyongfeng. Adjust file format by gaolong
-- V2.5 2005-08-18 change the value range of hh3cFlhFileIndex
-- from (1..32) to (1..2147483647), by wangpengju
-- V2.6 2006-03-03 updated by yangjianfeng
-- correct some error words which are obvious clerical error.
-- V2.7 2009-05-05 Add hh3cFlhOperServerPort by jinyi
-- V2.8 2010-06-05 add hh3cFlhOperFailReason by shuaixiaojuan
-- add hh3cFlhKbyteSize by jinyi
-- V2.9 2010-10-30 Deprecated hh3cFlhOperServerAddress,
-- added enum in Hh3cFlashOperationStatus,
-- added hh3cFlhOperSrvAddrType, hh3cFlhOperSrvAddrRev and
-- hh3cFlhOperSrvVPNName by songhao.
-- V3.0 2011-10-13 Modify syntax of hh3cFlhName and hh3cFlhPartName
-- by shuaixiaojuan.
-- V3.1 2012-06-26 Add hh3cFlhPartBootable and hh3cFlhPartPathForGlobalOpt
-- by lisong.
-- V3.2 2013-05-23 Add hh3cFlhHCSize, hh3cFlhPartHCSpace,
-- hh3cFlhPartHCSpaceFree and hh3cFlhFileHCSize to replace
-- hh3cFlhSize, hh3cFlhPartSpace, hh3cFlhPartSpaceFree
-- and hh3cFlhFileSize by lisong.
-- V3.3 2014-08-11 Added mkdir(6), rmdir(7) to hh3cFlhOperType, added hh3cFlhFileType
-- to hh3cFlhFileEntry, modified description of
-- hh3cFlhFileName, hh3cFlhOperProtocol, hh3cFlhOperSourceFile
-- and Hh3cFlashOperationStatus to support directory operation
-- by SongHao.
-- 2015-01-20 Added copy(8) to hh3cFlhOperType by SongHao.
-- =================================================================
HH3C-FLASH-MAN-MIB DEFINITIONS ::= BEGIN
IMPORTS
PhysicalIndex
FROM ENTITY-MIB
hh3cCommon
FROM HH3C-OID-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
TimeTicks, IpAddress, Integer32, Gauge32, Counter32,
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
DisplayString, TimeStamp, TruthValue, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC
CounterBasedGauge64
FROM HCNUM-TC;
hh3cFlash MODULE-IDENTITY
LAST-UPDATED "201501200808Z"
ORGANIZATION
"New H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085"
DESCRIPTION
"This MIB contains objects to manage flash cards and flash
card operations.
There are no constraints on this MIB."
REVISION "201501200808Z"
DESCRIPTION
"Added copy(8) to hh3cFlhOperType."
REVISION "201408110303Z"
DESCRIPTION
"Added mkdir(6), rmdir(7) to hh3cFlhOperType, added hh3cFlhFileType
to hh3cFlhFileEntry, modified description of
hh3cFlhFileName, hh3cFlhOperProtocol, hh3cFlhOperSourceFile
and Hh3cFlashOperationStatus to support directory operation."
REVISION "201305230000Z"
DESCRIPTION
"Add hh3cFlhHCSize, hh3cFlhPartHCSpace, hh3cFlhPartHCSpaceFree and
hh3cFlhFileHCSize to replace hh3cFlhSize, hh3cFlhPartSpace,
hh3cFlhPartSpaceFree and hh3cFlhFileSize."
REVISION "201206260000Z"
DESCRIPTION
"Add hh3cFlhPartBootable and hh3cFlhPartPathForGlobalOpt."
REVISION "201110130000Z"
DESCRIPTION
"Modify syntax of hh3cFlhName and hh3cFlhPartName."
REVISION "201010300000Z"
DESCRIPTION
"Deprecated hh3cFlhOperServerAddress, added enum in
Hh3cFlashOperationStatus, added hh3cFlhOperSrvAddrType,
hh3cFlhOperSrvAddrRev and hh3cFlhOperSrvVPNName."
REVISION "201006050000Z"
DESCRIPTION
"Add hh3cFlhOperFailReason and hh3cFlhKbyteSize."
REVISION "200905050000Z"
DESCRIPTION
"Add hh3cFlhOperServerPort."
REVISION "200603030000Z"
DESCRIPTION
"Correct some error words which are obvious clerical error."
REVISION "200508180000Z"
DESCRIPTION
"Change the value range of hh3cFlhFileIndex from (1..32)
to (1..2147483647)."
REVISION "200506060000Z"
DESCRIPTION
"Add enum value in SYNTAX of hh3cFlhOperProtocol.
Adjust file format."
REVISION "200501110800Z"
DESCRIPTION
"Add 'rename' operation type for hh3cFlhOperType."
REVISION "200501110000Z"
DESCRIPTION
"File description updated."
REVISION "200411220000Z"
DESCRIPTION
"Modify the SYNTAX of hh3cFlhSupportNum and hh3cFlhIndex."
REVISION "200410120000Z"
DESCRIPTION
"Fix hh3cFlhMIBCompliance MODULE name to HH3C-FLASH-MAN-MIB."
REVISION "200408190000Z"
DESCRIPTION
"Modify the DESCRIPTION of hh3cFlhMinPartitionSize."
REVISION "200407150000Z"
DESCRIPTION
"Add some Hh3cFlashOperationStatus types:
opAuthFail(17),
opTimeout(18),
opDeleteFileOpenError(20),
opDeleteInvalidDevice(21),
opDeleteInvalidFunction(22),
opDeleteOperationError(23),
opDeleteInvalidFileName(24),
opDeleteDeviceBusy(25),
opDeleteParaError(26),
opDeleteInvalidPath(27)"
REVISION "200406150000Z"
DESCRIPTION
"add delete(4) to hh3cFlhOperType."
REVISION "200212200000Z"
DESCRIPTION
"Initial version."
::= { hh3cCommon 5 }
--
-- Textual conventions
--
Hh3cFlashOperationStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The status of the specified operation can be one of
the following.
opInProgress : The operation is in process.
opSuccess : The operation has been completed successfully.
opInvalid : The command is invalid or command-protocol-device
combination is unsupported by the system.
opInvalidProtocol : Invalid protocol is specified.
opInvalidSourceName : Invalid source name is specified.
opInvalidDestName : Invalid target name is specified.
opInvalidServerAddress : Invalid server address is specified.
opDeviceBusy : The device is in use and locked by another process.
opDeviceOpenError : Invalid device name is specified.
opDeviceError : Device read, write or erase error.
opDeviceNotProgrammable : Device is read-only but a write or
erase operation was specified.
opDeviceFull : Device is filled to capacity.
opFileOpenError : Invalid file/directory name,
file/directory not found in partition.
opFileTransferError : File transfer was unsuccessful.
opFileChecksumError : File checksum in Flash is invalid.
opNoMemory : System is running in low on memory.
opUnknownFailure : Failure which is unknown.
opDeleteFileOpenError : File/Directory is in used by another process.
opDeleteInvalidDevice : Invalid device name is specified.
opDeleteInvalidFunction : Deleted operation is unsupported
by the device.
opDeleteOperationError : Operation is in a low error.
opDeleteInvalidFileName : Invalid name is specified.
opDeleteDeviceBusy : The device is in use and locked
by another process.
opDeleteParaError : The parameters are invalid.
opDeleteInvalidPath : The path is invalid.
opDeleteFileNotExistInSlave : Failed to delete file, because the file
does not exist in the slave.
opDeleteFileFailedInSlave : Operation failed when deleting file in the slave.
opSlaveFull : Operation failed because the slave doesn't have enough space.
opCopyToSlaveFailure : Operation failed when copying file to the slave.
"
SYNTAX INTEGER
{
opInProgress(1),
opSuccess(2),
opInvalid(3),
opInvalidProtocol(4),
opInvalidSourceName(5),
opInvalidDestName(6),
opInvalidServerAddress(7),
opDeviceBusy(8),
opDeviceOpenError(9),
opDeviceError(10),
opDeviceNotProgrammable(11),
opDeviceFull(12),
opFileOpenError(13),
opFileTransferError(14),
opFileChecksumError(15),
opNoMemory(16),
opAuthFail(17),
opTimeout(18),
opUnknownFailure(19),
opDeleteFileOpenError(20),
opDeleteInvalidDevice(21),
opDeleteInvalidFunction(22),
opDeleteOperationError(23),
opDeleteInvalidFileName(24),
opDeleteDeviceBusy(25),
opDeleteParaError(26),
opDeleteInvalidPath(27),
opDeleteFileNotExistInSlave(28),
opDeleteFileFailedInSlave(29),
opSlaveFull(30),
opCopyToSlaveFailure(31)
}
Hh3cFlashPartitionUpgradeMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
Flash partition upgrade method, i.e., method by which
new files can be downloaded into the partition.
FLH stands for Flash Load Helper, a feature provided
on run-from-Flash systems for upgrading Flash. This
feature uses the bootstrap code in ROMs to help in
automatic download.
This object should be retrieved if the partition
status is runFromFlash(2).
If the partition status is readOnly(1), the upgrade
method would depend on the reason for the readOnly
status. For example, it may simply be a matter of installing
the programming jumper, or it may require execution of a
later version of software that supports the Flash chips.
unknown - the current system image does not know
how Flash can be programmed. A possible
method would be to reload the ROM image
and perform the upgrade manually.
rxbootFLH - the Flash Load Helper is available to
download files to Flash. A copy-to-flash
command can be used and this system image
will automatically reload the Rxboot image
in ROM and direct it to carry out the
download request.
direct - will be done directly by this image.
"
SYNTAX INTEGER
{
unknown(1),
rxbootFLH(2),
direct(3)
}
Hh3cFlashPartitionStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"If device is not programmable the value of it will be
'readOnly'; If the current image is running from
this partition the value of it will be 'runFromFlash'
If device is programmable the value of it will be 'readWrite'.
"
SYNTAX INTEGER
{
readOnly(1),
runFromFlash(2),
readWrite(3)
}
--
-- Node definitions
--
hh3cFlashManMIBObjects OBJECT IDENTIFIER ::= { hh3cFlash 1 }
-- The flash device information.
hh3cFlashDevice OBJECT IDENTIFIER ::= { hh3cFlashManMIBObjects 1 }
hh3cFlhSupportNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Specifies the total number of flash which the
system supported.
The MIB should not be loaded if there is no flash
in the system and so the value here will be a
minimum of 1.
"
::= { hh3cFlashDevice 1 }
hh3cFlashTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlashEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table gives the properties of all the flashes on
the system.
"
::= { hh3cFlashDevice 2 }
hh3cFlashEntry OBJECT-TYPE
SYNTAX Hh3cFlashEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hh3cFlashTable."
INDEX { hh3cFlhIndex }
::= { hh3cFlashTable 1 }
Hh3cFlashEntry ::=
SEQUENCE {
hh3cFlhIndex Integer32,
hh3cFlhSize Integer32,
hh3cFlhPos PhysicalIndex,
hh3cFlhName DisplayString,
hh3cFlhChipNum Integer32,
hh3cFlhDescr DisplayString,
hh3cFlhInitTime TimeStamp,
hh3cFlhRemovable TruthValue,
hh3cFlhPartitionBool TruthValue,
hh3cFlhMinPartitionSize Integer32,
hh3cFlhMaxPartitions Integer32,
hh3cFlhPartitionNum Integer32,
hh3cFlhKbyteSize Integer32,
hh3cFlhHCSize CounterBasedGauge64
}
hh3cFlhIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The index of hh3cFlashTable. There are two parts for this index
depicted as follows:
31 15 0
+++++++++++++++++++++++++++++++++++++++++
+ entity index + random index +
+ ( bit 16..31 ) ( bit 0..15 ) +
+++++++++++++++++++++++++++++++++++++++++
From bit0 to bit15 (two bytes), it has a minimum value of 1, and
maximum value of the same as the value of hh3cFlhSupportNum.
From bit16 to bit31 (two bytes), it is the physical index the same as the
entPhysicalIndex specified in ENTITY-MIB.
"
::= { hh3cFlashEntry 1 }
hh3cFlhSize OBJECT-TYPE
SYNTAX Integer32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
Specifies the total size of the flash indexed by hh3cFlhIndex.
The value should be zero if the flash is removed for a removable
device.
If the total size of the flash exceeds 2,147,483,647 bytes,
hh3cFlhHCSize specifies the actual size.
"
::= { hh3cFlashEntry 2 }
hh3cFlhPos OBJECT-TYPE
SYNTAX PhysicalIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The position of the flash device in system. This object is
an index of entPhysicalTable in ENTITY-MIB.
If the value of this object is 0,
the main processor is indicated.
"
::= { hh3cFlashEntry 3 }
hh3cFlhName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The flash name within the system."
::= { hh3cFlashEntry 4 }
hh3cFlhChipNum OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chip numbers in the flash."
::= { hh3cFlashEntry 5 }
hh3cFlhDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of the purpose of the flash in the system."
::= { hh3cFlashEntry 6 }
hh3cFlhInitTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The initialization time for the flash component or partition,
recorded using the system time. This will be the boot time for
a fixed device. For a removable component or a partition,
it will be the initialization time.
"
::= { hh3cFlashEntry 8 }
hh3cFlhRemovable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The value indicates whether the flash indexed can be removed
or not.
The true(1) value indicates the flash device CAN be removed.
"
::= { hh3cFlashEntry 9 }
hh3cFlhPartitionBool OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The value indicates whether the flash indexed can be partitioned
or not.
The true(1) value indicates the flash CAN be partitioned.
"
::= { hh3cFlashEntry 11 }
hh3cFlhMinPartitionSize OBJECT-TYPE
SYNTAX Integer32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Minimum partition size supported.
If hh3cFlhDevicePartitionBool is false, the value
of this object is the same as hh3cFlhSize.
"
::= { hh3cFlashEntry 12 }
hh3cFlhMaxPartitions OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The maximum count of partitions which the system supports
for this flash. If hh3cFlhPartitionBool is false,
the object value is 1.
"
::= { hh3cFlashEntry 13 }
hh3cFlhPartitionNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The actual number of partitions supported by the system for
this flash. If hh3cFlhPartitionBool is false, this value is 1.
"
::= { hh3cFlashEntry 14 }
hh3cFlhKbyteSize OBJECT-TYPE
SYNTAX Integer32
UNITS "kbytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Specifies the total size of the flash device indexed
by hh3cFlhIndex. The value should be zero if the flash is
removed for a removable device.
"
::= { hh3cFlashEntry 15 }
hh3cFlhHCSize OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Specifies the total size of the flash indexed by hh3cFlhIndex.
This node is a 64-bit substitute for hh3cFlhSize.
"
::= { hh3cFlashEntry 16 }
hh3cFlashChips OBJECT IDENTIFIER ::= { hh3cFlashDevice 3 }
hh3cFlhChipTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlhChipEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Table of properties for all flash chips.
Used mainly for diagnostics.
"
::= { hh3cFlashChips 1 }
hh3cFlhChipEntry OBJECT-TYPE
SYNTAX Hh3cFlhChipEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hh3cFlhChipTable"
INDEX { hh3cFlhIndex, hh3cFlhChipSerialNo }
::= { hh3cFlhChipTable 1 }
Hh3cFlhChipEntry ::=
SEQUENCE {
hh3cFlhChipSerialNo Integer32,
hh3cFlhChipID DisplayString,
hh3cFlhChipDescr DisplayString,
hh3cFlhChipWriteTimesLimit Integer32,
hh3cFlhChipWriteTimes Counter32,
hh3cFlhChipEraseTimesLimit Integer32,
hh3cFlhChipEraseTimes Counter32
}
hh3cFlhChipSerialNo OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of hh3cFlhChipTable."
::= { hh3cFlhChipEntry 1 }
hh3cFlhChipID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..5))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The manufacturer code (the upper byte) and
device code (the lower byte) for a chip.
Unknown chip code is presented as 00:00.
"
::= { hh3cFlhChipEntry 2 }
hh3cFlhChipDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The description of the flash chip.
"
::= { hh3cFlhChipEntry 3 }
hh3cFlhChipWriteTimesLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The limit for the number of write times (retries)
for a flash chip. If the limit
is exceeded an error should be reported by the management
station.
"
::= { hh3cFlhChipEntry 4 }
hh3cFlhChipWriteTimes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
A count of write times (retries) for the flash chip since
initialization.
A count of 25 or more for a single chip indicates a write error.
Management stations should note the value of this MIB before and
after a write operation,
and report any errors accordingly.
"
::= { hh3cFlhChipEntry 5 }
hh3cFlhChipEraseTimesLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The limit for the number of erase times (retries) for a flash
chip.
If the limit is exceeded an error should be reported by the
management station.
"
::= { hh3cFlhChipEntry 6 }
hh3cFlhChipEraseTimes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
A count of erase times (retries) for the flash chip since
initialization.
A count of 2000 or more for a single chip indicates a write
error.
Management stations should note the value of this MIB before and
after an erase operation, and report any errors accordingly.
"
::= { hh3cFlhChipEntry 7 }
hh3cFlashPartitions OBJECT IDENTIFIER ::= { hh3cFlashDevice 4 }
hh3cFlhPartitionTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlhPartitionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Properties for the flash partitions. Minimum of one entry in
this table.
"
::= { hh3cFlashPartitions 1 }
hh3cFlhPartitionEntry OBJECT-TYPE
SYNTAX Hh3cFlhPartitionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An entry of the hh3cFlhPartitionTable.Indexed by flash
number and partition number.
"
INDEX { hh3cFlhIndex, hh3cFlhPartIndex }
::= { hh3cFlhPartitionTable 1 }
Hh3cFlhPartitionEntry ::=
SEQUENCE {
hh3cFlhPartIndex Integer32,
hh3cFlhPartFirstChip Integer32,
hh3cFlhPartLastChip Integer32,
hh3cFlhPartSpace Integer32,
hh3cFlhPartSpaceFree Gauge32,
hh3cFlhPartFileNum Integer32,
hh3cFlhPartChecksumMethod INTEGER,
hh3cFlhPartStatus Hh3cFlashPartitionStatus,
hh3cFlhPartUpgradeMode Hh3cFlashPartitionUpgradeMode,
hh3cFlhPartName DisplayString,
hh3cFlhPartRequireErase TruthValue,
hh3cFlhPartFileNameLen Integer32,
hh3cFlhPartBootable TruthValue,
hh3cFlhPartPathForGlobalOpt TruthValue,
hh3cFlhPartHCSpace CounterBasedGauge64,
hh3cFlhPartHCSpaceFree CounterBasedGauge64
}
hh3cFlhPartIndex OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An index which specifies a sequenced partition in the system.
"
::= { hh3cFlhPartitionEntry 1 }
hh3cFlhPartFirstChip OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The first chip's sequence number in the
partition, by which a chip can be indexed in
chip table.
"
::= { hh3cFlhPartitionEntry 2 }
hh3cFlhPartLastChip OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The last chip's sequence number in the
partition, by which a chip can be indexed in
chip table.
"
::= { hh3cFlhPartitionEntry 3 }
hh3cFlhPartSpace OBJECT-TYPE
SYNTAX Integer32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
The total space of the flash partition.
The following should be satisfied:
hh3cFlhPartSpace = n*hh3cFlhMinPartitionSize
If the total size of the flash partition exceeds 2,147,483,647 bytes,
hh3cFlhPartHCSpace specifies the actual size.
"
::= { hh3cFlhPartitionEntry 4 }
hh3cFlhPartSpaceFree OBJECT-TYPE
SYNTAX Gauge32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
The flash partition's free space.
If the free space of the flash partition exceeds 2,147,483,647 bytes,
hh3cFlhPartHCSpaceFree specifies the actual free space.
"
::= { hh3cFlhPartitionEntry 5 }
hh3cFlhPartFileNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of all the files in the flash partition."
::= { hh3cFlhPartitionEntry 6 }
hh3cFlhPartChecksumMethod OBJECT-TYPE
SYNTAX INTEGER
{
simpleChecksum(1),
undefined(2),
simpleCRC(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Checksum method which the file system uses."
::= { hh3cFlhPartitionEntry 7 }
hh3cFlhPartStatus OBJECT-TYPE
SYNTAX Hh3cFlashPartitionStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The flash partition status."
::= { hh3cFlhPartitionEntry 8 }
hh3cFlhPartUpgradeMode OBJECT-TYPE
SYNTAX Hh3cFlashPartitionUpgradeMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The upgrade mode of the Flash partition"
::= { hh3cFlhPartitionEntry 9 }
hh3cFlhPartName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the flash partition given by the system."
::= { hh3cFlhPartitionEntry 10 }
hh3cFlhPartRequireErase OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Shows whether a write operation is conditional on partition
erase.
"
::= { hh3cFlhPartitionEntry 11 }
hh3cFlhPartFileNameLen OBJECT-TYPE
SYNTAX Integer32 (1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum length of file name supported in the system."
::= { hh3cFlhPartitionEntry 12 }
hh3cFlhPartBootable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value indicates whether the partition is a bootable partition.
The true(1) value indicates a bootable partition.
"
::= { hh3cFlhPartitionEntry 13 }
hh3cFlhPartPathForGlobalOpt OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value indicates whether the partition is used in a global file
operation. The true(1) value indicates that in one global file
operation files will be copied to or deleted from this partition.
When hh3cFlhPartPathForGlobalOpt in one entry is set to true(1),
hh3cFlhPartPathForGlobalOpt in other entries with the same entity
index will be set to false(0).
"
::= { hh3cFlhPartitionEntry 14 }
hh3cFlhPartHCSpace OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The total space of the flash partition.
This node is a 64-bit substitute for hh3cFlhPartSpace.
"
::= { hh3cFlhPartitionEntry 15 }
hh3cFlhPartHCSpaceFree OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The flash partition's free space.
This node is a 64-bit substitue for hh3cFlhPartSpace.
"
::= { hh3cFlhPartitionEntry 16 }
hh3cFlhFiles OBJECT IDENTIFIER ::= { hh3cFlashPartitions 2 }
hh3cFlhFileTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlhFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of file information."
::= { hh3cFlhFiles 1 }
hh3cFlhFileEntry OBJECT-TYPE
SYNTAX Hh3cFlhFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
An entry representing a file. Indexed using flash number,
partition number, and file number.
"
INDEX { hh3cFlhIndex, hh3cFlhPartIndex, hh3cFlhFileIndex }
::= { hh3cFlhFileTable 1 }
Hh3cFlhFileEntry ::=
SEQUENCE {
hh3cFlhFileIndex Integer32,
hh3cFlhFileName DisplayString,
hh3cFlhFileSize Integer32,
hh3cFlhFileStatus INTEGER,
hh3cFlhFileChecksum OCTET STRING,
hh3cFlhFileHCSize CounterBasedGauge64,
hh3cFlhFileType INTEGER
}
hh3cFlhFileIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the table, whose range is from 1 to 2147483647"
::= { hh3cFlhFileEntry 1 }
hh3cFlhFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A valid file/directory name supported by the file system."
::= { hh3cFlhFileEntry 2 }
hh3cFlhFileSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"
The file size in bytes excluding the file
header of file system. The value should be greater than zero.
If the file size exceeds 2,147,483,647 bytes, hh3cFlhFileHCSize
specifies the actual size.
"
::= { hh3cFlhFileEntry 3 }
hh3cFlhFileStatus OBJECT-TYPE
SYNTAX INTEGER
{
deleted(1),
invalidChecksum(2),
valid(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The status should be as follows:
deleted(1): The file is in recycle bin.
invalidChecksum(2): The checksum of file is invalid;
valid(3): A valid file.
"
::= { hh3cFlhFileEntry 4 }
hh3cFlhFileChecksum OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The file checksum in the header of file."
::= { hh3cFlhFileEntry 5 }
hh3cFlhFileHCSize OBJECT-TYPE
SYNTAX CounterBasedGauge64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The file size in bytes.
This node is a 64-bit substitue for hh3cFlhFileSize.
"
::= { hh3cFlhFileEntry 6 }
hh3cFlhFileType OBJECT-TYPE
SYNTAX INTEGER
{
file(1),
directory(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether it is a file or directory."
::= { hh3cFlhFileEntry 7 }
-- The operation on the flash.
hh3cFlashOperate OBJECT IDENTIFIER ::= { hh3cFlashManMIBObjects 2 }
hh3cFlhOpTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlhOpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table used to operate flash."
::= { hh3cFlashOperate 1 }
hh3cFlhOpEntry OBJECT-TYPE
SYNTAX Hh3cFlhOpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Note an operation cannot be stopped until it is finished.
If notification is configured, NMS will receive a notification
at the end of the operation.
Entries in the table will be removed automatically in 5 minutes.
It can also be deleted by NMS directly.
"
INDEX { hh3cFlhOperIndex }
::= { hh3cFlhOpTable 1 }
Hh3cFlhOpEntry ::=
SEQUENCE {
hh3cFlhOperIndex Integer32,
hh3cFlhOperType INTEGER,
hh3cFlhOperProtocol INTEGER,
hh3cFlhOperServerAddress IpAddress,
hh3cFlhOperServerUser DisplayString,
hh3cFlhOperPassword DisplayString,
hh3cFlhOperSourceFile DisplayString,
hh3cFlhOperDestinationFile DisplayString,
hh3cFlhOperStatus Hh3cFlashOperationStatus,
hh3cFlhOperEndNotification TruthValue,
hh3cFlhOperProgress TimeTicks,
hh3cFlhOperRowStatus RowStatus,
hh3cFlhOperServerPort Integer32,
hh3cFlhOperFailReason DisplayString,
hh3cFlhOperSrvAddrType InetAddressType,
hh3cFlhOperSrvAddrRev InetAddress,
hh3cFlhOperSrvVPNName DisplayString
}
hh3cFlhOperIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Specifies the index of an entry. It is a
random value when creating an entry.
"
::= { hh3cFlhOpEntry 1 }
hh3cFlhOperType OBJECT-TYPE
SYNTAX INTEGER
{
net2FlashWithErase(1),
net2FlashWithoutErase(2),
flash2Net(3),
delete(4),
rename(5),
mkdir(6),
rmdir(7),
copy(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Specifies the operation to be executed.
net2FlashWithErase Copy a file to flash; erase flash beforehand.
net2FlashWithoutErase Copy a file to flash; do not erase flash
beforehand.
flash2Net Copy a file from flash.
delete Delete a file that is specified by
hh3cFlhOperSourceFile.
rename Change a file's name.
mkdir Create a directory that is specified by
hh3cFlhOperSourceFile.
rmdir Delete a directory that is specified by
hh3cFlhOperSourceFile.
copy Copy a file.
"
::= { hh3cFlhOpEntry 2 }
hh3cFlhOperProtocol OBJECT-TYPE
SYNTAX INTEGER
{
ftp(1),
tftp(2),
clusterftp(3),
clustertftp(4),
sftp(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Specifies the protocol used to transfer a file.
The default protocol is ftp.
A directory cannot be transferred.
when 'clusterftp' or 'clustertftp' is selected,
the hh3cFlhOperServerAddress needn't be set,
the server address can be acquired automatically, the value of
hh3cFlhOperServerAddress is uncertain during operation.
Both member switch and commander switch can use them if they
support HGMP v2.
"
DEFVAL { ftp }
::= { hh3cFlhOpEntry 3 }
hh3cFlhOperServerAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"
The address of remote host acting as server for operation.
The default value is 255.255.255.255
This object is replaced by hh3cFlhOperSrvAddrRev for it only support IPv4.
"
DEFVAL { 'FFFFFFFF'h }
::= { hh3cFlhOpEntry 4 }
hh3cFlhOperServerUser OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
When using ftp to transfer files, the user name must be
specified through this node.
"
::= { hh3cFlhOpEntry 5 }
hh3cFlhOperPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Remote user password for copying via ftp protocol. Optionally,
This object may be ignored for protocols other than ftp. "
::= { hh3cFlhOpEntry 6 }
hh3cFlhOperSourceFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Specifies the source file/directory name for this operation
that is specified by hh3cFlhOperType.
It may be located on flash or remote server.
It may include the file path if it is applicable.
It must be specified.
"
::= { hh3cFlhOpEntry 7 }
hh3cFlhOperDestinationFile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Specifies the destination file name.
It may be located on flash or remote server.
It may include the file path if it is applicable.
If it is not specified, the destination file name
is the same as source file name for application.
"
::= { hh3cFlhOpEntry 8 }
hh3cFlhOperStatus OBJECT-TYPE
SYNTAX Hh3cFlashOperationStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of operation."
::= { hh3cFlhOpEntry 9 }
hh3cFlhOperEndNotification OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
If the value of it is specified 'true', a notification
will be generated at the end of the operation.
Else no notification will be generated.
"
DEFVAL { false }
::= { hh3cFlhOpEntry 10 }
hh3cFlhOperProgress OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The progress described as the time taken for the operation.
"
::= { hh3cFlhOpEntry 11 }
hh3cFlhOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status of this table entry."
::= { hh3cFlhOpEntry 12 }
hh3cFlhOperServerPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The port of remote host acting as server for operation.
If the value of this object is not specified, the server
port is the known protocol port."
::= { hh3cFlhOpEntry 13 }
hh3cFlhOperFailReason OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The failure reasons of operation."
::= { hh3cFlhOpEntry 14 }
hh3cFlhOperSrvAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of IP address for hh3cFlhOperSrvAddrRev."
::= { hh3cFlhOpEntry 15 }
hh3cFlhOperSrvAddrRev OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The address of remote host acting as server for operation."
::= { hh3cFlhOpEntry 16 }
hh3cFlhOperSrvVPNName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VPN instance of this operation uses."
::= { hh3cFlhOpEntry 17 }
hh3cFlashNotification OBJECT IDENTIFIER ::= { hh3cFlashManMIBObjects 3 }
hh3cFlhOperNotification NOTIFICATION-TYPE
OBJECTS { hh3cFlhOperStatus }
STATUS current
DESCRIPTION
"
A hh3cFlhOperNotification is sent at the completion of a flash
copy operation if hh3cFlhOperEndNotification is true.
"
::= { hh3cFlashNotification 1 }
hh3cFlashMIBConformance OBJECT IDENTIFIER ::= { hh3cFlash 2 }
hh3cFlhMIBCompliances OBJECT IDENTIFIER ::= { hh3cFlashMIBConformance 1 }
hh3cFlhMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"
The statement of compliance for those implementing this MIB.
"
MODULE HH3C-FLASH-MAN-MIB
MANDATORY-GROUPS { hh3cFlhGroup, hh3cFlhPartitionGroup,
hh3cFlhFileGroup, hh3cFlhOperationGroup, hh3cFlhNotificationGroup
}
GROUP hh3cFlhChipGroup
DESCRIPTION
" "
::= { hh3cFlhMIBCompliances 1 }
hh3cFlashMIBGroups OBJECT IDENTIFIER ::= { hh3cFlashMIBConformance 2 }
hh3cFlhGroup OBJECT-GROUP
OBJECTS { hh3cFlhSupportNum, hh3cFlhSize, hh3cFlhPos, hh3cFlhName,
hh3cFlhChipNum, hh3cFlhDescr, hh3cFlhInitTime, hh3cFlhRemovable,
hh3cFlhPartitionBool, hh3cFlhMinPartitionSize,
hh3cFlhMaxPartitions, hh3cFlhPartitionNum, hh3cFlhIndex, hh3cFlhKbyteSize }
STATUS current
DESCRIPTION
"A collection of objects on Flash level information."
::= { hh3cFlashMIBGroups 1 }
hh3cFlhChipGroup OBJECT-GROUP
OBJECTS { hh3cFlhChipID, hh3cFlhChipDescr, hh3cFlhChipWriteTimesLimit,
hh3cFlhChipWriteTimes, hh3cFlhChipEraseTimesLimit,
hh3cFlhChipEraseTimes }
STATUS current
DESCRIPTION
"A collection of objects on chip level information."
::= { hh3cFlashMIBGroups 3 }
hh3cFlhPartitionGroup OBJECT-GROUP
OBJECTS { hh3cFlhPartFirstChip, hh3cFlhPartLastChip, hh3cFlhPartSpace,
hh3cFlhPartSpaceFree, hh3cFlhPartFileNum,
hh3cFlhPartChecksumMethod, hh3cFlhPartStatus,
hh3cFlhPartUpgradeMode, hh3cFlhPartName, hh3cFlhPartRequireErase,
hh3cFlhPartFileNameLen, hh3cFlhPartBootable,
hh3cFlhPartPathForGlobalOpt}
STATUS current
DESCRIPTION
"A collection of objects providing on partition
level information."
::= { hh3cFlashMIBGroups 4 }
hh3cFlhFileGroup OBJECT-GROUP
OBJECTS { hh3cFlhFileName, hh3cFlhFileSize, hh3cFlhFileStatus,
hh3cFlhFileChecksum }
STATUS current
DESCRIPTION
"A collection of objects on file level information."
::= { hh3cFlashMIBGroups 5 }
hh3cFlhOperationGroup OBJECT-GROUP
OBJECTS { hh3cFlhOperType, hh3cFlhOperProtocol,
hh3cFlhOperServerAddress, hh3cFlhOperServerUser,
hh3cFlhOperPassword, hh3cFlhOperSourceFile,
hh3cFlhOperDestinationFile, hh3cFlhOperStatus,
hh3cFlhOperEndNotification, hh3cFlhOperProgress,
hh3cFlhOperRowStatus, hh3cFlhOperServerPort,
hh3cFlhOperFailReason }
STATUS current
DESCRIPTION
"A collection of objects of flash operations."
::= { hh3cFlashMIBGroups 6 }
hh3cFlhNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { hh3cFlhOperNotification }
STATUS current
DESCRIPTION
"The collection of notifications in the module"
::= { hh3cFlashMIBGroups 7 }
END
|