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
|
ENVIROMUXMICRO-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
enterprises,
Integer32 FROM SNMPv2-SMI
DisplayString FROM SNMPv2-TC;
enviromuxMicro MODULE-IDENTITY
LAST-UPDATED "202103071400Z"
ORGANIZATION "Network Technologies Inc."
CONTACT-INFO
"Network Technologies Inc.
Postal: 1275 Danner Dr,
Aurora, OH 442022
US
Tel: 330-562-7070
Fax: 330-562-1999
WEB: www.networktechinc.com"
DESCRIPTION
"E-MICRO MIB file."
REVISION "202103071400Z"
DESCRIPTION "Rev. 1.04 - Added hostSystem variables"
REVISION "201509271400Z"
DESCRIPTION "Rev. 1.03 - Added Smart Alerts OID's"
REVISION "201502231400Z"
DESCRIPTION "Rev. 1.02 - Added traps OID's"
REVISION "201411251400Z"
DESCRIPTION "Rev. 1.01 - Corrected missing elements"
REVISION "201411141400Z"
DESCRIPTION "Rev. 1.00 - Initial version"
::= { hardware 12 }
-- the root of the subtree for Network Technologies Inc
nti OBJECT IDENTIFIER ::= { enterprises 3699 }
-- subtree for products
products OBJECT IDENTIFIER ::= { nti 1 }
hardware OBJECT IDENTIFIER ::= { products 1 }
software OBJECT IDENTIFIER ::= { products 2 }
otherProduct OBJECT IDENTIFIER ::= { hardware 200 }
-- e-micro subtree
masterUnit OBJECT IDENTIFIER ::= { enviromuxMicro 1 }
intSensors OBJECT IDENTIFIER ::= { masterUnit 1 }
extSensors OBJECT IDENTIFIER ::= { masterUnit 2 }
digInputs OBJECT IDENTIFIER ::= { masterUnit 3 }
ipDevices OBJECT IDENTIFIER ::= { masterUnit 4 }
eAlerts OBJECT IDENTIFIER ::= { masterUnit 5 }
smAlerts OBJECT IDENTIFIER ::= { masterUnit 6 }
hostSystem OBJECT IDENTIFIER ::= { masterUnit 100 }
enviromuxMicroTraps OBJECT IDENTIFIER ::= { enviromuxMicro 100 }
-- integrated sensors description
intSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF IntSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of internal Sensors entries"
::= { intSensors 1 }
intSensorEntry OBJECT-TYPE
SYNTAX IntSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An internal sensor entry"
INDEX { intSensorIndex }
::= { intSensorTable 1 }
IntSensorEntry ::=
SEQUENCE {
intSensorIndex
Integer32,
intSensorType
INTEGER,
intSensorDescription
DisplayString,
intSensorValue
INTEGER,
intSensorUnit
Integer32
}
intSensorIndex OBJECT-TYPE
SYNTAX Integer32 (1..3)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the integrated sensor entry 1..3"
::= { intSensorEntry 1 }
intSensorType OBJECT-TYPE
SYNTAX INTEGER { undefined(0), temperature(1), humidity(2), dewPoint(24) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Type"
::= { intSensorEntry 2 }
intSensorDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Description"
::= { intSensorEntry 3 }
intSensorValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the integrated sensor reading. For temperature, voltage, current or low voltage, it is presented in tenths of degrees/volts"
::= { intSensorEntry 4 }
intSensorUnit OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The measuremnet unit for this sensor in numeric format. It is important only for temperature"
::= { intSensorEntry 5 }
-- external sensors description
extSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF ExtSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of external Sensors entries"
::= { extSensors 1 }
extSensorEntry OBJECT-TYPE
SYNTAX ExtSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An external sensor entry"
INDEX { extSensorIndex }
::= { extSensorTable 1 }
ExtSensorEntry ::=
SEQUENCE {
extSensorIndex
Integer32,
extSensorType
INTEGER,
extSensorDescription
DisplayString,
extSensorValue
INTEGER,
extSensorUnit
Integer32
}
extSensorIndex OBJECT-TYPE
SYNTAX Integer32 (1..6)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the external sensor entry 1..6"
::= { extSensorEntry 1 }
extSensorType OBJECT-TYPE
SYNTAX INTEGER { undefined(0), temperature(1), humidity(2), dewPoint(24) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Type"
::= { extSensorEntry 2 }
extSensorDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Description"
::= { extSensorEntry 3 }
extSensorValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the external sensor reading. For temperature, voltage, current or low voltage, it is presented in tenths of degrees/volts"
::= { extSensorEntry 4 }
extSensorUnit OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The measuremnet unit for this sensor in numeric format. It is important only for temperature"
::= { extSensorEntry 5 }
-- digital inputs description
digInputTable OBJECT-TYPE
SYNTAX SEQUENCE OF DigInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of digital input entries"
::= { digInputs 1 }
digInputEntry OBJECT-TYPE
SYNTAX DigInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A digital input entry"
INDEX { digInputIndex }
::= { digInputTable 1 }
DigInputEntry ::=
SEQUENCE {
digInputIndex
Integer32,
digInputDescription
DisplayString,
digInputValue
INTEGER
}
digInputIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the digital input entry 1..2"
::= { digInputEntry 1 }
digInputDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Description"
::= { digInputEntry 2 }
digInputValue OBJECT-TYPE
SYNTAX INTEGER { closed(0), open(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the digital reading"
::= { digInputEntry 3 }
-- ip devices description
ipDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of digital input entries"
::= { ipDevices 1 }
ipDeviceEntry OBJECT-TYPE
SYNTAX IpDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A digital input entry"
INDEX { ipDeviceIndex }
::= { ipDeviceTable 1 }
IpDeviceEntry ::=
SEQUENCE {
ipDeviceIndex
Integer32,
ipDeviceDescription
DisplayString,
ipDeviceValue
INTEGER
}
ipDeviceIndex OBJECT-TYPE
SYNTAX Integer32 (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the ip device entry 1..4"
::= { ipDeviceEntry 1 }
ipDeviceDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Description"
::= { ipDeviceEntry 2 }
ipDeviceValue OBJECT-TYPE
SYNTAX INTEGER { notResponding(0), responding(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The result of the ip device ping test"
::= { ipDeviceEntry 3 }
-- alerts description
alertTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of alert entries"
::= { eAlerts 1 }
alertEntry OBJECT-TYPE
SYNTAX AlertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An alert entry"
INDEX { alertIndex }
::= { alertTable 1 }
AlertEntry ::=
SEQUENCE {
alertIndex
Integer32,
alertEnabled
Integer32,
alertSensor
DisplayString,
alertSensorValue
INTEGER,
alertThreshold
INTEGER,
alertThresholdType
INTEGER,
alertStatus
INTEGER
}
alertIndex OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the alert entry 1..32"
::= { alertEntry 1 }
alertEnabled OBJECT-TYPE
SYNTAX INTEGER { false(0), true(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Shows if alert is enabled 0..1"
::= { alertEntry 2 }
alertSensor OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Alert Sensor Description"
::= { alertEntry 3 }
alertSensorValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the sensor for analog sensors or open/closed for digital inputs"
::= { alertEntry 4 }
alertThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the alert threshold for analog sensors, irrelevant for alerts for digital inputs"
::= { alertEntry 5 }
alertThresholdType OBJECT-TYPE
SYNTAX INTEGER { lessThan(0), greaterThan(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The type of the alert threshold for analog sensors, irrelevant for alerts for digital inputs"
::= { alertEntry 6 }
alertStatus OBJECT-TYPE
SYNTAX INTEGER { normal(0), enteringCritical(1), critical(2), exitingCritical(3), waitingAckDismiss(4), acknowledged(5), dismissed(6), disconnected(7) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current status of the alert"
::= { alertEntry 7 }
-- smart alerts description
smAlertTable OBJECT-TYPE
SYNTAX SEQUENCE OF SmAlertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of alert entries"
::= { smAlerts 1 }
smAlertEntry OBJECT-TYPE
SYNTAX SmAlertEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A smart alert entry"
INDEX { smAlertIndex }
::= { smAlertTable 1 }
SmAlertEntry ::=
SEQUENCE {
smAlertIndex
Integer32,
smAlertEnabled
Integer32,
smAlertStatus
INTEGER
}
smAlertIndex OBJECT-TYPE
SYNTAX Integer32 (1..1)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the alert entry (only one)"
::= { smAlertEntry 1 }
smAlertEnabled OBJECT-TYPE
SYNTAX INTEGER { false(0), true(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Shows if alert is enabled 0..1"
::= { smAlertEntry 2 }
smAlertStatus OBJECT-TYPE
SYNTAX INTEGER { normal(0), enteringCritical(1), critical(2), exitingCritical(3), waitingAckDismiss(4), acknowledged(5), dismissed(6), disconnected(7) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current status of the alert"
::= { smAlertEntry 3 }
-- hostSystem subtree
unitName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Unit Name"
::= { hostSystem 1 }
deviceModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Device Model"
::= { hostSystem 2 }
serialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Serial Number"
::= { hostSystem 3 }
firmwareRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Firmware Revision"
::= { hostSystem 4 }
senderEmailAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "FROM email address for alerts"
::= { hostSystem 5 }
-- Trap Definitions
intSensorsTraps OBJECT IDENTIFIER ::= { enviromuxMicroTraps 1 }
extSensorsTraps OBJECT IDENTIFIER ::= { enviromuxMicroTraps 2 }
digitalInputsTraps OBJECT IDENTIFIER ::= { enviromuxMicroTraps 3 }
ipDevicesTraps OBJECT IDENTIFIER ::= { enviromuxMicroTraps 4 }
intSensor1Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, intSensorValue, intSensorUnit }
STATUS current
DESCRIPTION "Trap issued when internal sensor 1 has a notification to send"
::= {intSensorsTraps 1 }
intSensor2Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, intSensorValue, intSensorUnit }
STATUS current
DESCRIPTION "Trap issued when internal sensor 2 has a notification to send"
::= {intSensorsTraps 2 }
intSensor3Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, intSensorValue, intSensorUnit }
STATUS current
DESCRIPTION "Trap issued when internal sensor 3 has a notification to send"
::= {intSensorsTraps 3 }
extSensor1Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, extSensorValue, extSensorUnit }
STATUS current
DESCRIPTION "Trap issued when external sensor 1 has a notification to send"
::= {extSensorsTraps 1 }
extSensor2Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, extSensorValue, extSensorUnit }
STATUS current
DESCRIPTION "Trap issued when external sensor 2 has a notification to send"
::= {extSensorsTraps 2 }
extSensor3Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, extSensorValue, extSensorUnit }
STATUS current
DESCRIPTION "Trap issued when external sensor 3 has a notification to send"
::= {extSensorsTraps 3 }
extSensor4Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, extSensorValue, extSensorUnit }
STATUS current
DESCRIPTION "Trap issued when external sensor 4 has a notification to send"
::= {extSensorsTraps 4 }
extSensor5Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, extSensorValue, extSensorUnit }
STATUS current
DESCRIPTION "Trap issued when external sensor 5 has a notification to send"
::= {extSensorsTraps 5 }
extSensor6Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, extSensorValue, extSensorUnit }
STATUS current
DESCRIPTION "Trap issued when external sensor 6 has a notification to send"
::= {extSensorsTraps 6 }
digInput1Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, digInputValue }
STATUS current
DESCRIPTION "Trap issued when digital input 1 has a notification to send"
::= {digitalInputsTraps 1 }
digInpu21Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, digInputValue }
STATUS current
DESCRIPTION "Trap issued when digital input 2 has a notification to send"
::= {digitalInputsTraps 2 }
ipDevice1Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, ipDeviceValue }
STATUS current
DESCRIPTION "Trap issued when IP device 1 has a notification to send"
::= {ipDevicesTraps 1 }
ipDevice2Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, ipDeviceValue }
STATUS current
DESCRIPTION "Trap issued when IP device 2 has a notification to send"
::= {ipDevicesTraps 2 }
ipDevice3Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, ipDeviceValue }
STATUS current
DESCRIPTION "Trap issued when IP device 3 has a notification to send"
::= {ipDevicesTraps 3 }
ipDevice4Trap NOTIFICATION-TYPE
OBJECTS { alertStatus, ipDeviceValue }
STATUS current
DESCRIPTION "Trap issued when IP device 4 has a notification to send"
::= {ipDevicesTraps 4 }
END
|