summaryrefslogtreecommitdiff
path: root/MIBS/huawei/HUAWEI-SECSTAT-MIB
blob: a535f0625f441bd41c9d4c89ef8aabdabe8afd40 (plain)
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
--  =================================================================
-- Copyright (C) 2003 by  HUAWEI TECHNOLOGIES. All rights reserved
-- 
-- Description: HUAWEI-SECSTAT-MIB
-- Reference:
-- Version:     V1.0
-- History:
--  V1.20 2005-05-30 Wei Rixi(22510) added hwSecStatIcmpSessNumMax etc. fields.
--  V1.00 2003-03-18 Yang Yinzhu(28193)  initial version
-- =================================================================

HUAWEI-SECSTAT-MIB DEFINITIONS ::= BEGIN

    IMPORTS
        OBJECT-GROUP            
            FROM SNMPv2-CONF            
        Integer32, Counter64, OBJECT-TYPE, MODULE-IDENTITY            
            FROM SNMPv2-SMI            
        TruthValue            
            FROM SNMPv2-TC
        hwDatacomm
            FROM HUAWEI-MIB;

    hwSECSTATCommon MODULE-IDENTITY 
        LAST-UPDATED "200304100900Z"        -- April 10, 2003 at 09:00 GMT
        ORGANIZATION 
            "Huawei Technologies co.,Ltd."
        CONTACT-INFO 
            "
            R&D BeiJing, Huawei Technologies co.,Ltd.
            Huawei Bld.,NO.3 Xinxi Rd.,
            Shang-Di Information Industry Base,
            Hai-Dian District Beijing P.R. China
            Zip:100085
            Http://www.huawei.com
            E-mail:support@huawei.com
            "
        DESCRIPTION 
            "
            V1.00
            The HUAWEI-SECSTAT-MIB contains objects to manage the security
            statistics for router and firewall product.
            "
        ::= { hwSECSTAT 1 }
    

    --
    -- Node definitions
    --
    -- 1.3.6.1.4.1.2011.5.25.11
    hwSECSTAT OBJECT IDENTIFIER ::= { hwDatacomm 11 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.1
    hwSecStatCfgObjects OBJECT IDENTIFIER ::= { hwSECSTATCommon 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.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.5.25.11.1.1.2
    hwSecStatGlobalPktScale OBJECT IDENTIFIER ::= { hwSecStatCfgObjects 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.1.1.3
    hwSecStatGlobalSessNum OBJECT IDENTIFIER ::= { hwSecStatCfgObjects 3 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.1.3.1
    hwSecStatTcpSessNumMax OBJECT-TYPE
        SYNTAX Integer32 (1..500000)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION
            "The maximun number of TCP session allowed."
        DEFVAL { 500000 }
        ::= { hwSecStatGlobalSessNum 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.1.3.2
    hwSecStatTcpSessNumMin OBJECT-TYPE
        SYNTAX Integer32 (1..500000)
        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.
            "
        DEFVAL { 500000 }
        ::= { hwSecStatGlobalSessNum 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.1.3.3
    hwSecStatUdpSessNumMax OBJECT-TYPE
        SYNTAX Integer32 (1..500000)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION
            "The maximun number of UDP session allowed."
        DEFVAL { 500000 }
        ::= { hwSecStatGlobalSessNum 3 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.1.3.4
    hwSecStatUdpSessNumMin OBJECT-TYPE
        SYNTAX Integer32 (1..500000)
        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.
            "
        DEFVAL { 500000 }
        ::= { hwSecStatGlobalSessNum 4 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.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.5.25.11.1.1.3.6
    hwSecStatIcmpSessNumMax OBJECT-TYPE
        SYNTAX Integer32 (1..500000)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION
        "The maximun number of ICMP session allowed."
        DEFVAL { 500000 }
        ::= { hwSecStatGlobalSessNum 6 }

    -- 1.3.6.1.4.1.2011.5.25.11.1.1.3.7
    hwSecStatIcmpSessNumMin OBJECT-TYPE
        SYNTAX Integer32 (1..500000)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION
        "
        The minimum of ICMP session.
        when the number of ICMP session in one system arrive the maximum allowed,
        system would decrease the ICMP session by some method, 
        once the number of ICMP session in one system arrive the minumim,
        system would stop decreasing the ICMP session.
        "
        DEFVAL { 500000 }
        ::= { hwSecStatGlobalSessNum 7 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.1.3.8
    hwSecStatTcpProxySessNumMax OBJECT-TYPE
        SYNTAX Integer32 (1..500000)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION
        "The maximun number of TcpProxy session allowed."
        DEFVAL { 500000 }
        ::= { hwSecStatGlobalSessNum 8 }

    -- 1.3.6.1.4.1.2011.5.25.11.1.1.3.9
    hwSecStatTcpProxySessNumMin OBJECT-TYPE
        SYNTAX Integer32 (1..500000)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION
        "
        The minimum of TcpProxy session.
        when the number of TcpProxy session in one system arrive the maximum allowed,
        system would decrease the TcpProxy session by some method, 
        once the number of TcpProxy session in one system arrive the minumim,
        system would stop decreasing the TcpProxy session.
        "
        DEFVAL { 500000 }
        ::= { hwSecStatGlobalSessNum 9 }

    -- 1.3.6.1.4.1.2011.5.25.11.1.2
    hwSecStatMonitorObjects OBJECT IDENTIFIER ::= { hwSECSTATCommon 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.1
    hwSecStatMonitorGlobalSessFlow OBJECT IDENTIFIER ::= { hwSecStatMonitorObjects 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.1.2.2
    hwSecStatMonitorGlobalAppInfo OBJECT IDENTIFIER ::= { hwSecStatMonitorObjects 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.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.5.25.11.1.2.2.16
    hwSecStatMonJavaAtckNum OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The number of JAVA attack detected by system."
        ::= { hwSecStatMonitorGlobalAppInfo 16 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.2.17
    hwSecStatClearGlobalAppInfo OBJECT-TYPE
        SYNTAX Integer32 (0..1)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION
            "
            Use this OID to clear the global application statistics information.
            When you want to clear the information, set this OID to 1.
            "
        ::= { hwSecStatMonitorGlobalAppInfo 17 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3
    hwSecStatMonitorGlobalDrop OBJECT IDENTIFIER ::= { hwSecStatMonitorObjects 3 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.1
    hwSecStatNoSessTblPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped for no session."
        ::= { hwSecStatMonitorGlobalDrop 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.2
    hwSecStatNoSessTblOcts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total bytes of packets dropped for no session."
        ::= { hwSecStatMonitorGlobalDrop 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.3
    hwSecStatSeqErrPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped for sequence number error."
        ::= { hwSecStatMonitorGlobalDrop 3 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.4
    hwSecStatSeqErrOcts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total bytes of packets dropped for sequence number error."
        ::= { hwSecStatMonitorGlobalDrop 4 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.5
    hwSecStatAclDenyNonIcmpPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of non ICMP packets denied for acl rule."
        ::= { hwSecStatMonitorGlobalDrop 5 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.6
    hwSecStatAclDenyNonIcmpOcts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total bytes of non ICMP packets denied for acl rule."
        ::= { hwSecStatMonitorGlobalDrop 6 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.7
    hwSecStatAclDenyIcmpPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of ICMP packets denied by acl rule."
        ::= { hwSecStatMonitorGlobalDrop 7 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.8
    hwSecStatAclDenyIcmpOcts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total bytes of ICMP packets denied by acl rule."
        ::= { hwSecStatMonitorGlobalDrop 8 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.9
    hwSecStatBlsDenyPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets denied by blacklist."
        ::= { hwSecStatMonitorGlobalDrop 9 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.10
    hwSecStatBlsDenyOcts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total bytes of packets denied by blacklist."
        ::= { hwSecStatMonitorGlobalDrop 10 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.11
    hwSecStatIcmpFloodDropPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped due to ICMP Flood attack."
        ::= { hwSecStatMonitorGlobalDrop 11 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.12
    hwSecStatIcmpFloodDropOcts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total bytes of packets dropped due to ICMP Flood attack."
        ::= { hwSecStatMonitorGlobalDrop 12 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.13
    hwSecStatUdpFloodDropPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped due to UDP Flood attack."
        ::= { hwSecStatMonitorGlobalDrop 13 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.14
    hwSecStatUdpFloodDropOcts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total bytes of packets dropped due to UDP Flood attack."
        ::= { hwSecStatMonitorGlobalDrop 14 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.15
    hwSecStatAlgDropPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped by application layer gateway."
        ::= { hwSecStatMonitorGlobalDrop 15 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.16
    hwSecStatAlgDropOcts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total bytes of packets dropped by application layer gateway."
        ::= { hwSecStatMonitorGlobalDrop 16 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.17
    hwSecStatIPVerErrDropPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped for IP version error."
        ::= { hwSecStatMonitorGlobalDrop 17 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.18
    hwSecStatIpCrcDropPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped for CRC error."
        ::= { hwSecStatMonitorGlobalDrop 18 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.19
    hwSecStatIpTTLDropPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped for TTL error."
        ::= { hwSecStatMonitorGlobalDrop 19 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.20
    hwSecStatProtoErrDropPkts OBJECT-TYPE
        SYNTAX Counter64
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION
            "The total number of packets dropped for protocol error."
        ::= { hwSecStatMonitorGlobalDrop 20 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.2.3.21
    hwSecStatClearGlobalDropInfo OBJECT-TYPE
        SYNTAX Integer32 (0..1)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION
            "
            Use this OID to clear the global dropped packets statistics information.
            When you want to clear the information, set this OID to 1.
            "
        ::= { hwSecStatMonitorGlobalDrop 21 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.3
    hwSecStatConformance OBJECT IDENTIFIER ::= { hwSECSTATCommon 3 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.3.1
    hwSecStatCompliance OBJECT IDENTIFIER ::= { hwSecStatConformance 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.3.2
    hwSecStatMibGroups OBJECT IDENTIFIER ::= { hwSecStatConformance 2 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.3.2.1
    hwSecStatGlobalCfgGroup OBJECT-GROUP
        OBJECTS { 
            hwSecStatTcpPktScale, 
            hwSecStatUdpPktScale, 
            hwSecStatIcmpPktScale, 
            hwSecStatAlteration, 
            hwSecStatCalcTime, 
            hwSecStatTcpSessNumMax, 
            hwSecStatTcpSessNumMin, 
            hwSecStatUdpSessNumMax, 
            hwSecStatGlobalSessSetDefault,
            hwSecStatIcmpSessNumMax,
            hwSecStatIcmpSessNumMin,
            hwSecStatTcpProxySessNumMax,
            hwSecStatTcpProxySessNumMin,             
            hwSecStatPktScaleSetDefault, 
            hwSecStatUdpSessNumMin, 
            hwSecStatGlobalStatEnable }
        STATUS current
        DESCRIPTION 
            "Description."
        ::= { hwSecStatMibGroups 1 }
    
    -- 1.3.6.1.4.1.2011.5.25.11.1.3.2.2
    hwSecStatGlobalMonitorGroup OBJECT-GROUP
        OBJECTS { 
            hwSecStatMonTotalSess, 
            hwSecStatMonHalfConn, 
            hwSecStatMonRcvIcmpPkts, 
            hwSecStatMonRcvIcmpOcts, 
            hwSecStatMonRcvTcpPkts, 
            hwSecStatMonRcvTcpOcts, 
            hwSecStatMonRcvUdpPkts, 
            hwSecStatMonRcvUdpOcts, 
            hwSecStatMonRcvEtcPkts, 
            hwSecStatMonRcvEtcOcts, 
            hwSecStatMonPassIcmpPkts, 
            hwSecStatMonPassIcmpOcts, 
            hwSecStatMonPassTcpPkts, 
            hwSecStatMonPassTcpOcts, 
            hwSecStatMonPassUdpPkts, 
            hwSecStatMonPassUdpOcts, 
            hwSecStatMonPassEtcPkts, 
            hwSecStatMonPassEtcOcts, 
            hwSecStatMonSynPkts, 
            hwSecStatMonFinPkts, 
            hwSecStatMonSynAckPkts, 
            hwSecStatMonRstPkts, 
            hwSecStatMonRcvFragPkts, 
            hwSecStatMonRcvFragOcts, 
            hwSecStatMonFtpSessions, 
            hwSecStatMonRcvFtpPkts, 
            hwSecStatMonRcvFtpOcts, 
            hwSecStatMonSmtpSessions, 
            hwSecStatMonRcvSmtpPkts, 
            hwSecStatMonRcvSmtpOcts, 
            hwSecStatMonHttpSessions, 
            hwSecStatMonRcvHttpPkts, 
            hwSecStatMonRcvHttpOcts, 
            hwSecStatMonH323Sessions, 
            hwSecStatMonRcvH323Pkts, 
            hwSecStatMonRcvH323Octs, 
            hwSecStatMonRtspSessions, 
            hwSecStatMonRcvRtspPkts, 
            hwSecStatMonRcvRtspOcts, 
            hwSecStatMonJavaAtckNum, 
            hwSecStatNoSessTblPkts, 
            hwSecStatNoSessTblOcts, 
            hwSecStatSeqErrPkts, 
            hwSecStatSeqErrOcts, 
            hwSecStatIcmpFloodDropPkts, 
            hwSecStatIcmpFloodDropOcts, 
            hwSecStatUdpFloodDropPkts, 
            hwSecStatUdpFloodDropOcts, 
            hwSecStatAlgDropPkts, 
            hwSecStatAlgDropOcts, 
            hwSecStatIPVerErrDropPkts, 
            hwSecStatIpCrcDropPkts, 
            hwSecStatIpTTLDropPkts, 
            hwSecStatMonCurSessSpeed, 
            hwSecStatMonPeakSessSpeed, 
            hwSecStatMonTotalBootConnNum, 
            hwSecStatProtoErrDropPkts, 
            hwSecStatAclDenyNonIcmpPkts, 
            hwSecStatAclDenyNonIcmpOcts, 
            hwSecStatAclDenyIcmpPkts, 
            hwSecStatAclDenyIcmpOcts, 
            hwSecStatBlsDenyPkts, 
            hwSecStatClearGlobalDropInfo, 
            hwSecStatClearGlobalAppInfo, 
            hwSecStatClearGlobalSessFlowInfo, 
            hwSecStatBlsDenyOcts, 
            hwSecStatMonTcpSess, 
            hwSecStatMonUdpSess, 
            hwSecStatMonIcmpSess, 
            hwSecStatMonSvrMapTblNum, 
            hwSecStatFragTblNum, 
            hwSecStatMonAllPkts, 
            hwSecStatMonAllOcts }
        STATUS current
        DESCRIPTION 
            "Description."
        ::= { hwSecStatMibGroups 2 }

END