1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
|
-- =================================================================
-- Copyright (C) 2003 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description: HUAWEI-SECSTAT-EUDM-MIB
-- Reference:
-- Version: V1.20
-- History:
-- V1.20 2005-05-30 Wei Rixi(22510) added mplsVpnVrfName as table index,
-- changed the region of ApplyZoneID(hwNatEudmZoneApplyZoneID1
-- and hwNatEudmZoneApplyZoneID2) from 1~16 to 0~128.
-- Added defval to some fields.
-- V1.00 2003-03-18 Yang Yinzhu(28193) initial version
-- =================================================================
HUAWEI-SECSTAT-EUDM-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-GROUP
FROM SNMPv2-CONF
Integer32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC
mplsVpnVrfName
FROM MPLS-VPN-MIB
hwDatacomm
FROM HUAWEI-MIB;
hwSECSTATEudm MODULE-IDENTITY
LAST-UPDATED "200304101100Z" -- April 10, 2003 at 11:00 GMT
ORGANIZATION
"Huawei Technologies co.,Ltd."
CONTACT-INFO
"
ADDR: HUAWEI TECHNOLOGY CO.,LTD,SHEZHEN CHINA
Tel: 86-755-26540808
"
DESCRIPTION
"
V1.00
The HUAWEI-STCSTAT-EUDM-MIB contains objects to manage the security
statistics information for firewall product.
"
::= { hwSECSTAT 2 }
--
-- 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.2.1
hwSecStatEudmCfgObjects OBJECT IDENTIFIER ::= { hwSECSTATEudm 1 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1
hwSecStatEudmSessCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwSecStatEudmSessCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration informations for security zone."
::= { hwSecStatEudmCfgObjects 1 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1
hwSecStatEudmSessCfgEntry OBJECT-TYPE
SYNTAX HwSecStatEudmSessCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration informations for security zone."
INDEX { mplsVpnVrfName, hwSecStatEudmSessCfgZoneID }
::= { hwSecStatEudmSessCfgTable 1 }
HwSecStatEudmSessCfgEntry ::=
SEQUENCE {
hwSecStatEudmSessCfgZoneID
Integer32,
hwSecStatEudmSessTcpInZoneNumMax
Integer32,
hwSecStatEudmSessTcpInZoneNumMin
Integer32,
hwSecStatEudmSessTcpInIPNumMax
Integer32,
hwSecStatEudmSessTcpInIPNumMin
Integer32,
hwSecStatEudmSessTcpOutZoneNumMax
Integer32,
hwSecStatEudmSessTcpOutZoneNumMin
Integer32,
hwSecStatEudmSessTcpOutIPNumMax
Integer32,
hwSecStatEudmSessTcpOutIPNumMin
Integer32,
hwSecStatEudmSessUdpInZoneNumMax
Integer32,
hwSecStatEudmSessUdpInZoneNumMin
Integer32,
hwSecStatEudmSessUdpInIPNumMax
Integer32,
hwSecStatEudmSessUdpInIPNumMin
Integer32,
hwSecStatEudmSessUdpOutZoneNumMax
Integer32,
hwSecStatEudmSessUdpOutZoneNumMin
Integer32,
hwSecStatEudmSessUdpOutIPNumMax
Integer32,
hwSecStatEudmSessUdpOutIPNumMin
Integer32,
hwSecStatEudmSessTcpInZoneSpeedMax
Integer32,
hwSecStatEudmSessTcpInZoneSpeedMin
Integer32,
hwSecStatEudmSessTcpInIPSpeedMax
Integer32,
hwSecStatEudmSessTcpInIPSpeedMin
Integer32,
hwSecStatEudmSessTcpOutZoneSpeedMax
Integer32,
hwSecStatEudmSessTcpOutZoneSpeedMin
Integer32,
hwSecStatEudmSessTcpOutIPSpeedMax
Integer32,
hwSecStatEudmSessTcpOutIPSpeedMin
Integer32,
hwSecStatEudmSessUdpInZoneSpeedMax
Integer32,
hwSecStatEudmSessUdpInZoneSpeedMin
Integer32,
hwSecStatEudmSessUdpInIPSpeedMax
Integer32,
hwSecStatEudmSessUdpInIPSpeedMin
Integer32,
hwSecStatEudmSessUdpOutZoneSpeedMax
Integer32,
hwSecStatEudmSessUdpOutZoneSpeedMin
Integer32,
hwSecStatEudmSessUdpOutIPSpeedMax
Integer32,
hwSecStatEudmSessUdpOutIPSpeedMin
Integer32,
hwSecStatEudmSessCfgSetDefault
Integer32
}
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.1
hwSecStatEudmSessCfgZoneID OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of security zone."
::= { hwSecStatEudmSessCfgEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.2
hwSecStatEudmSessTcpInZoneNumMax OBJECT-TYPE
SYNTAX Integer32 (1..500000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The upper limit of inbound TCP session for a zone."
DEFVAL { 500000 }
::= { hwSecStatEudmSessCfgEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.3
hwSecStatEudmSessTcpInZoneNumMin OBJECT-TYPE
SYNTAX Integer32 (1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of inbound TCP session for a zone."
DEFVAL { 500000 }
::= { hwSecStatEudmSessCfgEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.4
hwSecStatEudmSessTcpInIPNumMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of inbound TCP session for one host."
::= { hwSecStatEudmSessCfgEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.5
hwSecStatEudmSessTcpInIPNumMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of inbound TCP session for one host."
::= { hwSecStatEudmSessCfgEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.6
hwSecStatEudmSessTcpOutZoneNumMax OBJECT-TYPE
SYNTAX Integer32 (1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of outbound TCP session for a zone."
DEFVAL { 500000 }
::= { hwSecStatEudmSessCfgEntry 6 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.7
hwSecStatEudmSessTcpOutZoneNumMin OBJECT-TYPE
SYNTAX Integer32 (1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of outbound TCP session for a zone."
DEFVAL { 500000 }
::= { hwSecStatEudmSessCfgEntry 7 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.8
hwSecStatEudmSessTcpOutIPNumMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of outbound TCP session for one host."
::= { hwSecStatEudmSessCfgEntry 8 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.9
hwSecStatEudmSessTcpOutIPNumMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of outbound TCP session for one host."
::= { hwSecStatEudmSessCfgEntry 9 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.10
hwSecStatEudmSessUdpInZoneNumMax OBJECT-TYPE
SYNTAX Integer32 (1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of inbound UDP session for a zone."
DEFVAL { 500000 }
::= { hwSecStatEudmSessCfgEntry 10 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.11
hwSecStatEudmSessUdpInZoneNumMin OBJECT-TYPE
SYNTAX Integer32 (1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of inbound UDP session for a zone."
DEFVAL { 500000 }
::= { hwSecStatEudmSessCfgEntry 11 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.12
hwSecStatEudmSessUdpInIPNumMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of inbound UDP session for one host."
::= { hwSecStatEudmSessCfgEntry 12 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.13
hwSecStatEudmSessUdpInIPNumMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of inbound UDP session for one host."
::= { hwSecStatEudmSessCfgEntry 13 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.14
hwSecStatEudmSessUdpOutZoneNumMax OBJECT-TYPE
SYNTAX Integer32 (1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of outbound UDP session for one zone."
DEFVAL { 500000 }
::= { hwSecStatEudmSessCfgEntry 14 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.15
hwSecStatEudmSessUdpOutZoneNumMin OBJECT-TYPE
SYNTAX Integer32 (1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of outbound UDP session for one zone."
DEFVAL { 500000 }
::= { hwSecStatEudmSessCfgEntry 15 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.16
hwSecStatEudmSessUdpOutIPNumMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of outbound UDP session for one host."
::= { hwSecStatEudmSessCfgEntry 16 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.17
hwSecStatEudmSessUdpOutIPNumMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of outbound UDP session for one host."
::= { hwSecStatEudmSessCfgEntry 17 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.18
hwSecStatEudmSessTcpInZoneSpeedMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of establishing speed of inbound TCP session for one zone."
::= { hwSecStatEudmSessCfgEntry 18 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.19
hwSecStatEudmSessTcpInZoneSpeedMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of establishing speed of inbound TCP session for one zone."
::= { hwSecStatEudmSessCfgEntry 19 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.20
hwSecStatEudmSessTcpInIPSpeedMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of establishing speed of inbound TCP session for one host."
::= { hwSecStatEudmSessCfgEntry 20 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.21
hwSecStatEudmSessTcpInIPSpeedMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of establishing speed of inbound TCP session for one host."
::= { hwSecStatEudmSessCfgEntry 21 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.22
hwSecStatEudmSessTcpOutZoneSpeedMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of establishing speed of outbound TCP session for one zone."
::= { hwSecStatEudmSessCfgEntry 22 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.23
hwSecStatEudmSessTcpOutZoneSpeedMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of establishing speed of outbound TCP session for one zone."
::= { hwSecStatEudmSessCfgEntry 23 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.24
hwSecStatEudmSessTcpOutIPSpeedMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of establishing speed of outbound TCP session for one host."
::= { hwSecStatEudmSessCfgEntry 24 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.25
hwSecStatEudmSessTcpOutIPSpeedMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of establishing speed of outbound TCP session for one host."
::= { hwSecStatEudmSessCfgEntry 25 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.26
hwSecStatEudmSessUdpInZoneSpeedMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of establishing speed of inbound UDP session for one zone."
::= { hwSecStatEudmSessCfgEntry 26 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.27
hwSecStatEudmSessUdpInZoneSpeedMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of establishing speed of inbound UDP session for one zone."
::= { hwSecStatEudmSessCfgEntry 27 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.28
hwSecStatEudmSessUdpInIPSpeedMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of establishing speed of inbound UDP session for one host."
::= { hwSecStatEudmSessCfgEntry 28 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.29
hwSecStatEudmSessUdpInIPSpeedMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of establishing speed of inbound UDP session for one host."
::= { hwSecStatEudmSessCfgEntry 29 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.30
hwSecStatEudmSessUdpOutZoneSpeedMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of establishing speed of outbound UDP session for one zone."
::= { hwSecStatEudmSessCfgEntry 30 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.31
hwSecStatEudmSessUdpOutZoneSpeedMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of establishing speed of outbound UDP session for one zone."
::= { hwSecStatEudmSessCfgEntry 31 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.32
hwSecStatEudmSessUdpOutIPSpeedMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit of establishing speed of outbound UDP session for one host."
::= { hwSecStatEudmSessCfgEntry 32 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.33
hwSecStatEudmSessUdpOutIPSpeedMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit of establishing speed of outbound UDP session for one host."
::= { hwSecStatEudmSessCfgEntry 33 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.1.1.34
hwSecStatEudmSessCfgSetDefault OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This OID is used for setting the session configuration of the zone to default.
When you want to set the calue to default, set this OID to 1.
"
::= { hwSecStatEudmSessCfgEntry 34 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.2
hwSecStatEudmCfgEnableTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwSecStatEudmCfgEnableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table for status to indicate whether the statistics is enabled in the zone."
::= { hwSecStatEudmCfgObjects 2 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.2.1
hwSecStatEudmCfgEnableEntry OBJECT-TYPE
SYNTAX HwSecStatEudmCfgEnableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry to indicate whether the statistics is enabled in this zone."
INDEX { mplsVpnVrfName, hwSecStatEudmCfgEnableZoneID }
::= { hwSecStatEudmCfgEnableTable 1 }
HwSecStatEudmCfgEnableEntry ::=
SEQUENCE {
hwSecStatEudmCfgEnableZoneID
Integer32,
hwSecStatEudmCfgEnbaleZoneIn
TruthValue,
hwSecStatEudmCfgEnbaleZoneOut
TruthValue,
hwSecStatEudmCfgEnbaleIpIn
TruthValue,
hwSecStatEudmCfgEnbaleIPOut
TruthValue,
hwSecStatEudmCfgEnableSetDefault
Integer32
}
-- 1.3.6.1.4.1.2011.5.25.11.2.1.2.1.1
hwSecStatEudmCfgEnableZoneID OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of security zone."
::= { hwSecStatEudmCfgEnableEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.2.1.2
hwSecStatEudmCfgEnbaleZoneIn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status to indicate whether the inbound statistics is enabled for the zone."
DEFVAL { false }
::= { hwSecStatEudmCfgEnableEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.2.1.3
hwSecStatEudmCfgEnbaleZoneOut OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status to indicate whether the outbound statistics is enabled for the zone."
DEFVAL { false }
::= { hwSecStatEudmCfgEnableEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.2.1.4
hwSecStatEudmCfgEnbaleIpIn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status to indicate whether the inbound statistics is enabled for the hosts in the zone."
::= { hwSecStatEudmCfgEnableEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.2.1.5
hwSecStatEudmCfgEnbaleIPOut OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status to indicate whether the outbound statistics is enabled for the hosts in the zone."
::= { hwSecStatEudmCfgEnableEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.11.2.1.2.1.6
hwSecStatEudmCfgEnableSetDefault OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This OID is used for setting the statistics enabling configuration of the zone to default.
When you want to set the calue to default, set this OID to 1.
"
::= { hwSecStatEudmCfgEnableEntry 6 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2
hwSecStatEudmMonitorObjects OBJECT IDENTIFIER ::= { hwSECSTATEudm 2 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1
hwSecStatZoneInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwSecStatZoneInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics data table for zone."
::= { hwSecStatEudmMonitorObjects 1 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1
hwSecStatZoneInfoEntry OBJECT-TYPE
SYNTAX HwSecStatZoneInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics data for a zone."
INDEX { mplsVpnVrfName, hwSecStatZoneInfoZoneID }
::= { hwSecStatZoneInfoTable 1 }
HwSecStatZoneInfoEntry ::=
SEQUENCE {
hwSecStatZoneInfoZoneID
Integer32,
hwSecStatZoneInTcpSess
Counter64,
hwSecStatZoneInUdpSess
Counter64,
hwSecStatZoneInIcmpSess
Counter64,
hwSecStatZoneInConn
Counter64,
hwSecStatZoneInHalfConn
Counter64,
hwSecStatZoneInTcpSessSpeed
Counter64,
hwSecStatZoneInUdpSessSpeed
Counter64,
hwSecStatZoneInIcmpSessSpeed
Counter64,
hwSecStatZoneInConnSpeed
Counter64,
hwSecStatZoneInHalfConnSpeed
Counter64,
hwSecStatZoneInAclDenyIcmpPkts
Counter64,
hwSecStatZoneInAclDenyIcmpOcts
Counter64,
hwSecStatZoneInAclDenyNonIcmpPkts
Counter64,
hwSecStatZoneInAclDenyNonIcmpOcts
Counter64,
hwSecStatZoneInBlsDenyPkts
Counter64,
hwSecStatZoneInDftAclDenyPkts
Counter64,
hwSecStatZoneInDftAclDenyIcmpPkts
Counter64,
hwSecStatZoneInIcmpFloodDropPkts
Counter64,
hwSecStatZoneInUdpFloodDropPkts
Counter64,
hwSecStatZoneInFtpPkts
Counter64,
hwSecStatZoneInSmtpPkts
Counter64,
hwSecStatZoneInHttpPkts
Counter64,
hwSecStatZoneInH323Pkts
Counter64,
hwSecStatZoneInRtspPkts
Counter64,
hwSecStatZoneOutTcpSess
Counter64,
hwSecStatZoneOutUdpSess
Counter64,
hwSecStatZoneOutIcmpSess
Counter64,
hwSecStatZoneOutConn
Counter64,
hwSecStatZoneOutHalfConn
Counter64,
hwSecStatZoneOutTcpSessSpeed
Counter64,
hwSecStatZoneOutUdpSessSpeed
Counter64,
hwSecStatZoneOutIcmpSessSpeed
Counter64,
hwSecStatZoneOutConnSpeed
Counter64,
hwSecStatZoneOutHalfConnSpeed
Counter64,
hwSecStatZoneOutAclDenyIcmpPkts
Counter64,
hwSecStatZoneOutAclDenyIcmpOcts
Counter64,
hwSecStatZoneOutAclDenyNonIcmpPkts
Counter64,
hwSecStatZoneOutAclDenyNonIcmpOcts
Counter64,
hwSecStatZoneOutBlsDenyPkts
Counter64,
hwSecStatZoneOutDftAclDenyPkts
Counter64,
hwSecStatZoneOutDftAclDenyIcmpPkts
Counter64,
hwSecStatZoneOutFtpPkts
Counter64,
hwSecStatZoneOutSmtpPkts
Counter64,
hwSecStatZoneOutHttpPkts
Counter64,
hwSecStatZoneOutH323Pkts
Counter64,
hwSecStatZoneOutRtspPkts
Counter64,
hwSecStatClearZoneInfo
Integer32
}
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.1
hwSecStatZoneInfoZoneID OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of security zone."
::= { hwSecStatZoneInfoEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.2
hwSecStatZoneInTcpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of TCP session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.3
hwSecStatZoneInUdpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of UDP session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.4
hwSecStatZoneInIcmpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ICMP session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.5
hwSecStatZoneInConn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.6
hwSecStatZoneInHalfConn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of incomplete session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 6 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.7
hwSecStatZoneInTcpSessSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of TCP session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 7 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.8
hwSecStatZoneInUdpSessSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of UDP session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 8 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.9
hwSecStatZoneInIcmpSessSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of ICMP session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 9 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.10
hwSecStatZoneInConnSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 10 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.11
hwSecStatZoneInHalfConnSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of incomplete session to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 11 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.12
hwSecStatZoneInAclDenyIcmpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped icmp packets by acl to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 12 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.13
hwSecStatZoneInAclDenyIcmpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of droped icmp packets by acl to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 13 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.14
hwSecStatZoneInAclDenyNonIcmpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped non icmp packets by acl to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 14 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.15
hwSecStatZoneInAclDenyNonIcmpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of droped non icmp packets by acl to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 15 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.16
hwSecStatZoneInBlsDenyPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped packets by blacklist to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 16 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.17
hwSecStatZoneInDftAclDenyPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped packets by default acl to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 17 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.18
hwSecStatZoneInDftAclDenyIcmpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped ICMP packets by default acl to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 18 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.19
hwSecStatZoneInIcmpFloodDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped packets to the hosts in this zone for ICMP flood attack."
::= { hwSecStatZoneInfoEntry 19 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.20
hwSecStatZoneInUdpFloodDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped UDP packets to the hosts in this zone for UDP flood attack."
::= { hwSecStatZoneInfoEntry 20 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.21
hwSecStatZoneInFtpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of FTP packets to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 21 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.22
hwSecStatZoneInSmtpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of SMTP packets to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 22 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.23
hwSecStatZoneInHttpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of HTTP packets to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 23 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.24
hwSecStatZoneInH323Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of H323 packets to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 24 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.25
hwSecStatZoneInRtspPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of RTSP packets to the hosts in this zone."
::= { hwSecStatZoneInfoEntry 25 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.26
hwSecStatZoneOutTcpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of TCP session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 26 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.27
hwSecStatZoneOutUdpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of UDP session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 27 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.28
hwSecStatZoneOutIcmpSess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ICMP session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 28 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.29
hwSecStatZoneOutConn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 29 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.30
hwSecStatZoneOutHalfConn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of incomplete session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 30 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.31
hwSecStatZoneOutTcpSessSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of TCP session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 31 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.32
hwSecStatZoneOutUdpSessSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of UDP session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 32 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.33
hwSecStatZoneOutIcmpSessSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of ICMP session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 33 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.34
hwSecStatZoneOutConnSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 34 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.35
hwSecStatZoneOutHalfConnSpeed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current establishing speed of incomplete session from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 35 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.36
hwSecStatZoneOutAclDenyIcmpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped icmp packets by acl from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 36 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.37
hwSecStatZoneOutAclDenyIcmpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of droped icmp packets by acl from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 37 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.38
hwSecStatZoneOutAclDenyNonIcmpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped non icmp packets by acl from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 38 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.39
hwSecStatZoneOutAclDenyNonIcmpOcts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total bytes of droped non icmp packets by acl from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 39 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.40
hwSecStatZoneOutBlsDenyPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped packets by blacklist from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 40 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.41
hwSecStatZoneOutDftAclDenyPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped packets by default acl from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 41 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.42
hwSecStatZoneOutDftAclDenyIcmpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of droped icmp packets by default acl from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 42 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.43
hwSecStatZoneOutFtpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of FTP packets from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 43 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.44
hwSecStatZoneOutSmtpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of SMTP packets from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 44 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.45
hwSecStatZoneOutHttpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of HTTP packets from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 45 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.46
hwSecStatZoneOutH323Pkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of H323 packets from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 46 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.47
hwSecStatZoneOutRtspPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of RTSP packets from the hosts in this zone."
::= { hwSecStatZoneInfoEntry 47 }
-- 1.3.6.1.4.1.2011.5.25.11.2.2.1.1.48
hwSecStatClearZoneInfo OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This OID is used for clearing the statistics information of the zone.
When you want to clear the information, set this OID to 1.
"
::= { hwSecStatZoneInfoEntry 48 }
-- 1.3.6.1.4.1.2011.5.25.11.2.3
hwSECSTATEudmConformance OBJECT IDENTIFIER ::= { hwSECSTATEudm 3 }
-- 1.3.6.1.4.1.2011.5.25.11.2.3.1
hwSECSTATEudmCompliance OBJECT IDENTIFIER ::= { hwSECSTATEudmConformance 1 }
-- 1.3.6.1.4.1.2011.5.25.11.2.3.2
hwSECSTATEudmMibGroups OBJECT IDENTIFIER ::= { hwSECSTATEudmConformance 2 }
-- 1.3.6.1.4.1.2011.5.25.11.2.3.2.2
hwSECSTATEudmZoneCfgGroup OBJECT-GROUP
OBJECTS {
hwSecStatEudmSessTcpInZoneNumMax,
hwSecStatEudmSessTcpInZoneNumMin,
hwSecStatEudmSessTcpInIPNumMax,
hwSecStatEudmSessTcpInIPNumMin,
hwSecStatEudmSessTcpOutZoneNumMax,
hwSecStatEudmSessTcpOutZoneNumMin,
hwSecStatEudmSessTcpOutIPNumMax,
hwSecStatEudmSessTcpOutIPNumMin,
hwSecStatEudmSessUdpInZoneNumMax,
hwSecStatEudmSessUdpInZoneNumMin,
hwSecStatEudmSessUdpInIPNumMax,
hwSecStatEudmSessUdpInIPNumMin,
hwSecStatEudmSessUdpOutZoneNumMax,
hwSecStatEudmSessUdpOutZoneNumMin,
hwSecStatEudmSessUdpOutIPNumMax,
hwSecStatEudmSessUdpOutIPNumMin,
hwSecStatEudmSessTcpInZoneSpeedMax,
hwSecStatEudmSessTcpInZoneSpeedMin,
hwSecStatEudmSessTcpInIPSpeedMax,
hwSecStatEudmSessTcpInIPSpeedMin,
hwSecStatEudmSessTcpOutZoneSpeedMax,
hwSecStatEudmSessTcpOutZoneSpeedMin,
hwSecStatEudmSessTcpOutIPSpeedMax,
hwSecStatEudmSessTcpOutIPSpeedMin,
hwSecStatEudmSessUdpInZoneSpeedMax,
hwSecStatEudmSessUdpInZoneSpeedMin,
hwSecStatEudmSessUdpInIPSpeedMax,
hwSecStatEudmSessUdpInIPSpeedMin,
hwSecStatEudmSessUdpOutZoneSpeedMax,
hwSecStatEudmSessUdpOutZoneSpeedMin,
hwSecStatEudmSessUdpOutIPSpeedMax,
hwSecStatEudmSessUdpOutIPSpeedMin,
hwSecStatEudmCfgEnbaleZoneIn,
hwSecStatEudmCfgEnbaleZoneOut,
hwSecStatEudmCfgEnbaleIpIn,
hwSecStatEudmCfgEnbaleIPOut,
hwSecStatEudmSessCfgSetDefault,
hwSecStatEudmCfgEnableSetDefault }
STATUS current
DESCRIPTION
"Description."
::= { hwSECSTATEudmMibGroups 2 }
-- 1.3.6.1.4.1.2011.5.25.11.2.3.2.4
hwSECSTATEudmZoneMonitorGroup OBJECT-GROUP
OBJECTS {
hwSecStatZoneInTcpSess,
hwSecStatZoneInUdpSess,
hwSecStatZoneInIcmpSess,
hwSecStatZoneInConn,
hwSecStatZoneInHalfConn,
hwSecStatZoneInTcpSessSpeed,
hwSecStatZoneInUdpSessSpeed,
hwSecStatZoneInIcmpSessSpeed,
hwSecStatZoneInConnSpeed,
hwSecStatZoneInHalfConnSpeed,
hwSecStatZoneInAclDenyIcmpPkts,
hwSecStatZoneInAclDenyIcmpOcts,
hwSecStatZoneInAclDenyNonIcmpPkts,
hwSecStatZoneInAclDenyNonIcmpOcts,
hwSecStatZoneInIcmpFloodDropPkts,
hwSecStatZoneInUdpFloodDropPkts,
hwSecStatZoneInFtpPkts,
hwSecStatZoneInSmtpPkts,
hwSecStatZoneInHttpPkts,
hwSecStatZoneInH323Pkts,
hwSecStatZoneInRtspPkts,
hwSecStatZoneOutTcpSess,
hwSecStatZoneOutUdpSess,
hwSecStatZoneOutIcmpSess,
hwSecStatZoneOutConn,
hwSecStatZoneOutHalfConn,
hwSecStatZoneOutTcpSessSpeed,
hwSecStatZoneOutUdpSessSpeed,
hwSecStatZoneOutIcmpSessSpeed,
hwSecStatZoneOutConnSpeed,
hwSecStatZoneOutHalfConnSpeed,
hwSecStatZoneOutAclDenyIcmpPkts,
hwSecStatZoneOutAclDenyIcmpOcts,
hwSecStatZoneOutAclDenyNonIcmpPkts,
hwSecStatZoneOutAclDenyNonIcmpOcts,
hwSecStatZoneOutDftAclDenyIcmpPkts,
hwSecStatZoneOutFtpPkts,
hwSecStatZoneOutSmtpPkts,
hwSecStatZoneOutHttpPkts,
hwSecStatZoneOutH323Pkts,
hwSecStatZoneOutRtspPkts,
hwSecStatZoneInDftAclDenyIcmpPkts,
hwSecStatZoneInBlsDenyPkts,
hwSecStatZoneInDftAclDenyPkts,
hwSecStatClearZoneInfo,
hwSecStatZoneOutDftAclDenyPkts,
hwSecStatZoneOutBlsDenyPkts }
STATUS current
DESCRIPTION
"Description."
::= { hwSECSTATEudmMibGroups 4 }
END
|