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
|
-- ===========================================================
-- Copyright (C) 2004 New H3C Tech. Co., Ltd. All rights reserved.
-- Description: The MIB is designed to manage the raid.
-- Reference:
-- Version: V1.1
-- History:
-- V1.0 2007-09-04 created by lizhicheng
-- V1.1 2009-10-20 modified by zhanglei
-- Modify hh3cRaidName MAX-ACCESS to accessible-for-notify for simlint
-- Delete raid run status stopped(3) in hh3cRaidRunState
-- =================================================================
HH3C-RAID-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter32, Integer32,
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus, DateAndTime, TruthValue, TEXTUAL-CONVENTION
FROM SNMPv2-TC
entPhysicalIndex
FROM ENTITY-MIB
Hh3cStorageOwnerType, Hh3cStorageEnableState, Hh3cStorageActionType,
Hh3cRaidIDType, hh3cStorageRef
FROM HH3C-STORAGE-REF-MIB;
hh3cRaid MODULE-IDENTITY
LAST-UPDATED "200709041452Z"
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 describes the general information of raid."
::= { hh3cStorageRef 4 }
hh3cRaidMibObjects OBJECT IDENTIFIER ::= { hh3cRaid 1 }
hh3cRaidCapacityTable OBJECT IDENTIFIER ::= { hh3cRaidMibObjects 1 }
hh3cPrimaryRaidCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the maximal number of primary raids supported."
::= { hh3cRaidCapacityTable 1 }
-- Raid Resource Create Table
-- This table described the information of create server's array resource.
hh3cRaidTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRaidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table containing some property information of the array."
::= { hh3cRaidMibObjects 2 }
hh3cRaidEntry OBJECT-TYPE
SYNTAX Hh3cRaidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable
to create array resource."
INDEX
{
hh3cRaidName
}
::= { hh3cRaidTable 1 }
Hh3cRaidEntry ::= SEQUENCE
{
hh3cRaidName OCTET STRING,
hh3cRaidId Integer32,
hh3cRaidUuid Hh3cRaidIDType,
hh3cRaidLevel INTEGER,
hh3cRaidTimestamp DateAndTime,
hh3cRaidDiskList OCTET STRING,
hh3cRaidOwner Hh3cStorageOwnerType,
hh3cRaidSize Integer32,
hh3cRaidFreeSize Integer32,
hh3cRaidAutoSync TruthValue,
hh3cRaidRowStatus RowStatus
}
hh3cRaidName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..31))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object identifies the name of the array."
::= { hh3cRaidEntry 1 }
hh3cRaidId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the identification of the array."
::= { hh3cRaidEntry 2 }
hh3cRaidUuid OBJECT-TYPE
SYNTAX Hh3cRaidIDType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the UUID of the array."
::= { hh3cRaidEntry 3 }
hh3cRaidLevel OBJECT-TYPE
SYNTAX INTEGER
{
jbod(1),
raid0(2),
raid1(3),
raid2(4),
raid3(5),
raid4(6),
raid5(7),
raid6(8),
raid10(9),
raid50(10)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object identifies the type of array.
The value 'jbod' means just a bunch of disks,
the value 'raid0' means RAID Level 0, and so on."
::= { hh3cRaidEntry 4 }
hh3cRaidTimestamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the system time when the array is created."
::= { hh3cRaidEntry 5 }
hh3cRaidDiskList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes a list of the disk composed the array,
each two bytes with network-byte order means a single entity index
of the disk."
::= { hh3cRaidEntry 6 }
hh3cRaidOwner OBJECT-TYPE
SYNTAX Hh3cStorageOwnerType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object identifies the owner of the array."
::= { hh3cRaidEntry 7 }
hh3cRaidSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the size of array's total space. The
units is million bytes."
::= { hh3cRaidEntry 8 }
hh3cRaidFreeSize OBJECT-TYPE
SYNTAX Integer32
UNITS "MB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the size of array's vacancy space. The
units is million bytes."
::= { hh3cRaidEntry 9 }
hh3cRaidAutoSync OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object identifies if the raid should be synchro automatically
when created."
::= { hh3cRaidEntry 10 }
hh3cRaidRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the actions to crate or delete an array."
::= { hh3cRaidEntry 11 }
-- Raid Resource Manage Table
-- This table described the information about how to manage the server's array
-- resource.
hh3cRaidManageTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRaidManageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table containing some management information of the array."
::= { hh3cRaidMibObjects 3 }
hh3cRaidManageEntry OBJECT-TYPE
SYNTAX Hh3cRaidManageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable
to particular array resource."
INDEX
{
hh3cRaidUuid
}
::= { hh3cRaidManageTable 1 }
Hh3cRaidManageEntry ::= SEQUENCE
{
hh3cRaidLocationState Hh3cStorageEnableState,
hh3cRaidAction INTEGER,
hh3cRaidRunState INTEGER,
hh3cRaidAutoRebuild Hh3cStorageEnableState,
hh3cRaidSyncPercentage Integer32,
hh3cRaidHideState Hh3cStorageEnableState,
hh3cRaidLvRestore Hh3cStorageActionType,
hh3cRaidType INTEGER
}
hh3cRaidLocationState OBJECT-TYPE
SYNTAX Hh3cStorageEnableState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies if the array can be located."
DEFVAL { enable }
::= { hh3cRaidManageEntry 1 }
hh3cRaidAction OBJECT-TYPE
SYNTAX INTEGER
{
run(1),
pause(2),
rebuild(3),
invalid(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the actions to operating the array. When
read, this object always returns the value 'invalid'."
::= { hh3cRaidManageEntry 2 }
hh3cRaidRunState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
degraded(2),
failed(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the state of the array.
The value 'normal' means array works well.
The value 'degraded' means array has degraded.
The value 'failed' means some disks met failure and array has failed."
::= { hh3cRaidManageEntry 3 }
hh3cRaidAutoRebuild OBJECT-TYPE
SYNTAX Hh3cStorageEnableState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies if the array can be auto rebuild."
DEFVAL { disable }
::= { hh3cRaidManageEntry 4 }
hh3cRaidSyncPercentage OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the percentage of progress when the array
is synchronizing. The value is equal to '100' when the progress
has finished."
::= { hh3cRaidManageEntry 5 }
hh3cRaidHideState OBJECT-TYPE
SYNTAX Hh3cStorageEnableState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies if the array is hided. When the value of
this object is equal to 'enable', the array will be hided and the
files on it can not be accessed by any user."
DEFVAL { disable }
::= { hh3cRaidManageEntry 6 }
hh3cRaidLvRestore OBJECT-TYPE
SYNTAX Hh3cStorageActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies an action to restore all the logic volume
resources."
::= { hh3cRaidManageEntry 7 }
hh3cRaidType OBJECT-TYPE
SYNTAX INTEGER
{
virtualDevice(1),
directDevice(2),
serviceEnabledDevice(3),
unassigned(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the physical type of an array.
The value 'virtualDevice' means if a array is prepared for virtual device,
it can be used to create LV, for exampe, it is can be split into a lot of LV,
or be a part of LV.
The value 'directDevice' means if a array is prepared for direct device,
it can be used to create a LV which type is direct.
Unlike virtual devices, they cannot be combined or split into multiple logical devices.
The value 'serviceEnabledDevice' means if a array is prepared for service-enabled device,
it can be used to create a LV which type is service-enabled.
Unlike virtual devices, they cannot be combined or split into multiple logical devices.
The value 'unassigned' means it is the original status of a array,
if a array is unassigned, it can't be used to create LV."
::= { hh3cRaidManageEntry 8 }
-- Raid Cache Table
-- This table described the information of server's array cache resource.
hh3cRaidCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRaidCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table containing some property information and management
information of the array cache."
::= { hh3cRaidMibObjects 4 }
hh3cRaidCacheEntry OBJECT-TYPE
SYNTAX Hh3cRaidCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to particular
array cache resource."
INDEX
{
hh3cRaidUuid
}
::= { hh3cRaidCacheTable 1 }
Hh3cRaidCacheEntry ::= SEQUENCE
{
hh3cRaidReadCache Hh3cStorageEnableState,
hh3cRaidReadCacheHitPeriod Integer32,
hh3cRaidReadCacheAverageRate Integer32,
hh3cRaidReadCachePhaseRate Integer32,
hh3cRaidWriteCache Hh3cStorageEnableState,
hh3cRaidWriteCacheHitPeriod Integer32,
hh3cRaidWriteCacheAverageRate Integer32,
hh3cRaidWriteCachePhaseRate Integer32,
hh3cRaidWriteCacheFlush Hh3cStorageActionType
}
hh3cRaidReadCache OBJECT-TYPE
SYNTAX Hh3cStorageEnableState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the state of read cache. If the value of
this object is set to 'disable', the associated percentage of cache
hit may be invalid."
DEFVAL { enable }
::= { hh3cRaidCacheEntry 1 }
hh3cRaidReadCacheHitPeriod OBJECT-TYPE
SYNTAX Integer32(1..60)
UNITS "minute"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes the period during which how often the
date matched with the cache when read. The units is minute."
::= { hh3cRaidCacheEntry 2 }
hh3cRaidReadCacheAverageRate OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the average percentage of cache hit when read."
::= { hh3cRaidCacheEntry 3 }
hh3cRaidReadCachePhaseRate OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the percentage of cache hit when read during
the period set by the hh3cRaidReadCacheHitPeriod object."
::= { hh3cRaidCacheEntry 4 }
hh3cRaidWriteCache OBJECT-TYPE
SYNTAX Hh3cStorageEnableState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the state of write cache. If the value of
this object is set to 'disable', the associated percentage of cache
hit may be invalid."
DEFVAL { enable }
::= { hh3cRaidCacheEntry 5 }
hh3cRaidWriteCacheHitPeriod OBJECT-TYPE
SYNTAX Integer32(1..60)
UNITS "minute"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes the period during which how often the
date matched with the cache when writed. The units is minute."
::= { hh3cRaidCacheEntry 6 }
hh3cRaidWriteCacheAverageRate OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the average percentage of cache hit when writed."
::= { hh3cRaidCacheEntry 7 }
hh3cRaidWriteCachePhaseRate OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the percentage of cache hit when write during
the period set by the hh3cRaidWriteCacheHitPeriod object."
::= { hh3cRaidCacheEntry 8 }
hh3cRaidWriteCacheFlush OBJECT-TYPE
SYNTAX Hh3cStorageActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies an action to flushing the write cache."
::= { hh3cRaidCacheEntry 9 }
-- Spare Hot Disk Table
-- This table described the spare hot disk information.
hh3cRaidSpareDiskTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRaidSpareDiskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table described the spare hot disk information."
::= { hh3cRaidMibObjects 5 }
hh3cRaidSpareDiskEntry OBJECT-TYPE
SYNTAX Hh3cRaidSpareDiskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a spare
hot disk."
INDEX
{
hh3cRaidUuid,
entPhysicalIndex
}
::= { hh3cRaidSpareDiskTable 1 }
Hh3cRaidSpareDiskEntry ::= SEQUENCE
{
hh3cRaidSpareDiskRowStatus RowStatus
}
hh3cRaidSpareDiskRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the actions to create or delete spare hot
disk."
::= { hh3cRaidSpareDiskEntry 1 }
-- Freezed Raid Management Table
-- This table described the freezed raid management.
hh3cFreezeRaidTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFreezeRaidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table described the freezed raid management."
::= { hh3cRaidMibObjects 6 }
hh3cFreezeRaidEntry OBJECT-TYPE
SYNTAX Hh3cFreezeRaidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to manage
the freezed raid."
INDEX
{
hh3cFreezeRaidUuid
}
::= { hh3cFreezeRaidTable 1 }
Hh3cFreezeRaidEntry ::= SEQUENCE
{
hh3cFreezeRaidUuid Hh3cRaidIDType,
hh3cFreezeRaidName OCTET STRING,
hh3cFreezeRaidRowStatus RowStatus
}
hh3cFreezeRaidUuid OBJECT-TYPE
SYNTAX Hh3cRaidIDType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the uuid of the freezed raid."
::= { hh3cFreezeRaidEntry 1 }
hh3cFreezeRaidName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the name of the freezed raid."
::= { hh3cFreezeRaidEntry 2 }
hh3cFreezeRaidRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the actions to manage the freezed raid.
Only the value 'destroy' is supported."
::= { hh3cFreezeRaidEntry 3 }
-- 3rd Raid Management Table
-- This table described the 3rd raid management.
hh3c3rdRaidTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3c3rdRaidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table described the 3rd raid management."
::= { hh3cRaidMibObjects 7 }
hh3c3rdRaidEntry OBJECT-TYPE
SYNTAX Hh3c3rdRaidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to manage
the 3rd raid."
INDEX
{
hh3c3rdRaidUuid
}
::= { hh3c3rdRaidTable 1 }
Hh3c3rdRaidEntry ::= SEQUENCE
{
hh3c3rdRaidUuid Hh3cRaidIDType,
hh3c3rdRaidName OCTET STRING,
hh3c3rdRaidOwner OCTET STRING,
hh3c3rdRaidImport Hh3cStorageOwnerType,
hh3c3rdRaidRowStatus RowStatus
}
hh3c3rdRaidUuid OBJECT-TYPE
SYNTAX Hh3cRaidIDType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describes the uuid of the 3rd raid."
::= { hh3c3rdRaidEntry 1 }
hh3c3rdRaidName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the name of the 3rd raid."
::= { hh3c3rdRaidEntry 2 }
hh3c3rdRaidOwner OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object describes the owner of the 3rd raid."
::= { hh3c3rdRaidEntry 3 }
hh3c3rdRaidImport OBJECT-TYPE
SYNTAX Hh3cStorageOwnerType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the owner for the 3rd raid. When read,
the value 'none' will be get.
If the action is executed successfully, the 3rd raid will become
a primary raid, and this entry will be deleted automatically."
::= { hh3c3rdRaidEntry 4 }
hh3c3rdRaidRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object describes the actions to manage the 3rd raid.
Only the value 'destroy' is supported."
::= { hh3c3rdRaidEntry 5 }
END
|