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
|
-- ====================================================================
-- Copyright (C) 2007 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: MS(Media Switch Server) Configuration management MIB
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 Initial version 2007-04-13 created by zhoujianming
--- ===================================================================
HH3C-MS-MAN-MIB DEFINITIONS ::= BEGIN
IMPORTS
Unsigned32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
PhysicalIndex
FROM ENTITY-MIB
hh3cSurveillanceMIB
FROM HH3C-OID-MIB;
hh3cMSMan MODULE-IDENTITY
LAST-UPDATED "200708130000Z" -- August 13, 2007 GMT
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 is defined to manage MS components
according to specific capability."
::= { hh3cSurveillanceMIB 3 }
--
-- Node definitions
--
hh3cMSManMIBObjects OBJECT IDENTIFIER ::= { hh3cMSMan 1 }
--
-- statistical period
--
hh3cMSStatisticalPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The statistical period of this entity, which unit is
second and default value is 300 seconds."
::= { hh3cMSManMIBObjects 1 }
hh3cMSManMIBTables OBJECT IDENTIFIER ::= { hh3cMSMan 2 }
--
-- forward table
--
hh3cMSForwardTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cMSForwardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MS Forward table, used to get the forwarding information
of the entity. "
::= { hh3cMSManMIBTables 1 }
hh3cMSForwardEntry OBJECT-TYPE
SYNTAX Hh3cMSForwardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hh3cMSForward table entry."
INDEX { hh3cMSForwardIndex }
::= { hh3cMSForwardTable 1 }
Hh3cMSForwardEntry ::=
SEQUENCE {
hh3cMSForwardIndex PhysicalIndex,
hh3cMSForwardMaxConnection Unsigned32,
hh3cMSForwardConnectionThreshold Unsigned32,
hh3cMSCurrentForwardConnection Unsigned32,
hh3cMSPeriodForwardConnection Unsigned32,
hh3cMSForwardTotalTime Unsigned32,
hh3cMSForwardTotalConn Unsigned32
}
hh3cMSForwardIndex OBJECT-TYPE
SYNTAX PhysicalIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object is the entity index, which
depends on the implementation of ENTITY-MIB. "
::= { hh3cMSForwardEntry 1 }
hh3cMSForwardMaxConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maxium number of forward connections the entity can
support."
::= { hh3cMSForwardEntry 2 }
hh3cMSForwardConnectionThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold of forward connections."
::= { hh3cMSForwardEntry 3 }
hh3cMSCurrentForwardConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of forward connections the entity provided
in this time."
::= { hh3cMSForwardEntry 4 }
hh3cMSPeriodForwardConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maxium number of forward connections within the
last statistical period."
::= { hh3cMSForwardEntry 5 }
hh3cMSForwardTotalTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total forward connection time the entity has
serviced since its startup."
::= { hh3cMSForwardEntry 6 }
hh3cMSForwardTotalConn OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total forward connection numbers the entity has
serviced since its startup."
::= { hh3cMSForwardEntry 7 }
--
-- VOD table
--
hh3cMSVODTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cMSVODEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MS VOD(video on demand) table, used to get the VOD
information of the entity."
::= { hh3cMSManMIBTables 2 }
hh3cMSVODEntry OBJECT-TYPE
SYNTAX Hh3cMSVODEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hh3cMSVOD table entry."
INDEX { hh3cMSVODIndex }
::= { hh3cMSVODTable 1 }
Hh3cMSVODEntry ::=
SEQUENCE {
hh3cMSVODIndex PhysicalIndex,
hh3cMSVODMaxConnection Unsigned32,
hh3cMSVODConnectionThreshold Unsigned32,
hh3cMSCurrentVODConnection Unsigned32,
hh3cMSPeriodVODMaxConnection Unsigned32,
hh3cMSVODTotalTime Unsigned32,
hh3cMSVODTotalConn Unsigned32
}
hh3cMSVODIndex OBJECT-TYPE
SYNTAX PhysicalIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object is the entity index, which
depends on the implementation of ENTITY-MIB. "
::= { hh3cMSVODEntry 1 }
hh3cMSVODMaxConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maxium number of VOD connections the entity
can support."
::= { hh3cMSVODEntry 2 }
hh3cMSVODConnectionThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold of VOD connections."
::= { hh3cMSVODEntry 3 }
hh3cMSCurrentVODConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of VOD connections the entity provided
in this time."
::= { hh3cMSVODEntry 4 }
hh3cMSPeriodVODMaxConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maxium number of VOD connections within the last
statistical period."
::= { hh3cMSVODEntry 5 }
hh3cMSVODTotalTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total VOD connection time the entity has serviced
since its startup."
::= { hh3cMSVODEntry 6 }
hh3cMSVODTotalConn OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total VOD connection numbers the entity has serviced
since its startup."
::= { hh3cMSVODEntry 7 }
--
-- Record table
--
hh3cMSRecordTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cMSRecordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MS Record table, used to get the record information of
the entity."
::= { hh3cMSManMIBTables 3 }
hh3cMSRecordEntry OBJECT-TYPE
SYNTAX Hh3cMSRecordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"hh3cMSRecord table entry."
INDEX { hh3cMSRecordIndex }
::= { hh3cMSRecordTable 1 }
Hh3cMSRecordEntry ::=
SEQUENCE {
hh3cMSRecordIndex PhysicalIndex,
hh3cMSRecordMaxConnection Unsigned32,
hh3cMSRecordConnectionThreshold Unsigned32,
hh3cMSCurrentRecordConnection Unsigned32,
hh3cMSPeriodRecordMaxConnection Unsigned32,
hh3cMSRecordTotalTime Unsigned32,
hh3cMSRecordTotalConn Unsigned32
}
hh3cMSRecordIndex OBJECT-TYPE
SYNTAX PhysicalIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of this object is the entity index, which
depends on the implementation of ENTITY-MIB. "
::= { hh3cMSRecordEntry 1 }
hh3cMSRecordMaxConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maxium number of record connections the entity can
support."
::= { hh3cMSRecordEntry 2 }
hh3cMSRecordConnectionThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold of record connections ."
::= { hh3cMSRecordEntry 3 }
hh3cMSCurrentRecordConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of record connections the entity provided in
this time."
::= { hh3cMSRecordEntry 4 }
hh3cMSPeriodRecordMaxConnection OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maxium number of record connections within the
last statistical period."
::= { hh3cMSRecordEntry 5 }
hh3cMSRecordTotalTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total record connection time the entity has
serviced since its startup."
::= { hh3cMSRecordEntry 6 }
hh3cMSRecordTotalConn OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total record connection numbers the entity
has serviced since its startup."
::= { hh3cMSRecordEntry 7 }
--
-- Notification definitions
--
-- =================================================================
-- Traps are defined below.
hh3cMSManMIBTrap OBJECT IDENTIFIER ::= { hh3cMSMan 3 }
-- All trap definitions should be placed under this object.
hh3cMSManTrapPrex OBJECT IDENTIFIER ::= { hh3cMSManMIBTrap 0 }
hh3cMSManVODConnectionThresholdTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cMSVODIndex,
hh3cMSCurrentVODConnection,
hh3cMSVODConnectionThreshold
}
STATUS current
DESCRIPTION
"Current VOD connection exceeds the threshold."
::= { hh3cMSManTrapPrex 1 }
hh3cMSManVODConnectionRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cMSVODIndex,
hh3cMSCurrentVODConnection,
hh3cMSVODConnectionThreshold
}
STATUS current
DESCRIPTION
"Current VOD connection recovers under the threshold."
::= { hh3cMSManTrapPrex 2 }
hh3cMSManForwardConnectionThresholdTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cMSForwardIndex,
hh3cMSCurrentForwardConnection,
hh3cMSForwardConnectionThreshold
}
STATUS current
DESCRIPTION
"Current forward connection exceeds the threshold."
::= { hh3cMSManTrapPrex 3 }
hh3cMSManForwardConnectionRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cMSForwardIndex,
hh3cMSCurrentForwardConnection,
hh3cMSForwardConnectionThreshold
}
STATUS current
DESCRIPTION
"Current forward connection recovers under the threshold."
::= { hh3cMSManTrapPrex 4 }
hh3cMSManRecordConnectionThresholdTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cMSRecordIndex,
hh3cMSCurrentRecordConnection,
hh3cMSRecordConnectionThreshold
}
STATUS current
DESCRIPTION
"Current record connection exceeds the threshold."
::= { hh3cMSManTrapPrex 5 }
hh3cMSManRecordConnectionRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cMSRecordIndex,
hh3cMSCurrentRecordConnection,
hh3cMSRecordConnectionThreshold
}
STATUS current
DESCRIPTION
"Current record connection recovers under the threshold."
::= { hh3cMSManTrapPrex 6 }
END
|