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
|
VEL-HOST2-MIB DEFINITIONS ::= BEGIN
IMPORTS
vel FROM VEL-MIB
DisplayString FROM RFC1213-MIB
TRAP-TYPE FROM RFC-1215
MODULE-IDENTITY, OBJECT-TYPE
FROM SNMPv2-SMI;
host2 MODULE-IDENTITY
LAST-UPDATED "201508121000Z"
ORGANIZATION "Vigintos Elektronika"
CONTACT-INFO "Contact:
Web: http://www.vigintos.com
Email: ve@vigintos.com
Address: Ozo 4, Vilnius, LT-08200, Lithuania
Tel: +37052477465
Fax: +37052477466"
DESCRIPTION "This is the MIB file of Host Controller 2."
REVISION "201303070800Z"
DESCRIPTION "Host Controller 2 MIB File."
::= {vel 5}
host2Name OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Host Controller name."
::= {host2 1}
host2Version OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Host Controller version"
::= {host2 2}
host2LoaderVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Host Controller loader version"
::= {host2 3}
-- ************ Host Command Table ***************************
host2CmdTable OBJECT-TYPE
SYNTAX SEQUENCE OF Host2CmdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Host Controller command entries."
::= {host2 4}
host2CmdEntry OBJECT-TYPE
SYNTAX Host2CmdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of Host Controller commands."
INDEX { host2CmdIndex }
::= {host2CmdTable 1}
Host2CmdEntry ::= SEQUENCE {
host2CmdIndex INTEGER,
host2CmdName DisplayString,
host2CmdExecute INTEGER
}
host2CmdIndex OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An id for each command."
::= {host2CmdEntry 1}
host2CmdName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of a command."
::= {host2CmdEntry 2}
host2CmdExecute OBJECT-TYPE
SYNTAX INTEGER {no(0), yes(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Instructions to execute the command of host.
If value no(0) is sent, the command will not be executed.
If value yes(1) is sent, the command will be executed."
::= {host2CmdEntry 3}
-- ************ End Host Command Table ***********************
-- ************ History **************************************
host2HistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF Host2HistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Host Controller history entries."
::= {host2 5}
host2HistoryEntry OBJECT-TYPE
SYNTAX Host2HistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of Host Controller history."
INDEX { host2HisIndex }
::= {host2HistoryTable 1}
Host2HistoryEntry ::= SEQUENCE {
host2HisIndex INTEGER,
host2HisRecord DisplayString
}
host2HisIndex OBJECT-TYPE
SYNTAX INTEGER(1..1008)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique index for each event."
::= {host2HistoryEntry 1}
host2HisRecord OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The text description of an event."
::= {host2HistoryEntry 2}
-- ************ End History **********************************
-- ************ Devices **************************************
-- ************ Device Attributes ***************************
host2DevAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF Host2DevAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of device attributes entries."
::= {host2 6}
host2DevAttrEntry OBJECT-TYPE
SYNTAX Host2DevAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of device attributes."
INDEX {host2DevIndex}
::= {host2DevAttrTable 1}
Host2DevAttrEntry ::= SEQUENCE {
host2DevIndex INTEGER,
host2DevLocalAddr INTEGER,
host2DevTypeNumber INTEGER,
host2DevLanState INTEGER
}
host2DevIndex OBJECT-TYPE
SYNTAX INTEGER(1..14)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique ID for each device."
::= {host2DevAttrEntry 1}
host2DevLocalAddr OBJECT-TYPE
SYNTAX INTEGER(2..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Local address for each device."
::= {host2DevAttrEntry 2}
host2DevTypeNumber OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of type for each device."
::= {host2DevAttrEntry 3}
host2DevLanState OBJECT-TYPE
SYNTAX INTEGER{disconnected(0), connected(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Network connection state for each device."
::= {host2DevAttrEntry 4}
-- ************ End Device Attributes ***********************
-- ************ Textual Data Table ***********************************
host2DevTxtTable OBJECT-TYPE
SYNTAX SEQUENCE OF Host2DevTxtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of textual data that are read from the devices.
If device is disconnected, there is no entry for this device in the table."
::= {host2 7}
host2DevTxtEntry OBJECT-TYPE
SYNTAX Host2DevTxtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of textual data of devices."
INDEX {host2DevIndex, host2DevTxtIndex}
::= {host2DevTxtTable 1}
Host2DevTxtEntry ::= SEQUENCE {
host2DevTxtIndex INTEGER,
host2DevTxtName DisplayString,
host2DevTxtValue DisplayString
}
host2DevTxtIndex OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique ID for each textual data of device."
::= {host2DevTxtEntry 1}
host2DevTxtName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of textual data of device."
::= {host2DevTxtEntry 2}
host2DevTxtValue OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of textual data of device."
::= {host2DevTxtEntry 3}
-- ************ End Textual Data Table *******************************
-- ************ Event Table ****************************************
host2DevEvtTable OBJECT-TYPE
SYNTAX SEQUENCE OF Host2DevEvtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of events of devices entries.
If device is disconnected, there is no entry for this device in the table."
::= {host2 8}
host2DevEvtEntry OBJECT-TYPE
SYNTAX Host2DevEvtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of events of devices."
INDEX {host2DevIndex, host2DevEvtIndex}
::= {host2DevEvtTable 1}
Host2DevEvtEntry ::= SEQUENCE {
host2DevEvtIndex INTEGER,
host2DevEvtName DisplayString,
host2DevEvtType INTEGER,
host2DevEvtState INTEGER
}
host2DevEvtIndex OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Id for each event."
::= {host2DevEvtEntry 1}
host2DevEvtName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of a event."
::= {host2DevEvtEntry 2}
host2DevEvtType OBJECT-TYPE
SYNTAX INTEGER {notice(0), warning(1), alarm(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of a event."
::= {host2DevEvtEntry 3}
host2DevEvtState OBJECT-TYPE
SYNTAX INTEGER (0..1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of a event."
::= {host2DevEvtEntry 4}
-- ************ End Event Table ************************************
-- ************ Parameter Table ***********************************
host2DevParTable OBJECT-TYPE
SYNTAX SEQUENCE OF Host2DevParEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of parameters of devices entries.
If device is disconnected, there is no entry for this device in the table."
::= {host2 9}
host2DevParEntry OBJECT-TYPE
SYNTAX Host2DevParEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of parameters of devices."
INDEX {host2DevIndex, host2DevParIndex}
::= {host2DevParTable 1}
Host2DevParEntry ::= SEQUENCE {
host2DevParIndex INTEGER,
host2DevParName DisplayString,
host2DevParValue DisplayString,
host2DevParUnit DisplayString,
host2DevParStateType INTEGER,
host2DevParState INTEGER
}
host2DevParIndex OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique ID for each parameter."
::= {host2DevParEntry 1}
host2DevParName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of a parameter."
::= {host2DevParEntry 2}
host2DevParValue OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of a parameter."
::= {host2DevParEntry 3}
host2DevParUnit OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measurement unit of a parameter."
::= {host2DevParEntry 4}
host2DevParStateType OBJECT-TYPE
SYNTAX INTEGER {notice(0), warning(1), alarm(2)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of state of a parameter."
::= {host2DevParEntry 5}
host2DevParState OBJECT-TYPE
SYNTAX INTEGER {noAlarm(0), lessThanMin(1), greatherThanMax(2), blocked(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of a parameter."
::= {host2DevParEntry 6}
-- ************ End Parameter Table *******************************
-- ************ Quantity Table *************************************
host2DevQntTable OBJECT-TYPE
SYNTAX SEQUENCE OF Host2DevQntEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of quantities of devices entries.
If device is disconnected, there is no entry for this device in the table."
::= {host2 10}
host2DevQntEntry OBJECT-TYPE
SYNTAX Host2DevQntEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of quantities of device."
INDEX {host2DevIndex, host2DevQntIndex}
::= {host2DevQntTable 1}
Host2DevQntEntry ::= SEQUENCE {
host2DevQntIndex INTEGER,
host2DevQntName DisplayString,
host2DevQntValue DisplayString,
host2DevQntMin DisplayString,
host2DevQntMax DisplayString,
host2DevQntAccess INTEGER
}
host2DevQntIndex OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An id for each quantity."
::= {host2DevQntEntry 1}
host2DevQntName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of a quantity."
::= {host2DevQntEntry 2}
host2DevQntValue OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of a quantity."
::= {host2DevQntEntry 3}
host2DevQntMin OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum value of a quantity."
::= {host2DevQntEntry 4}
host2DevQntMax OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value of a quantity."
::= {host2DevQntEntry 5}
host2DevQntAccess OBJECT-TYPE
SYNTAX INTEGER {read-only(0), read-write(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The access to change the value of a quantity."
::= {host2DevQntEntry 6}
-- ************ End Quantity Table *************************************
-- ************ Command Table *************************************
host2DevCmdTable OBJECT-TYPE
SYNTAX SEQUENCE OF Host2DevCmdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of commands of devices entries.
If device is disconnected, there is no entry for this device in the table."
::= {host2 11}
host2DevCmdEntry OBJECT-TYPE
SYNTAX Host2DevCmdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of commands of device."
INDEX {host2DevIndex, host2DevCmdIndex}
::= {host2DevCmdTable 1}
Host2DevCmdEntry ::= SEQUENCE {
host2DevCmdIndex INTEGER,
host2DevCmdName DisplayString,
host2DevCmdExecute INTEGER
}
host2DevCmdIndex OBJECT-TYPE
SYNTAX INTEGER(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An id for each command."
::= {host2DevCmdEntry 1}
host2DevCmdName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of a command."
::= {host2DevCmdEntry 2}
host2DevCmdExecute OBJECT-TYPE
SYNTAX INTEGER {no(0), yes(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Instructions to execute the command of device.
If value no(0) is sent, the command will not be executed.
If value yes(1) is sent, the command will be executed."
::= {host2DevCmdEntry 3}
-- ************ End Command Table *********************************
-- ************ End Devices **********************************
-- ************ Traps ****************************************
host2DevConnectionTrap TRAP-TYPE
ENTERPRISE host2
VARIABLES {host2DevLanState }
DESCRIPTION
"This trap is sent when the status of network connection of device is changed.
There can be two types of network connection status: connected or disconnected."
::= 5001
host2DevEvtStateTrap TRAP-TYPE
ENTERPRISE host2
VARIABLES {host2DevEvtState}
DESCRIPTION
"This trap is sent when the state of device is changed: for example,
device can enter stand-by mode or there is an alarm, not associated with parameters measured."
::= 5002
host2DevParStateTrap TRAP-TYPE
ENTERPRISE host2
VARIABLES {host2DevParState}
DESCRIPTION
"This trap is sent when the state of measured parameters is changed."
::= 5003
-- ************ End Traps ************************************
END
|