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
|
-- ============================================================================
-- Copyright (c) 2004-2017 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Resource Monitor MIB
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 2017-04-01 created by yanfang.
-- ============================================================================
HH3C-RES-MON-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE, Unsigned32
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC;
hh3cResMon MODULE-IDENTITY
LAST-UPDATED "201704010000Z"
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
"Resource monitor information base for managing devices."
REVISION
"201704010000Z"
DESCRIPTION
"The first version of this module."
::= { hh3cCommon 169 }
--
-- Nodes defined
--
hh3cResMonScalarObjects OBJECT IDENTIFIER ::= { hh3cResMon 1 }
hh3cResMonMinorResendEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The switch for enabling or disabling retransmission of
minor resource depletion alarms."
::= { hh3cResMonScalarObjects 1 }
hh3cResMonOutputEnable OBJECT-TYPE
SYNTAX BITS
{
syslog(0),
snmpNotification(1),
netconfEvent(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destinations for resource depletion alarms,
including syslog, SNMP notification, and NETCONF event."
::= { hh3cResMonScalarObjects 2 }
hh3cResMonTables OBJECT IDENTIFIER ::= { hh3cResMon 2 }
--
-- Node of hh3cResMonConfigTable
--
hh3cResMonConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cResMonConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for resource monitoring configuration."
::= { hh3cResMonTables 1 }
hh3cResMonConfigEntry OBJECT-TYPE
SYNTAX Hh3cResMonConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of hh3cResMonConfigTable."
INDEX
{
hh3cResMonChassisIndex,
hh3cResMonSlotIndex,
hh3cResMonCpuIndex,
hh3cResMonResourceName
}
::= { hh3cResMonConfigTable 1 }
Hh3cResMonConfigEntry ::=
SEQUENCE
{
hh3cResMonChassisIndex Unsigned32,
hh3cResMonSlotIndex Unsigned32,
hh3cResMonCpuIndex Unsigned32,
hh3cResMonResourceName OCTET STRING,
hh3cResMonThresholdUnit INTEGER,
hh3cResMonMinorThreshold Unsigned32,
hh3cResMonSevereThreshold Unsigned32
}
hh3cResMonChassisIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Member ID of the member device where the entity resides."
::= { hh3cResMonConfigEntry 1 }
hh3cResMonSlotIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot number of the device node."
::= { hh3cResMonConfigEntry 2 }
hh3cResMonCpuIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU ID."
::= { hh3cResMonConfigEntry 3 }
hh3cResMonResourceName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Resource name."
::= { hh3cResMonConfigEntry 4 }
hh3cResMonThresholdUnit OBJECT-TYPE
SYNTAX INTEGER
{
absolute(1),
percentage(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Unit for resource depletion thresholds."
::= { hh3cResMonConfigEntry 5 }
hh3cResMonMinorThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minor resource depletion threshold."
::= { hh3cResMonConfigEntry 6 }
hh3cResMonSevereThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Severe resource depletion threshold."
::= { hh3cResMonConfigEntry 7 }
--
-- Node of hh3cResMonInfoTable
--
hh3cResMonInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cResMonInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for resource monitoring information."
::= { hh3cResMonTables 2 }
hh3cResMonInfoEntry OBJECT-TYPE
SYNTAX Hh3cResMonInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of hh3cResMonInfoEntry."
INDEX
{
hh3cResMonChassisIndex,
hh3cResMonSlotIndex,
hh3cResMonCpuIndex,
hh3cResMonResourceName
}
::= { hh3cResMonInfoTable 1 }
Hh3cResMonInfoEntry ::=
SEQUENCE
{
hh3cResMonUnit INTEGER,
hh3cResMonCurrent Unsigned32,
hh3cResMonFree Unsigned32,
hh3cResMonTotal Unsigned32
}
hh3cResMonUnit OBJECT-TYPE
SYNTAX INTEGER
{
absolute(1),
percentage(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unit for resource information."
::= { hh3cResMonInfoEntry 1 }
hh3cResMonCurrent OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of the used resource."
::= { hh3cResMonInfoEntry 2 }
hh3cResMonFree OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of the free resource."
::= { hh3cResMonInfoEntry 3 }
hh3cResMonTotal OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size of resource."
::= { hh3cResMonInfoEntry 4 }
--
-- Nodes of hh3cResMonNotification
--
hh3cResMonNotification OBJECT IDENTIFIER ::= { hh3cResMon 3 }
hh3cResMonTrapPrefix OBJECT IDENTIFIER ::= { hh3cResMonNotification 0 }
hh3cResMonMinorNotification NOTIFICATION-TYPE
OBJECTS
{
hh3cResMonChassisIndex,
hh3cResMonSlotIndex,
hh3cResMonCpuIndex,
hh3cResMonResourceName,
hh3cResMonThresholdUnit,
hh3cResMonMinorThreshold,
hh3cResMonSevereThreshold,
hh3cResMonCurrent,
hh3cResMonFree,
hh3cResMonTotal,
hh3cResMonAdditionalInfo
}
STATUS current
DESCRIPTION
"The notification indicates that the amount of the free resource
decreased to or below the hhcResMonMinorThreshold"
::= { hh3cResMonTrapPrefix 1 }
hh3cResMonMinorRecoverNotification NOTIFICATION-TYPE
OBJECTS
{
hh3cResMonChassisIndex,
hh3cResMonSlotIndex,
hh3cResMonCpuIndex,
hh3cResMonResourceName,
hh3cResMonThresholdUnit,
hh3cResMonMinorThreshold,
hh3cResMonSevereThreshold,
hh3cResMonCurrent,
hh3cResMonFree,
hh3cResMonTotal,
hh3cResMonAdditionalInfo
}
STATUS current
DESCRIPTION
"The notification indicates that the amount of the free resource
increased to or above the hhcResMonMinorThreshold."
::= { hh3cResMonTrapPrefix 2 }
hh3cResMonSevereNotification NOTIFICATION-TYPE
OBJECTS
{
hh3cResMonChassisIndex,
hh3cResMonSlotIndex,
hh3cResMonCpuIndex,
hh3cResMonResourceName,
hh3cResMonThresholdUnit,
hh3cResMonMinorThreshold,
hh3cResMonSevereThreshold,
hh3cResMonCurrent,
hh3cResMonFree,
hh3cResMonTotal,
hh3cResMonAdditionalInfo
}
STATUS current
DESCRIPTION
"The notification indicates that the amount of the free resource
decreased to or below the hhcResMonSevereThreshold."
::= { hh3cResMonTrapPrefix 3 }
hh3cResMonSevereRecoverNotification NOTIFICATION-TYPE
OBJECTS
{
hh3cResMonChassisIndex,
hh3cResMonSlotIndex,
hh3cResMonCpuIndex,
hh3cResMonResourceName,
hh3cResMonThresholdUnit,
hh3cResMonMinorThreshold,
hh3cResMonSevereThreshold,
hh3cResMonCurrent,
hh3cResMonFree,
hh3cResMonTotal,
hh3cResMonAdditionalInfo
}
STATUS current
DESCRIPTION
"The notification indicates that the amount of the free resource
increased to or above hhcResMonSevereThreshold."
::= { hh3cResMonTrapPrefix 4 }
hh3cResMonUsedUpNotification NOTIFICATION-TYPE
OBJECTS
{
hh3cResMonChassisIndex,
hh3cResMonSlotIndex,
hh3cResMonCpuIndex,
hh3cResMonResourceName,
hh3cResMonThresholdUnit,
hh3cResMonMinorThreshold,
hh3cResMonSevereThreshold,
hh3cResMonCurrent,
hh3cResMonFree,
hh3cResMonTotal,
hh3cResMonAdditionalInfo
}
STATUS current
DESCRIPTION
"This notification indicates that the resource is used up."
::= { hh3cResMonTrapPrefix 5 }
hh3cResMonUsedUpRecoverNotification NOTIFICATION-TYPE
OBJECTS
{
hh3cResMonChassisIndex,
hh3cResMonSlotIndex,
hh3cResMonCpuIndex,
hh3cResMonResourceName,
hh3cResMonThresholdUnit,
hh3cResMonMinorThreshold,
hh3cResMonSevereThreshold,
hh3cResMonCurrent,
hh3cResMonFree,
hh3cResMonTotal,
hh3cResMonAdditionalInfo
}
STATUS current
DESCRIPTION
"This notification indicates that the free resource increases from zero up."
::= { hh3cResMonTrapPrefix 6 }
hh3cResMonTrapInfor OBJECT IDENTIFIER ::= { hh3cResMonNotification 1 }
hh3cResMonAdditionalInfo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Additional information for a notification."
::= { hh3cResMonTrapInfor 1 }
END
|