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
|
-- File Name : DAHUA-SNMP-MIB
-- Date : 2014-01-07 15:27:57
-- Author : NetWork Team(feng_chengxiang@dahuatech.com)
--
-- Dahua enterprise MIB tree
--
DAHUA-SNMP-MIB DEFINITIONS ::= BEGIN
IMPORTS
TEXTUAL-CONVENTION, DisplayString, TruthValue, RowStatus
FROM SNMPv2-TC
OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, Integer32, Opaque, enterprises, TimeTicks, IpAddress
FROM SNMPv2-SMI;
device MODULE-IDENTITY
LAST-UPDATED "201405101112Z"
ORGANIZATION "Organization"
CONTACT-INFO "
Author : NetWork Team
Phone :
Email : feng_chengxiang@dahuatech.com
Address : NO.1187 BinAn Road,Binjiang District, Hangzhou,P.R.China
Postalcode : 310053"
DESCRIPTION "add OID: recordConfig , recordPlanInfo , recordMainStreamInfoTable, recordExtraStreamInfoTable, physicalVolumeTotal, physicalVolumeFree,
recordEvent, recordMainStreamEvent, recordExtraStreamEvent, snmpStatusEvent, snmpStatus, physicalVolumeThreshold"
REVISION "201404281112Z"
DESCRIPTION "add OID: cpuUsage, lastestEvent, storageInfo, physicalVolume, raidVolume, storageFailureEvent,
storageFailureEvent, storageLowSpaceEvent, storageInOutEvent, storageSMARTAbnormityEvent"
REVISION "201402141112Z"
DESCRIPTION " add OID : dahuaSnmpTrap, videoMotionEvent, videoBlindEvent, videoLossEvent, localAlarmEvent, action, currentTime"
REVISION "201401071427Z"
DESCRIPTION "This file defines the private Dahua SNMP MIB extensions for all the device."
::= { dahua 2 }
org OBJECT IDENTIFIER ::= { iso 3 }
dod OBJECT IDENTIFIER ::= { org 6 }
internet OBJECT IDENTIFIER ::= { dod 1 }
private OBJECT IDENTIFIER ::= { internet 4 }
enterprises OBJECT IDENTIFIER ::= { private 1 }
dahua OBJECT IDENTIFIER ::= { enterprises 1004849 }
systemInfo OBJECT IDENTIFIER ::= { device 1 }
versionInfo OBJECT IDENTIFIER ::= { systemInfo 1 }
productInfo OBJECT IDENTIFIER ::= { systemInfo 2 }
networkInfo OBJECT IDENTIFIER ::= { device 2 }
networkPort OBJECT IDENTIFIER ::= { networkInfo 1 }
tcpIpInfo OBJECT IDENTIFIER ::= { networkInfo 2 }
configInfo OBJECT IDENTIFIER ::= { device 3 }
encodeConfig OBJECT IDENTIFIER ::= { configInfo 1 }
eventConfig OBJECT IDENTIFIER ::= { configInfo 2 }
videoDetectConfig OBJECT IDENTIFIER ::= { eventConfig 1 }
alarmConfig OBJECT IDENTIFIER ::= { eventConfig 2 }
exceptionConfig OBJECT IDENTIFIER ::= { eventConfig 3 }
recordConfig OBJECT IDENTIFIER ::= { configInfo 3 }
recordPlanInfo OBJECT IDENTIFIER ::= { recordConfig 1 }
storageInfo OBJECT IDENTIFIER ::= { device 4 }
products OBJECT IDENTIFIER ::= { device 10 }
dvr OBJECT IDENTIFIER ::= { products 1 }
nvr OBJECT IDENTIFIER ::= { products 2 }
ipc OBJECT IDENTIFIER ::= { products 3 }
notification OBJECT IDENTIFIER ::= { device 11 }
multiMediaEvent OBJECT IDENTIFIER ::= { notification 11 }
alarmEvent OBJECT IDENTIFIER ::= { notification 12 }
storageEvent OBJECT IDENTIFIER ::= { notification 13 }
recordEvent OBJECT IDENTIFIER ::= { notification 14 }
dahuaSnmpTrap OBJECT IDENTIFIER ::= { device 12 }
-- systemInfo
-- versionInfo
-- softwareRevision
-- hardwareRevision
-- productInfo
-- cpuUsage
-- lastestEvent
--configInfo
-- encodeConfig
--mainStreamInfo
--RegularStreamInfoTable
--mdStreamInfoTable
--alarmStreamInfoTable
--extraStreamInfo
--extra1StreamInfoTable
--extra2StreamInfoTable
--extra3StreamInfoTable
softwareRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The software version"
::= { versionInfo 1 }
hardwareRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The hardware version"
::= { versionInfo 2 }
--productInfo
videoChannel OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of video channel."
::= { productInfo 1 }
alarmInput OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of alarm input."
::= { productInfo 2 }
alarmOutput OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of alarm output."
::= { productInfo 3 }
serialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The device serial number."
::= { productInfo 4 }
systemVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The system Version of device."
::= { productInfo 5 }
deviceType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The device mode."
::= { productInfo 6 }
deviceClass OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The device class."
::= { productInfo 7 }
deviceStatus OBJECT-TYPE
SYNTAX INTEGER{bad(0), good(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of device is bad(0) or good(1)."
::= { productInfo 8 }
machineName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the device."
::= { productInfo 9 }
cpuUsage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Usage of the CPU."
::= { systemInfo 3 }
lastestEvent OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The type of the lastest event."
::= { systemInfo 4 }
encodeNo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of encode channels which are available."
::= { systemInfo 5 }
-- networkInfo
-- networkPort
tcpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "TCP port."
::= { networkPort 1 }
udpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "UDP port."
::= { networkPort 2 }
httpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "HTTP port."
::= { networkPort 3 }
rtspPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "RTSP port."
::= { networkPort 4 }
maxConnectNum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of max connect."
::= { networkPort 5 }
httpsPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "HTTPS port."
::= { networkPort 6 }
-- tcpIpInfo
getIpmode OBJECT-TYPE
SYNTAX INTEGER{static(0), DHCP(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode of getting IP, value: 0=static, 1=DHCP."
::= { tcpIpInfo 1 }
macAddr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The address of MAC."
::= { tcpIpInfo 2 }
ipVersion OBJECT-TYPE
SYNTAX INTEGER{IPv4(0), IPv6(1)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The version of IP, value: 0=IPv4, 1=IPv6."
::= { tcpIpInfo 3 }
subnetMast OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The infomation of subnet mast."
::= { tcpIpInfo 4 }
defaultGateway OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The infomation of default gateway."
::= { tcpIpInfo 5 }
preferredDns OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The infomation of the preferred DNS service address."
::= { tcpIpInfo 6 }
alternateDns OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The infomation of the alternate DNS service address."
::= { tcpIpInfo 7 }
ipAddr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The address of IP."
::= { tcpIpInfo 8 }
--configInfo
-- encodeConfig
--mainStreamInfo
--RegularStreamInfoTable
-- regularChannelNo
-- regularCompression
-- regularFPS
-- regularResolution
--mdStreamInfoTable
-- mdChannelNo
-- mdCompression
-- mdFPS
-- mdResolution
--alarmStreamInfoTable
-- alarmChannelNo
-- alarmCompression
-- alarmFPS
-- alarmResolution
--extraStreamInfo
--extra1StreamInfoTable
--extra2StreamInfoTable
--extra3StreamInfoTable
mainStreamInfo OBJECT IDENTIFIER ::= { encodeConfig 1 }
extraStreamInfo OBJECT IDENTIFIER ::= { encodeConfig 2 }
--mainStreamInfo
-- regularStreamInfoTable
-- regularStreamInfoTableEntry
-- regularChannelNo
-- regularCompression
-- regularFPS
-- regularResolution
regularStreamInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF regularStreamInfoTableEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel"
::= { mainStreamInfo 1 }
regularStreamInfoTableEntry OBJECT-TYPE
SYNTAX regularStreamInfoTableEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { regularChannelNo }
::= { regularStreamInfoTable 1 }
regularStreamInfoTableEntry ::= SEQUENCE {
regularChannelNo INTEGER,
regularCompression DisplayString,
regularFPS INTEGER,
regularResolution DisplayString,
}
regularChannelNo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of main channel."
::= { regularStreamInfoTableEntry 1 }
regularCompression OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The compression mode of the main channel which stream-type is the regular."
::= { regularStreamInfoTableEntry 2 }
regularFPS OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "compression mode of the main channel which stream-type is the move-detection"
::= { regularStreamInfoTableEntry 3 }
regularResolution OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "compression mode of the main channel which stream-type is the alarm"
::= { regularStreamInfoTableEntry 4 }
--mainStreamInfo
-- mdStreamInfoTable
-- mdStreamInfoTableEntry
-- mdChannelNo
-- mdCompression
-- mdFPS
-- mdResolution
mdStreamInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF mdStreamInfoTableEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel"
::= { mainStreamInfo 2 }
mdStreamInfoTableEntry OBJECT-TYPE
SYNTAX mdStreamInfoTableEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { mdChannelNo }
::= { mdStreamInfoTable 1 }
mdStreamInfoTableEntry ::= SEQUENCE {
mdChannelNo INTEGER,
mdCompression DisplayString,
mdFPS INTEGER,
mdResolution DisplayString,
}
mdChannelNo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of main channel."
::= { mdStreamInfoTableEntry 1 }
mdCompression OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The compression mode of the main channel which stream-type is the regular."
::= { mdStreamInfoTableEntry 2 }
mdFPS OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "compression mode of the main channel which stream-type is the move-detection"
::= { mdStreamInfoTableEntry 3 }
mdResolution OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "compression mode of the main channel which stream-type is the alarm"
::= { mdStreamInfoTableEntry 4 }
--mainStreamInfo
-- alarmStreamInfoTable
-- alarmStreamInfoTableEntry
-- alarmChannelNo
-- alarmCompression
-- alarmFPS
-- alarmResolution
alarmStreamInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF alarmStreamInfoTableEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel"
::= { mainStreamInfo 3 }
alarmStreamInfoTableEntry OBJECT-TYPE
SYNTAX alarmStreamInfoTableEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { alarmChannelNo }
::= { alarmStreamInfoTable 1 }
alarmStreamInfoTableEntry ::= SEQUENCE {
alarmChannelNo INTEGER,
alarmCompression DisplayString,
alarmFPS INTEGER,
alarmResolution DisplayString,
}
alarmChannelNo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of main channel."
::= { alarmStreamInfoTableEntry 1 }
alarmCompression OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The compression mode of the main channel which stream-type is the regular."
::= { alarmStreamInfoTableEntry 2 }
alarmFPS OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "compression mode of the main channel which stream-type is the move-detection"
::= { alarmStreamInfoTableEntry 3 }
alarmResolution OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "compression mode of the main channel which stream-type is the alarm"
::= { alarmStreamInfoTableEntry 4 }
-- extraStreamInfo
-- extra1StreamInfoTable
-- extra1ChannelNo
-- extra1Compression
-- extra1FPS
-- extra1Resolution
-- extra2StreamInfoTable
-- extra3StreamInfoTable
extra1StreamInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF extra1StreamInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the extra stream channel"
::= { extraStreamInfo 1 }
extra1StreamInfoEntry OBJECT-TYPE
SYNTAX extra1StreamInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { extra1ChannelNo }
::= { extra1StreamInfoTable 1 }
extra1StreamInfoEntry ::= SEQUENCE {
extra1ChannelNo INTEGER,
extra1Compression DisplayString,
extra1FPS INTEGER,
extra1Resolution DisplayString,
}
extra1ChannelNo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "extra channel number"
::= { extra1StreamInfoEntry 1 }
extra1Compression OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "compression mode of the extra channel which stream-type is the first-extra"
::= { extra1StreamInfoEntry 2 }
extra1FPS OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "FPS of the extra channel which stream-type is the first-extra"
::= { extra1StreamInfoEntry 3 }
extra1Resolution OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS write-only
STATUS current
DESCRIPTION "resolution type of the extra channel which stream-type is the first-extra"
::= { extra1StreamInfoEntry 4 }
-- extra2StreamInfoTable
-- extra2ChannelNo
-- extra2Compression
-- extra2FPS
-- extra2Resolution
-- extra2StreamInfoTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF extra2StreamInfoEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "infomation of the extra stream channel"
-- ::= { extraStreamInfo 2 }
-- extra2StreamInfoEntry OBJECT-TYPE
-- SYNTAX extra2StreamInfoEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "infomation of the main stream channel list"
-- INDEX { extra2ChannelNo }
-- ::= { extra2StreamInfoTable 1 }
-- extra2StreamInfoEntry ::= SEQUENCE {
-- extra2ChannelNo INTEGER,
-- extra2Compression DisplayString,
-- extra2FPS INTEGER,
-- extra2Resolution DisplayString,
-- }
-- extra2ChannelNo OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "extra channel number"
-- ::= { extra2StreamInfoEntry 1 }
-- extra2Compression OBJECT-TYPE
-- SYNTAX DisplayString
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "compression mode of the extra channel which stream-type is the first-extra"
-- ::= { extra2StreamInfoEntry 2 }
-- extra2FPS OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "FPS of the extra channel which stream-type is the first-extra"
-- ::= { extra2StreamInfoEntry 3 }
-- extra2Resolution OBJECT-TYPE
-- SYNTAX DisplayString
-- MAX-ACCESS write-only
-- STATUS current
-- DESCRIPTION "resolution type of the extra channel which stream-type is the first-extra"
-- ::= { extra2StreamInfoEntry 4 }
-- extra3StreamInfoTable
-- extra3ChannelNo
-- extra3Compression
-- extra3FPS
-- extra3Resolution
-- extra3StreamInfoTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF extra3StreamInfoEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "infomation of the extra stream channel"
-- ::= { extraStreamInfo 3 }
-- extra3StreamInfoEntry OBJECT-TYPE
-- SYNTAX extra3StreamInfoEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "infomation of the main stream channel list"
-- INDEX { extra3ChannelNo }
-- ::= { extra3StreamInfoTable 1 }
-- extra3StreamInfoEntry ::= SEQUENCE {
-- extra3ChannelNo INTEGER,
-- extra3Compression DisplayString,
-- extra3FPS INTEGER,
-- extra3Resolution DisplayString,
-- }
-- extra3ChannelNo OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "extra channel number"
-- ::= { extra3StreamInfoEntry 1 }
-- extra3Compression OBJECT-TYPE
-- SYNTAX DisplayString
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "compression mode of the extra channel which stream-type is the first-extra"
-- ::= { extra3StreamInfoEntry 2 }
-- extra3FPS OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "FPS of the extra channel which stream-type is the first-extra"
-- ::= { extra3StreamInfoEntry 3 }
-- extra3Resolution OBJECT-TYPE
-- SYNTAX DisplayString
-- MAX-ACCESS write-only
-- STATUS current
-- DESCRIPTION "resolution type of the extra channel which stream-type is the first-extra"
-- ::= { extra3StreamInfoEntry 4 }
--eventConfig
--videoDetectConfig
--videoMotionInfoTable
--videoLossInfoTable
--videoBlindInfoTable
--alarmConfig
--localAlarmInfoTable
--networkAlarmInfoTable
--exceptionConfig
videoMotionInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF videoMotionInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the extra stream channel"
::= { videoDetectConfig 1 }
videoMotionInfoEntry OBJECT-TYPE
SYNTAX videoMotionInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { videoMotionIndex }
::= { videoMotionInfoTable 1 }
videoMotionInfoEntry ::= SEQUENCE {
videoMotionIndex INTEGER,
}
videoMotionIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { videoMotionInfoEntry 1 }
videoLossInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF videoLossInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the extra stream channel"
::= { videoDetectConfig 2 }
videoLossInfoEntry OBJECT-TYPE
SYNTAX videoLossInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { videoLossIndex }
::= { videoLossInfoTable 1 }
videoLossInfoEntry ::= SEQUENCE {
videoLossIndex INTEGER,
}
videoLossIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { videoLossInfoEntry 1 }
videoBlindInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF videoBlindInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the extra stream channel"
::= { videoDetectConfig 3 }
videoBlindInfoEntry OBJECT-TYPE
SYNTAX videoBlindInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { videoBlindIndex }
::= { videoBlindInfoTable 1 }
videoBlindInfoEntry ::= SEQUENCE {
videoBlindIndex INTEGER,
}
videoBlindIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { videoBlindInfoEntry 1 }
--alarmConfig
--localAlarmInfoTable
--networkAlarmInfoTable
localAlarmInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF localAlarmInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the extra stream channel"
::= { alarmConfig 1 }
localAlarmInfoEntry OBJECT-TYPE
SYNTAX localAlarmInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { localAlarmIndex }
::= { localAlarmInfoTable 1 }
localAlarmInfoEntry ::= SEQUENCE {
localAlarmIndex INTEGER,
}
localAlarmIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { localAlarmInfoEntry 1 }
networkAlarmInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF networkAlarmInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the extra stream channel"
::= { alarmConfig 2 }
networkAlarmInfoEntry OBJECT-TYPE
SYNTAX networkAlarmInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { networkAlarmIndex }
::= { networkAlarmInfoTable 1 }
networkAlarmInfoEntry ::= SEQUENCE {
networkAlarmIndex INTEGER,
}
networkAlarmIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { networkAlarmInfoEntry 1 }
--recordPlanInfo
--recordMainStream
--recordExtraStream
recordMainStreamInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF recordMainStreamInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the extra stream channel"
::= { recordPlanInfo 1 }
recordMainStreamInfoEntry OBJECT-TYPE
SYNTAX recordMainStreamInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "config infomation of the main stream record channel list"
INDEX { recordMainChannelIndex }
::= { recordMainStreamInfoTable 1 }
recordMainStreamInfoEntry ::= SEQUENCE {
recordMainChannelIndex INTEGER,
-- recordMainChannelType INTEGER(ALL{0..6})
}
recordMainChannelIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { recordMainStreamInfoEntry 1 }
-- recordMainChannelType OBJECT-TYPE
-- SYNTAX INTEGER{regular(0),md(1),alarm(2),regularAndMd(3),regularAndAlarm(4),mdAndAlarm(5), all(6)}
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION ""
-- ::= { recordMainStreamInfoEntry 2 }
-- recordExtraStreamInfoTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF recordExtraStreamInfoEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "infomation of the extra stream channel"
-- ::= { recordPlanInfo 2 }
-- recordExtraStreamInfoEntry OBJECT-TYPE
-- SYNTAX recordExtraStreamInfoEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "config infomation of the main stream record channel list"
-- INDEX { recordExtraChannelIndex }
-- ::= { recordExtraStreamInfoTable 1 }
-- recordExtraStreamInfoEntry ::= SEQUENCE {
-- recordExtraChannelIndex INTEGER,
-- recordExtraChannelType INTEGER(ALL{0})
-- }
-- recordExtraChannelIndex OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION ""
-- ::= { recordExtraStreamInfoEntry 1 }
-- recordExtraChannelType OBJECT-TYPE
-- SYNTAX INTEGER{all(0)}
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION ""
-- ::= { recordExtraStreamInfoEntry 2 }
-- storageInfo
--physicalVolume
--raidVolume
--
physicalVolumeInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF physicalVolumeInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the extra stream channel"
::= { storageInfo 1 }
physicalVolumeInfoEntry OBJECT-TYPE
SYNTAX physicalVolumeInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "infomation of the main stream channel list"
INDEX { physicalVolumeIndex }
::= { physicalVolumeInfoTable 1 }
physicalVolumeInfoEntry ::= SEQUENCE {
physicalVolumeIndex INTEGER,
physicNo INTEGER,
logicNo INTEGER,
physicalVolumeName DisplayString,
physicalVolumeStatus DisplayString,
--physicalVolumeUsedPercent INTEGER(ALL{0..100}),
--physicalVolumeTotal Counter64,
--physicalVolumeFree Counter64,
}
physicalVolumeIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { physicalVolumeInfoEntry 1 }
physicNo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { physicalVolumeInfoEntry 2 }
logicNo OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { physicalVolumeInfoEntry 3 }
physicalVolumeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { physicalVolumeInfoEntry 4 }
physicalVolumeStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { physicalVolumeInfoEntry 5 }
--physicalVolumeUsedPercent OBJECT-TYPE
-- SYNTAX INTEGER(ALL{0..100})
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION ""
-- ::= { physicalVolumeInfoEntry 6 }
--physicalVolumeTotal OBJECT-TYPE
-- SYNTAX Counter64
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION ""
-- ::= { physicalVolumeInfoEntry 7 }
--physicalVolumeFree OBJECT-TYPE
-- SYNTAX Counter64
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION ""
-- ::= { physicalVolumeInfoEntry 8 }
--raidVolumeInfoTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF raidVolumeInfoEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "infomation of the extra stream channel"
-- ::= { storageInfo 2 }
-- raidVolumeInfoEntry OBJECT-TYPE
-- SYNTAX raidVolumeInfoEntry
-- ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "infomation of the main stream channel list"
-- INDEX { raidVolumeIndex }
-- ::= { raidVolumeInfoTable 1 }
-- raidVolumeInfoEntry ::= SEQUENCE {
-- raidVolumeIndex INTEGER,
-- }
-- raidVolumeIndex OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION ""
-- ::= { raidVolumeInfoEntry 1 }
--notification
snmpStatusEvent NOTIFICATION-TYPE
OBJECTS { snmpStatus }
STATUS current
DESCRIPTION
"A snmp work status Event."
::= { notification 2 }
videoMotionEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, videoMotionIndex}
STATUS current
DESCRIPTION
"video motion Event."
::= { multiMediaEvent 1 }
videoBlindEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, videoBlindIndex}
STATUS current
DESCRIPTION
"video motion Event."
::= { multiMediaEvent 2 }
videoLossEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, videoLossIndex}
STATUS current
DESCRIPTION
"video motion Event."
::= { multiMediaEvent 3 }
localAlarmEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, localAlarmIndex}
STATUS current
DESCRIPTION
"video motion Event."
::= { alarmEvent 1 }
storageFailureEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, logicNo}
STATUS current
DESCRIPTION
"storage failure Event."
::= { storageEvent 1 }
storageLowSpaceEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, logicNo}
STATUS current
DESCRIPTION
"storage full Event. if all storages are full, logicNo= 0 ."
::= { storageEvent 2 }
storageInOutEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, logicNo}
STATUS current
DESCRIPTION
"storage in-out Event."
::= { storageEvent 3 }
storageSMARTAbnormityEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, logicNo}
STATUS current
DESCRIPTION
"storage SMART abnormity Event."
::= { storageEvent 4 }
recordMainStreamEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, recordMainChannelIndex}
STATUS current
DESCRIPTION
"record MainStream Event."
::= { recordEvent 1 }
recordExtraStreamEvent NOTIFICATION-TYPE
OBJECTS {action, currentTime, recordExtraChannelIndex}
STATUS current
DESCRIPTION
"record ExtraStream Event."
::= { recordEvent 2 }
action OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "trap info "
::= { dahuaSnmpTrap 1 }
currentTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "trap info "
::= { dahuaSnmpTrap 2 }
snmpStatus OBJECT-TYPE
SYNTAX INTEGER{start(0), stop(1)}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "Status of snmp is start(0) or stop(1)."
::= { dahuaSnmpTrap 3 }
physicalVolumeThreshold OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION ""
::= { dahuaSnmpTrap 4 }
END
|