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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
|
DKSF-70-6-X-X-1 DEFINITIONS ::= BEGIN
IMPORTS
enterprises,
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Gauge32,
Counter64,
Integer32,
TimeTicks,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
DisplayString,
TruthValue,
TimeStamp
FROM SNMPv2-TC
snmpTraps
FROM SNMPv2-MIB ;
uniPingServerSolutionV3 MODULE-IDENTITY
LAST-UPDATED "201608240000Z"
ORGANIZATION "Alentis Electronics"
CONTACT-INFO
"developers@netping.ru"
DESCRIPTION
"Generic MIB for NetPing remote sensing and control"
REVISION "201608240000Z"
DESCRIPTION
"npThermoValuePrecise added
npGsmSendSms renamed to npGsmSendSmsUtf8
npGsmSendWin1251 added"
REVISION "201507140000Z"
DESCRIPTION
"npSmoke branch added, npRelHum branch extended"
REVISION "201505290000Z"
DESCRIPTION
"npIoTrapLevelLegend added, npIrStatus values redefined"
REVISION "201412030000Z"
DESCRIPTION
"npRelayMode, npIoLevelOut values changed"
REVISION "201411260000Z"
DESCRIPTION
"npRelayN, npRelayMode, npIoLineN, npRelHumSensorStatusH, npRelHumSensorStatus values changed"
REVISION "201402020000Z"
DESCRIPTION
"npRelayMode valid values changed, (3) excluded "
REVISION "201401290000Z"
DESCRIPTION
"npCurLoop, npRelHumidity, npIr branches has added"
REVISION "201401210000Z"
DESCRIPTION
"partial rewrite for DKSF 70"
REVISION "201304110000Z"
DESCRIPTION
"partial rewrite for DKSF 48"
REVISION "201205310000Z"
DESCRIPTION
"npPwrRelayState branch was added"
REVISION "201204170000Z"
DESCRIPTION
"npReboot branch was added"
REVISION "201203230000Z"
DESCRIPTION
"Minor changes to IR module for IRC-TRv2"
REVISION "201109230000Z"
DESCRIPTION
"4 IO lines,
Identification is changed from DKSF 52.4 to DKSF 52.5"
REVISION "201103240000Z"
DESCRIPTION
"npIoPulseCounter, npIoSinglePulseDuration, npIoSinglePulseStart is added
Identification is changed from DKSF 52.3 to DKSF 52.4"
REVISION "201010140000Z"
DESCRIPTION
"IR module support"
REVISION "201009200000Z"
DESCRIPTION
"dksf 52.3 subversion"
REVISION "201005310000Z"
DESCRIPTION
"dksf 51.3 subversion"
REVISION "201004140000Z"
DESCRIPTION
"SMIv2-style rewrite"
::= { lightcom 70 }
lightcom OBJECT IDENTIFIER::={enterprises 25728 }
FixedPoint1000 ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-3"
STATUS current
DESCRIPTION "Fixed-point value as Integer, 3 decimal gigits after point (i.e. value*1000 rounded to Integer)"
SYNTAX INTEGER
npTrapInfo OBJECT IDENTIFIER::={lightcom 90}
npTrapEmailTo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "user-specified e-mail for NetPing Trap Forwarding Service"
::={npTrapInfo 1}
npRelay OBJECT IDENTIFIER::={ lightcom 5500 }
npRelayTable OBJECT-TYPE
SYNTAX SEQUENCE OF NpRelayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Watchdog and outlet/relay control table"
::= { npRelay 5 }
npRelayEntry OBJECT-TYPE
SYNTAX NpRelayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Relay/outlet table row"
INDEX { npRelayN }
::= { npRelayTable 1 }
NpRelayEntry ::= SEQUENCE {
npRelayN INTEGER,
npRelayMode INTEGER,
npRelayStartReset INTEGER,
npRelayMemo DisplayString,
npRelayState INTEGER
-- not in dksf70 npRelayPowered INTEGER
}
npRelayN OBJECT-TYPE
SYNTAX INTEGER (1..1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The N of output relay"
::= { npRelayEntry 1 }
npRelayMode OBJECT-TYPE
SYNTAX INTEGER {
flip(-1),
off(0),
on(1),
watchdog(2),
schedule(3),
scheduleAndWatchdog(4),
logic(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Control of relay:
-1 - flip between on(1) and off(0)
0 - manual off
1 - manual on
2 - watchdog
3 - schedule
4 - both schedule and watchdog (while switched on by schedule)
5 - logic"
::={npRelayEntry 2}
npRelayStartReset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Write 1 to start reset (switch relay off for some time)"
::={npRelayEntry 3}
npRelayMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Relay memo"
::={npRelayEntry 6}
npRelayState OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Actual relay state at the moment,
regardless of source of control.
0 - relay is off
1 - relay is on"
::={npRelayEntry 15}
-- npRelayPowered OBJECT-TYPE
-- SYNTAX INTEGER {
-- no(0),
-- yes(1)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "AC presence on output.
-- 0 - no AC dew to relay switched off or no ac on input
-- 1 - AC is present"
-- ::={npRelayEntry 16}
npThermo OBJECT IDENTIFIER::={lightcom 8800}
npThermoTable OBJECT-TYPE
SYNTAX SEQUENCE OF NpThermoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Thermo Sensors Table"
::= { npThermo 1 }
npThermoEntry OBJECT-TYPE
SYNTAX NpThermoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Thermo Sensors Table Row"
INDEX { npThermoSensorN }
::= { npThermoTable 1 }
NpThermoEntry ::= SEQUENCE {
npThermoSensorN INTEGER,
npThermoValue INTEGER,
npThermoStatus INTEGER,
npThermoLow INTEGER,
npThermoHigh INTEGER,
npThermoMemo DisplayString,
npThermoValuePrecise FixedPoint1000
}
npThermoSensorN OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The id of temperature sensor, 1 to 8"
::= { npThermoEntry 1 }
npThermoValue OBJECT-TYPE
SYNTAX INTEGER (-60..280)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature, deg.C"
::= { npThermoEntry 2 }
npThermoStatus OBJECT-TYPE
SYNTAX INTEGER {
failed(0),
low(1),
norm(2),
high(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature status (0=fault, 1=underheat, 2=normal, 3=overheat)"
::= { npThermoEntry 3 }
npThermoLow OBJECT-TYPE
SYNTAX INTEGER (-60..280)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Bottom margin of normal temperature range, deg.C"
::= { npThermoEntry 4 }
npThermoHigh OBJECT-TYPE
SYNTAX INTEGER (-60..280)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Top margin of normal temperature range, deg.C"
::= { npThermoEntry 5 }
npThermoMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "T channel memo"
::= { npThermoEntry 6 }
npThermoValuePrecise OBJECT-TYPE
SYNTAX FixedPoint1000
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature, deg.C, with fractional part 3 digits after point"
::= { npThermoEntry 7 }
npThermoTraps OBJECT IDENTIFIER::={npThermo 2}
npThermoTrapPrefix OBJECT IDENTIFIER::={npThermoTraps 0}
npThermoTrapSensorN OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The id of temperature sensor, 1 to 8"
::= { npThermoTraps 1 }
npThermoTrapValue OBJECT-TYPE
SYNTAX INTEGER (-60..280)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature, deg.C"
::= { npThermoTraps 2 }
npThermoTrapStatus OBJECT-TYPE
SYNTAX INTEGER {
failed(0),
low(1),
norm(2),
high(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature status (0=fault, 1=underheat, 2=normal, 3=overheat)"
::= { npThermoTraps 3 }
npThermoTrapLow OBJECT-TYPE
SYNTAX INTEGER (-60..280)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Bottom margin of normal temperature range, deg.C"
::= { npThermoTraps 4 }
npThermoTrapHigh OBJECT-TYPE
SYNTAX INTEGER (-60..280)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Top margin of normal temperature range, deg.C"
::= { npThermoTraps 5 }
npThermoTrapMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "T channel memo"
::= { npThermoTraps 6 }
npThermoTrap NOTIFICATION-TYPE
OBJECTS {
npThermoTrapSensorN,
npThermoTrapValue,
npThermoTrapStatus,
npThermoTrapLow,
npThermoTrapHigh,
npThermoTrapMemo
}
STATUS current
DESCRIPTION
"Status of Thermo sensor is changed (crossing of normal temp. range)"
::= { npThermoTrapPrefix 1 }
npIo OBJECT IDENTIFIER::={lightcom 8900}
npIoTable OBJECT-TYPE
SYNTAX SEQUENCE OF NpIoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Digital Input/output Table"
::= { npIo 1 }
npIoEntry OBJECT-TYPE
SYNTAX NpIoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Digital Input/output Table Row"
INDEX { npIoLineN }
::= { npIoTable 1 }
NpIoEntry ::= SEQUENCE {
npIoLineN INTEGER,
npIoLevelIn INTEGER,
npIoLevelOut INTEGER,
npIoMemo DisplayString,
npIoPulseCounter Counter32,
npIoSinglePulseDuration INTEGER,
npIoSinglePulseStart INTEGER
}
npIoLineN OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of IO line, from 1 to max supported"
::= { npIoEntry 1 }
npIoLevelIn OBJECT-TYPE
SYNTAX INTEGER (0..1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Input level, 0 or 1"
::= { npIoEntry 2 }
npIoLevelOut OBJECT-TYPE
SYNTAX INTEGER {
flip(-1),
low(0),
high(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Output level, 0 or 1.
Write -1 to flip output."
::= { npIoEntry 3 }
npIoMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IO line memo"
::= { npIoEntry 6 }
npIoPulseCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Pulse Counter on IO input line (counts positive fronts)
Write 0 to reset."
::= { npIoEntry 9 }
npIoSinglePulseDuration OBJECT-TYPE
SYNTAX INTEGER (100..25500)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set duration of single pulse on IO output line,
100ms to 25500ms, min. step is 100ms"
::= { npIoEntry 12 }
npIoSinglePulseStart OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Write 1 to start single pulse on IO output.
Output will be inverted for time, specified by npIoSinglePulseDuration"
::= { npIoEntry 13 }
npIoTraps OBJECT IDENTIFIER::={npIo 2}
npIoTrapPrefix OBJECT IDENTIFIER::={npIoTraps 0}
npIoTrapLineN OBJECT-TYPE
SYNTAX INTEGER (1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Trap data, Number of IO line"
::= { npIoTraps 1 }
npIoTrapLevelIn OBJECT-TYPE
SYNTAX INTEGER (0..1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Trap data, new Input level, 0 or 1"
::= { npIoTraps 2 }
npIoTrapMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Trap data, IO line memo"
::= { npIoTraps 6 }
npIoTrapLevelLegend OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Legend for current logic level on the IO line"
::= { npIoTraps 7 }
npIoTrap NOTIFICATION-TYPE
OBJECTS {
npIoTrapLineN,
npIoTrapLevelIn,
npIoTrapMemo,
npIoTrapLevelLegend
}
STATUS current
DESCRIPTION
"Input state of IO line is changed"
::= { npIoTrapPrefix 1 }
npCurLoop OBJECT IDENTIFIER::={lightcom 8300}
npCurLoopTable OBJECT-TYPE
SYNTAX SEQUENCE OF NpCurLoopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Current loop sensors Table"
::= { npCurLoop 1 }
npCurLoopEntry OBJECT-TYPE
SYNTAX NpCurLoopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Current loop sensors Table Row"
INDEX { npCurLoopN }
::= { npCurLoopTable 1 }
NpCurLoopEntry ::= SEQUENCE {
npCurLoopN INTEGER,
npCurLoopStatus INTEGER,
npCurLoopI INTEGER,
npCurLoopV INTEGER,
npCurLoopR INTEGER,
npCurLoopPower INTEGER
}
npCurLoopN OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of current loop, 1 to max supported"
::= { npCurLoopEntry 1 }
npCurLoopStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(0),
alert(1),
cut(2),
short(3),
notPowered(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of the loop
0=Normal, 1=Alert, 2=Cut, 3=Short, 4=Not Powered"
::= { npCurLoopEntry 2 }
npCurLoopI OBJECT-TYPE
SYNTAX INTEGER (0..99999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Loop current, mA"
::= { npCurLoopEntry 3 }
npCurLoopV OBJECT-TYPE
SYNTAX INTEGER (0..99999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Voltage drop on the loop, mV"
::= { npCurLoopEntry 4 }
npCurLoopR OBJECT-TYPE
SYNTAX INTEGER (0..99999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Resistance of the loop, Ohm"
::= { npCurLoopEntry 5 }
npCurLoopPower OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1),
cyclePower(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Control of loop power
0=Off, 1=On, 2=reset by off/on power"
::= { npCurLoopEntry 7 }
npCurLoopTraps OBJECT IDENTIFIER::={npCurLoop 2}
npCurLoopTrapPrefix OBJECT IDENTIFIER::={npCurLoopTraps 0}
npCurLoopTrapN OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of current loop, which status has changed"
::= { npCurLoopTraps 1 }
npCurLoopTrapStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(0),
alert(1),
cut(2),
short(3),
notPowered(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of the loop
0=Normal, 1=Alert, 2=Cut, 3=Short, 4=Not Powered"
::= { npCurLoopTraps 2 }
npCurLoopTrapI OBJECT-TYPE
SYNTAX INTEGER (0..99999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Loop current, mA"
::= { npCurLoopTraps 3 }
npCurLoopTrapV OBJECT-TYPE
SYNTAX INTEGER (0..99999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Voltage drop on the loop, mV"
::= { npCurLoopTraps 4 }
npCurLoopTrapR OBJECT-TYPE
SYNTAX INTEGER (0..99999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Resistance of the loop, Ohm"
::= { npCurLoopTraps 5 }
npCurLoopTrapPower OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Status of loop power
0=Off, 1=On"
::= { npCurLoopTraps 7 }
npCurLoopTrap NOTIFICATION-TYPE
OBJECTS {
npCurLoopTrapN,
npCurLoopTrapStatus,
npCurLoopTrapI,
npCurLoopTrapV,
npCurLoopTrapR,
npCurLoopTrapPower,
npTrapEmailTo
}
STATUS current
DESCRIPTION
"Status of current loop N has changed!"
::= { npCurLoopTrapPrefix 1 }
npSmoke OBJECT IDENTIFIER::={lightcom 8200}
npSmokeTable OBJECT-TYPE
SYNTAX SEQUENCE OF NpSmokeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Smoke Sensors Table"
::= { npSmoke 1 }
npSmokeEntry OBJECT-TYPE
SYNTAX NpSmokeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Smoke Sensors Table Row"
INDEX { npSmokeSensorN }
::= { npSmokeTable 1 }
NpSmokeEntry ::= SEQUENCE {
npSmokeSensorN INTEGER,
npSmokeStatus INTEGER,
npSmokePower INTEGER,
npSmokeReset INTEGER,
npSmokeMemo DisplayString
}
npSmokeSensorN OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The id of 1Wire Smoke sensor, 1 to 4"
::= { npSmokeEntry 1 }
npSmokeStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(0),
alarm(1),
off(4),
failed(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of Smoke sensor"
::= { npSmokeEntry 2 }
npSmokePower OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Controls power on Smoke sensor current loop"
::= { npSmokeEntry 3 }
npSmokeReset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Write 1 to switch off for approx. 10s to reset sensor"
::= { npSmokeEntry 4 }
npSmokeMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Smoke sensor memo"
::= { npSmokeEntry 6 }
npSmokeTraps OBJECT IDENTIFIER::={npSmoke 2}
npSmokeTrapPrefix OBJECT IDENTIFIER::={npSmokeTraps 0}
npSmokeTrapSensorN OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The id of 1Wire Smoke sensor, 1 to 4"
::= { npSmokeTraps 1 }
npSmokeTrapStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(0),
alarm(1),
off(4),
failed(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "New status of Smoke sensor"
::= { npSmokeTraps 2 }
npSmokeTrapMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Smoke sensor memo"
::= { npSmokeTraps 6 }
npSmokeTrap NOTIFICATION-TYPE
OBJECTS {
npSmokeTrapSensorN,
npSmokeTrapStatus,
npSmokeTrapMemo
}
STATUS current
DESCRIPTION
"Status of 1W Smoke sensor has changed"
::= { npSmokeTrapPrefix 1 }
npRelHumidity OBJECT IDENTIFIER::={lightcom 8400}
npRelHumTable OBJECT-TYPE
SYNTAX SEQUENCE OF NpRelHumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Humidity+Temperature Sensors Table"
::= { npRelHumidity 1 }
npRelHumEntry OBJECT-TYPE
SYNTAX NpRelHumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Humidity+Temperature Sensors Table Row"
INDEX { npRelHumN }
::= { npRelHumTable 1 }
NpRelHumEntry ::= SEQUENCE {
npRelHumN INTEGER,
npRelHumValue INTEGER,
npRelHumStatus INTEGER,
npRelHumTempValue INTEGER,
npRelHumTempStatus INTEGER,
npRelHumMemo DisplayString,
npRelHumSafeRangeHigh INTEGER,
npRelHumSafeRangeLow INTEGER,
npRelHumTempSafeRangeHigh INTEGER,
npRelHumTempSafeRangeLow INTEGER
}
npRelHumN OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of Humidity+Temperature sensor, 1 to max supported"
::= { npRelHumEntry 1 }
npRelHumValue OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Relative humidity value, %"
::= { npRelHumEntry 2 }
npRelHumStatus OBJECT-TYPE
SYNTAX INTEGER {
sensorFailed(0),
belowSafeRange(1),
inSafeRange(2),
aboveSafeRange(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of Relative Humiduty"
::= { npRelHumEntry 3 }
npRelHumTempValue OBJECT-TYPE
SYNTAX INTEGER (-60..200)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor temperature, deg.C"
::= { npRelHumEntry 4 }
npRelHumTempStatus OBJECT-TYPE
SYNTAX INTEGER {
sensorFailed(0),
belowSafeRange(1),
inSafeRange(2),
aboveSafeRange(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of Relative Humiduty"
::= { npRelHumEntry 5 }
npRelHumMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Memo/Location"
::= { npRelHumEntry 6 }
npRelHumSafeRangeHigh OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Relative Humidity safe range, top margin, %RH"
::= { npRelHumEntry 7 }
npRelHumSafeRangeLow OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Relative Humidity safe range, bottom margin, %RH"
::= { npRelHumEntry 8 }
npRelHumTempSafeRangeHigh OBJECT-TYPE
SYNTAX INTEGER (-55..150)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature safe range, top margin, deg.C"
::= { npRelHumEntry 9 }
npRelHumTempSafeRangeLow OBJECT-TYPE
SYNTAX INTEGER (-55..150)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Temperature safe range, bottom margin, deg.C"
::= { npRelHumEntry 10 }
npRelHumTrapData OBJECT IDENTIFIER::={npRelHumidity 3}
npRelHumTrapDataN OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of Humidity+Temperature sensor, 1 to max supported"
::= { npRelHumTrapData 1 }
npRelHumTrapDataValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor humidity, %RH, or temperature, deg.C"
::= { npRelHumTrapData 2 }
npRelHumTrapDataStatus OBJECT-TYPE
SYNTAX INTEGER {
sensorFailed(0),
belowSafeRange(1),
inSafeRange(2),
aboveSafeRange(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of humidity or temperature"
::= { npRelHumTrapData 4 }
npRelHumTrapDataMemo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Sensor Memo/Location"
::= { npRelHumTrapData 6 }
npRelHumTrapDataSafeRangeHigh OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Relative Humidity safe range, top margin, %RH or deg.C"
::= { npRelHumTrapData 7 }
npRelHumTrapDataSafeRangeLow OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Relative Humidity safe range, bottom margin, %RH or deg.C"
::= { npRelHumTrapData 8 }
npRelHumTrap OBJECT IDENTIFIER::={npRelHumidity 6}
npRelHumTrapAllEvents OBJECT IDENTIFIER::={npRelHumTrap 127}
npRelHumTrapTemp OBJECT IDENTIFIER::={npRelHumidity 7}
npRelHumTrapTempAllEvents OBJECT IDENTIFIER::={npRelHumTrapTemp 127}
npRelHumTrapAllChannels NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Status of Humidity has changed!"
::= { npRelHumTrapAllEvents 99 }
npRelHumTrapAboveSafe NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Humidity above the Safe range"
::= { npRelHumTrap 103 }
npRelHumTrapSafe NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Humidity in the Safe range"
::= { npRelHumTrap 102 }
npRelHumTrapBelowSafe NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Humidity below the Safe range"
::= { npRelHumTrap 101 }
npRelHumTrapFail NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Rel.Humidity sensor failed!"
::= { npRelHumTrap 100 }
npRelHumTrapTempAllChannels NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Status of Temperature has changed!"
::= { npRelHumTrapTempAllEvents 99 }
npRelHumTrapTempAboveSafe NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Temperature above the Safe range"
::= { npRelHumTrapTemp 103 }
npRelHumTrapTempSafe NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Temperature in the Safe range"
::= { npRelHumTrapTemp 102 }
npRelHumTrapTempBelowSafe NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Temperature below the Safe range"
::= { npRelHumTrapTemp 101 }
npRelHumTrapTempFail NOTIFICATION-TYPE
OBJECTS {
npRelHumTrapDataN,
npRelHumTrapDataStatus,
npRelHumTrapDataValue,
npRelHumTrapDataMemo,
npRelHumTrapDataSafeRangeHigh,
npRelHumTrapDataSafeRangeLow
}
STATUS current
DESCRIPTION
"Sensor failed!"
::= { npRelHumTrapTemp 100 }
npGsm OBJECT IDENTIFIER::={lightcom 3800}
npGsmInfo OBJECT IDENTIFIER::={npGsm 1}
npGsmFailed OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
failed (1),
fatalError (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Firmware's GSM module status"
::= { npGsmInfo 1 }
npGsmRegistration OBJECT-TYPE
SYNTAX INTEGER {
impossible (0),
homeNetwork (1),
searching (2),
denied (3),
unknown (4),
roaming (5),
infoUpdate (255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of modem registration in GSM network (AT+CREG? result)"
::= { npGsmInfo 2 }
npGsmStrength OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "GSM signal strength.
0..31 = 0..100%,
99 = unknown or n/a,
255 = updating info"
::= { npGsmInfo 3 }
npGsmSendSmsUtf8 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Send arbitrary SMS.
Format: [phone_number,phone_number,...] Message
One to four destination phone numbers
If [] and numbers omitted, mesagge will be sent to preset numbers from SMS setup
Cyrillic characters must be in UTF8 encoding."
::= { npGsmInfo 9 }
npGsmSendSmsWin1251 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Send arbitrary SMS.
Format: [phone_number,phone_number,...] Message
One to four destination phone numbers
If [] and numbers omitted, mesagge will be sent to preset numbers from SMS setup
Cyrillic characters must be in Win1251 encoding."
::= { npGsmInfo 10 }
npGsmTraps OBJECT IDENTIFIER::={npGsm 2}
npGsmTrapPrefix OBJECT IDENTIFIER::={npGsmTraps 0}
npGsmTrap NOTIFICATION-TYPE
OBJECTS {
npGsmFailed,
npGsmRegistration,
npGsmStrength
}
STATUS current
DESCRIPTION
"GSM modem or SMS firmware problems"
::= { npGsmTrapPrefix 1 }
npIr OBJECT IDENTIFIER::={lightcom 7900}
npIrCtrl OBJECT IDENTIFIER::={npIr 1}
npIrPlayCmd OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Write IR command number to send IR command"
::= { npIrCtrl 1 }
npIrReset OBJECT-TYPE
SYNTAX INTEGER (0..1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Write 1 to reset IR transiever.
After reset, send IR command and check npIrStatus."
::= { npIrCtrl 2 }
npIrStatus OBJECT-TYPE
SYNTAX INTEGER {
commandCompleted (0),
protocolError (1),
commandAccepted (2),
errorUnknown (16),
errorBadNumber (17),
errorEmptyRecord (18),
errorFlashChip (19),
errorTimeout (20),
errorExtBusBusy (21)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IR transiever status"
::= { npIrCtrl 3 }
npReboot OBJECT IDENTIFIER::={ lightcom 911 }
npSoftReboot OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Write 1 to reboot device after
current operations completition"
::= { npReboot 1 }
npResetStack OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Write 1 to re-initialize network
stack"
::= { npReboot 2 }
npForcedReboot OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Write 1 to immediate forced reboot"
::= { npReboot 3 }
END
|