-
Notifications
You must be signed in to change notification settings - Fork 14
/
HUAWEI-SECURITY-STAT-MIB
3271 lines (2708 loc) · 90.6 KB
/
HUAWEI-SECURITY-STAT-MIB
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
--
-- HUAWEI-SECURITY-STAT-MIB.mib
-- MIB generated by MG-SOFT Visual MIB Builder Version 4.0 Build 341
-- Wednesday, September 12, 2012 at 15:54:13
--
-- HUAWEI-SECURITY-STAT-MIB.mib
-- MIB generated by MG-SOFT Visual MIB Builder Version 4.0 Build 341
-- Friday, August 31, 2012 at 15:11:41
--
--
-- =================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description:
-- Reference:
-- Version: V1.27
-- History:
-- shaoyu,2009-03-12,<contents>
-- =================================================================
HUAWEI-SECURITY-STAT-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises
FROM RFC1155-SMI
OBJECT-GROUP
FROM SNMPv2-CONF
Integer32, Gauge32, Counter64, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC;
-- 1.3.6.1.4.1.2011.6.122.15.1
hwSecStatGlobal MODULE-IDENTITY
LAST-UPDATED "201708101920Z" -- Sem 14, 2016 at 19:22 GMT
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com"
DESCRIPTION
"
V1.20
The HUAWEI-SECSTAT-MIB contains objects to manage the security statistics for firewall product.
"
-- Revision history
REVISION "201708101920Z"
DESCRIPTION "V1.27 modify the hwSecStatTrapSlot and the hwSecStatPerfTrapCpuThreshold."
REVISION "201707111920Z"
DESCRIPTION "V1.26 add the SYNTAX of the hwSecStatFastSessOverThreshold and hwSecStatFastSessBelowThreshold node."
REVISION "201706291920Z"
DESCRIPTION "V1.24 modify trap node hwSecStatFragStaSessBelowThreshold ."
REVISION "201705091920Z"
DESCRIPTION "V1.23 modify the SYNTAX of the hwSecStatPerfMemUsage and hwSecStatPerfTotalMemUsage node."
REVISION "201704101920Z"
DESCRIPTION "V1.22 modify trap node."
REVISION "201702141920Z"
DESCRIPTION "V1.22 modify trap node."
REVISION "201611082300Z"
DESCRIPTION "V1.21 modify trap node."
REVISION "201611042314Z"
DESCRIPTION "V1.20 modify trap node."
REVISION "201611042314Z"
DESCRIPTION "V1.19 modify trap node name."
REVISION "201610222241Z"
DESCRIPTION "V1.18 add forword trap node."
REVISION "201608231641Z"
DESCRIPTION "V1.17 add a hwSecStatDeviceLoggedPackets table node."
REVISION "201608191400Z"
DESCRIPTION "V1.16 modify the hwSecStatSecPolicyRateTable table node."
REVISION "201603301730Z"
DESCRIPTION "V1.15 add a table node."
REVISION "201603301730Z"
DESCRIPTION "V1.14, add a table node."
REVISION "201603171730Z"
DESCRIPTION "V1.13, add a table node."
REVISION "201601151500Z"
DESCRIPTION "V1.12, modify the MAX-ACCESS of the hwSecStatSecHittedVsysName and hwSecStatSecHittedRuleName node ."
REVISION "201512111400Z"
DESCRIPTION "V1.11, modify the syntax type of the hwSecStatFragRate node from octet string to Integer32 ."
REVISION "201010090900Z"
DESCRIPTION "V1.00, completed the first draft."
REVISION "201408300900Z"
DESCRIPTION "V1.01, modifiy the MODULE-IDENTITY."
REVISION "201409280900Z"
DESCRIPTION "V1.02, add a table node."
REVISION "201412160900Z"
DESCRIPTION "V1.03, add a table node."
REVISION "201502110900Z"
DESCRIPTION "V1.04, add a table node."
REVISION "201502250900Z"
DESCRIPTION "V1.05, modify the description of the service-quality statistic node ."
REVISION "201503030900Z"
DESCRIPTION "V1.06, modify the description of the service-quality statistic node ."
REVISION "201503031700Z"
DESCRIPTION "V1.07, modify the MAX-ACCESS of the hwSecStatInterzoneSessTable node ."
REVISION "201505071500Z"
DESCRIPTION "V1.08, modify the type of the service-quality node ."
REVISION "201509152000Z"
DESCRIPTION "V1.09, modify the node of the hwSecStatPktRateObjects node ."
REVISION "201510101600Z"
DESCRIPTION "V1.10, modify the node of the hwSecStatPktRateObjects node ."
::= { hwSecStatMibObjects 1 }
--
-- Node definitions
--
-- 1.3.6.1.4.1.2011
huawei OBJECT IDENTIFIER ::= { enterprises 2011 }
-- 1.3.6.1.4.1.2011.6
huaweiUtility OBJECT IDENTIFIER ::= { huawei 6 }
-- 1.3.6.1.4.1.2011.6.122
hwSecurity OBJECT IDENTIFIER ::= { huaweiUtility 122 }
-- 1.3.6.1.4.1.2011.6.122.15
hwSecStatMibObjects OBJECT IDENTIFIER ::= { hwSecurity 15 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1
hwSecStatCfgObjects OBJECT IDENTIFIER ::= { hwSecStatGlobal 1 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.1
hwSecStatGlobalStatEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status indicate whether enable the global statistics."
DEFVAL { true }
::= { hwSecStatCfgObjects 1 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.2
hwSecStatGlobalPktScale OBJECT IDENTIFIER ::= { hwSecStatCfgObjects 2 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.2.1
hwSecStatTcpPktScale OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The percent of TCP packets.
The hwSecStatTcpPktScale + hwSecStatUdpPktScale + hwSecStatIcmpPktScale
must less than 100
"
::= { hwSecStatGlobalPktScale 1 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.2.2
hwSecStatUdpPktScale OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The percent of UDP packets.
The hwSecStatTcpPktScale + hwSecStatUdpPktScale + hwSecStatIcmpPktScale
must less than 100
"
::= { hwSecStatGlobalPktScale 2 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.2.3
hwSecStatIcmpPktScale OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The percent of ICMP packets.
The hwSecStatTcpPktScale + hwSecStatUdpPktScale + hwSecStatIcmpPktScale
must less than 100
"
::= { hwSecStatGlobalPktScale 3 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.2.4
hwSecStatAlteration OBJECT-TYPE
SYNTAX Integer32 (0..25)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The proportion of change in the packets scale."
::= { hwSecStatGlobalPktScale 4 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.2.5
hwSecStatCalcTime OBJECT-TYPE
SYNTAX Integer32 (0..14400)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The period of packet scale statistics, the unit is minute."
::= { hwSecStatGlobalPktScale 5 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.2.6
hwSecStatPktScaleSetDefault OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This OID is used for setting the packet scale configuration to default.
When you want to set the value to default, set this OID to 1.
"
::= { hwSecStatGlobalPktScale 6 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.3
hwSecStatGlobalSessNum OBJECT IDENTIFIER ::= { hwSecStatCfgObjects 3 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.3.1
hwSecStatTcpSessNumMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximun number of TCP session allowed."
::= { hwSecStatGlobalSessNum 1 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.3.2
hwSecStatTcpSessNumMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The minimum of TCP session.
when the number of TCP session in one system arrive the maximum allowed,
system would decrease the TCP session by some method,
once the number of tcp session in one system arrive the minumim,
system would stop decreasing the TCP session.
"
::= { hwSecStatGlobalSessNum 2 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.3.3
hwSecStatUdpSessNumMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximun number of UDP session allowed."
::= { hwSecStatGlobalSessNum 3 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.3.4
hwSecStatUdpSessNumMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The minimum of UDP session.
when the number of UDP session in one system arrive the maximum allowed,
system would decrease the UDP session by some method,
once the number of tcp session in one system arrive the minumim,
system would stop decreasing the UDP session.
"
::= { hwSecStatGlobalSessNum 4 }
-- 1.3.6.1.4.1.2011.6.122.15.1.1.3.5
hwSecStatGlobalSessSetDefault OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This OID is used for setting the global session number configuration to default.
When you want to set the value to default, set this OID to 1.
"
::= { hwSecStatGlobalSessNum 5 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2
hwSecStatMonitorObjects OBJECT IDENTIFIER ::= { hwSecStatGlobal 2 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1
hwSecStatMonitorGlobalSessFlow OBJECT IDENTIFIER ::= { hwSecStatMonitorObjects 1 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.1
hwSecStatMonTotalBootConnNum OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The total number of connection since device startup.
This number is increased only.
"
::= { hwSecStatMonitorGlobalSessFlow 1 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.2
hwSecStatMonPeakSessSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximun speed of session establishing since device startup."
::= { hwSecStatMonitorGlobalSessFlow 2 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.3
hwSecStatMonCurSessSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current speed of session establishing."
::= { hwSecStatMonitorGlobalSessFlow 3 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.4
hwSecStatMonTotalSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total session in the system currently."
::= { hwSecStatMonitorGlobalSessFlow 4 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.5
hwSecStatMonHalfConn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of incomplete session in system currently."
::= { hwSecStatMonitorGlobalSessFlow 5 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.6
hwSecStatMonTcpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of TCP sessions."
::= { hwSecStatMonitorGlobalSessFlow 6 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.7
hwSecStatMonUdpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of UDP sessions."
::= { hwSecStatMonitorGlobalSessFlow 7 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.8
hwSecStatMonIcmpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of ICMP sessions."
::= { hwSecStatMonitorGlobalSessFlow 8 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.9
hwSecStatMonSvrMapTblNum OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of server map."
::= { hwSecStatMonitorGlobalSessFlow 9 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.10
hwSecStatFragTblNum OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entry in fragment table."
::= { hwSecStatMonitorGlobalSessFlow 10 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.11
hwSecStatMonRcvIcmpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ICMP packets received by system."
::= { hwSecStatMonitorGlobalSessFlow 11 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.12
hwSecStatMonRcvIcmpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of ICMP packets received by system."
::= { hwSecStatMonitorGlobalSessFlow 12 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.13
hwSecStatMonRcvTcpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of TCP packets received by system."
::= { hwSecStatMonitorGlobalSessFlow 13 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.14
hwSecStatMonRcvTcpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of TCP packets received by system."
::= { hwSecStatMonitorGlobalSessFlow 14 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.15
hwSecStatMonRcvUdpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of UDP packets received by system."
::= { hwSecStatMonitorGlobalSessFlow 15 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.16
hwSecStatMonRcvUdpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of UDP packets received by system."
::= { hwSecStatMonitorGlobalSessFlow 16 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.17
hwSecStatMonRcvEtcPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of other type packets received by system."
::= { hwSecStatMonitorGlobalSessFlow 17 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.18
hwSecStatMonRcvEtcOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of other type packets received by system."
::= { hwSecStatMonitorGlobalSessFlow 18 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.19
hwSecStatMonPassIcmpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ICMP packets pass the system."
::= { hwSecStatMonitorGlobalSessFlow 19 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.20
hwSecStatMonPassIcmpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of ICMP packets pass the system."
::= { hwSecStatMonitorGlobalSessFlow 20 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.21
hwSecStatMonPassTcpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of TCP packets pass the system."
::= { hwSecStatMonitorGlobalSessFlow 21 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.22
hwSecStatMonPassTcpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of TCP packets pass the system."
::= { hwSecStatMonitorGlobalSessFlow 22 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.23
hwSecStatMonPassUdpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of UDP packets pass the system."
::= { hwSecStatMonitorGlobalSessFlow 23 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.24
hwSecStatMonPassUdpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of UDP packets pass the system."
::= { hwSecStatMonitorGlobalSessFlow 24 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.25
hwSecStatMonPassEtcPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of other type packets pass the system."
::= { hwSecStatMonitorGlobalSessFlow 25 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.26
hwSecStatMonPassEtcOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of other type packets pass the system."
::= { hwSecStatMonitorGlobalSessFlow 26 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.27
hwSecStatMonSynPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of SYN packets arriving the system."
::= { hwSecStatMonitorGlobalSessFlow 27 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.28
hwSecStatMonFinPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of FIN packets arriving the system."
::= { hwSecStatMonitorGlobalSessFlow 28 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.29
hwSecStatMonSynAckPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of SYN-ACK packets arriving the system."
::= { hwSecStatMonitorGlobalSessFlow 29 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.30
hwSecStatMonRstPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of RESET packets arriving the system."
::= { hwSecStatMonitorGlobalSessFlow 30 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.31
hwSecStatMonRcvFragPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of fragment packets arriving the system."
::= { hwSecStatMonitorGlobalSessFlow 31 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.32
hwSecStatMonRcvFragOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of fragment packets arriving the system."
::= { hwSecStatMonitorGlobalSessFlow 32 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.33
hwSecStatMonAllPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received packets by the device."
::= { hwSecStatMonitorGlobalSessFlow 33 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.34
hwSecStatMonAllOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received bytes by the device."
::= { hwSecStatMonitorGlobalSessFlow 34 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.35
hwSecStatClearGlobalSessFlowInfo OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Use this OID to clear the global session flow statistics information.
When you want to clear the information, set this OID to 1.
"
::= { hwSecStatMonitorGlobalSessFlow 35 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.1.36
hwSecStatHisSessNumMax OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximun number of session in history"
::= { hwSecStatMonitorGlobalSessFlow 36 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2
hwSecStatMonitorGlobalAppInfo OBJECT IDENTIFIER ::= { hwSecStatMonitorObjects 2 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.1
hwSecStatMonFtpSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of FTP sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 1 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.2
hwSecStatMonRcvFtpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of FTP packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 2 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.3
hwSecStatMonRcvFtpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of FTP packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 3 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.4
hwSecStatMonSmtpSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of SMTP sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 4 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.5
hwSecStatMonRcvSmtpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of SMTP packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 5 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.6
hwSecStatMonRcvSmtpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of SMTP packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 6 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.7
hwSecStatMonHttpSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of HTTP sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 7 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.8
hwSecStatMonRcvHttpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of HTTP packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 8 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.9
hwSecStatMonRcvHttpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of HTTP packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 9 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.10
hwSecStatMonH323Sessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of H323 sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 10 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.11
hwSecStatMonRcvH323Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of H323 packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 11 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.12
hwSecStatMonRcvH323Octs OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of H323 packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 12 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.13
hwSecStatMonRtspSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of RTSP sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 13 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.14
hwSecStatMonRcvRtspPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of RTSP packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 14 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.15
hwSecStatMonRcvRtspOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of RTSP packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 15 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.16
hwSecStatMonDnsSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of DNS sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 16 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.17
hwSecStatMonRcvDnsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of DNS packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 17 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.18
hwSecStatMonRcvDnsOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of DNS packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 18 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.19
hwSecStatMonGtpSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Gtp sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 19 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.20
hwSecStatMonRcvGtpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Gtp packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 20 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.21
hwSecStatMonRcvGtpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of Gtp packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 21 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.22
hwSecStatMonHwccSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Hwcc sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 22 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.23
hwSecStatMonRcvHwccPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Hwcc packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 23 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.24
hwSecStatMonRcvHwccOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of Hwcc packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 24 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.25
hwSecStatMonIlsSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Ils sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 25 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.26
hwSecStatMonRcvIlsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Ils packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 26 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.27
hwSecStatMonRcvIlsOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of Ils packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 27 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.28
hwSecStatMonMgcpSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Mgcp sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 28 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.29
hwSecStatMonRcvMgcpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Mgcp packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 29 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.30
hwSecStatMonRcvMgcpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of Mgcp packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 30 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.31
hwSecStatMonMmsSessions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Mms sessions in the system currently."
::= { hwSecStatMonitorGlobalAppInfo 31 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.32
hwSecStatMonRcvMmsPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Mms packets received by system."
::= { hwSecStatMonitorGlobalAppInfo 32 }
-- 1.3.6.1.4.1.2011.6.122.15.1.2.2.33
hwSecStatMonRcvMmsOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION