forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-ACL-MIB
executable file
·4568 lines (4144 loc) · 153 KB
/
A3COM-HUAWEI-ACL-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
-- ============================================================================
-- Copyright (c) 2004-2010 Hangzhou H3C Tech. Co., Ltd. All rights reserved.
--
-- Description:
-- Reference:
-- Version: V3.1
-- History:
-- V1.0 created by yuhui.
-- V2.0 2004-10-12 updated by gaolong
-- Define MODULE-IDENTITY for h3cAcl
-- Remove chinese characters
-- Add limitation(0..65535) for some table index
-- Fix a default value error of h3cAclAdvancedEstablish
-- V2.1 2004-11-18 updated by yubo
-- Add 'h3cAclIDSTable' for IDS
-- V2.2 2004-12-13
-- Fix syntax bugs and adjust format of the whole file by jinyi
-- Modify description of h3cAclAdvancedDscp by zhuangyu
-- V2.3 2005-1-26 updated by WuZhao02557
-- Change MAX-ACCESS from read-create to not-accessible for the
-- following MIB nodes:
-- h3cAclNumGroupAclNum, h3cAclNameGroupIndex, h3cAclBasicAclNum,
-- h3cAclBasicSubitem, h3cAclAdvancedAclNum, h3cAclAdvancedSubitem
-- h3cAclIfAclNum, h3cAclIfSubitem, h3cAclLinkAclNum, h3cAclLinkSubitem
-- h3cAclUserAclNum, h3cAclUserSubitem, h3cAclActiveAclIndex,
-- h3cAclActiveIfIndex, h3cAclActiveVlanID, h3cAclActiveDirection
-- Adjust format of whole file.
-- 2005-01-27 updated by zhangyinxi
-- 1. Add objects h3cAclLinkL2LabelRangeOp, h3cAclLinkL2LabelRangeBegin
-- h3cAclLinkL2LabelRangeEnd and h3cAclLinkMplsExp in h3cAclLinkTable
-- 2. Add an enumeration mpls(34887) to object h3cAclLinkProtocol
-- 3. Expand the range of object h3cAclActiveVlanID to Integer32
-- V2.4 2005-2-24
-- Make the index of h3cAclIDSTable IMPLIED by fuzhenyu because IDS devices
-- require fixed length index to be used. IDS devices only provide index
-- with no sub-identifier indicating the length of the string.
-- Modify enum name(value is 4) of h3cAclLinkFormatType to ieee802Dot3 by daishijun
-- V2.5 2005-7-25
-- Add objects h3cAclMib2Mode, h3cAclVersion, h3cAclMib2ObjectsCapabilities,
-- h3cAclIPAclNumGroupTable, h3cAclIPAclBasicTable, h3cAclIPAclAdvancedTable,
-- h3cAclMACTable, h3cAclEnUserTable by tangshun.
-- V2.6 2006-01-03
-- Add objects h3cAclIPAclBasicComment, h3cAclIPAclAdvancedComment,
-- h3cAclMACComment, h3cAclEnUserComment by tangshun.
-- V2.7 2006-03-09 updated by changhuifeng
-- Add object h3cAclIPAclAdvancedReflective in h3cAclIPAclAdvancedTable.
-- Modify the description of object h3cAclIPAclAdvancedFragmentFlag.
-- Modify the description of object h3cAclMib2Version.
-- Modify the description of object h3cAclLinkDestAny for text error.
-- Modify the description of object h3cAclMib2CharacteristicsValue.
-- V2.8 2006-07-06 updated by xialei
-- Modify the description of h3cAclIPAclAdvancedIcmpType
-- and h3cAclIPAclAdvancedIcmpCode.
-- Change value range of h3cAclIPAclAdvancedIcmpCode.
-- V2.9 2006-08-08 updated by chenzhaojie
-- Add enumeration value to h3cAclActiveDirection.
-- V3.0 2010-09-01 updated by zhaixiaoxiang
-- Add h3cAclResourceUsageTable.
-- V3.1 2012-02-06 updated by wangchenxiao
-- Add h3cPacketfilterTrapObjects
-- Add h3cPacketfilterTrap
-- 2012-02-14 updated by mouxuanli
-- Add h3cAclMib2ProcessingStatus of object h3cAclMib2NodesGroup
-- Add h3cAclNumberGroupName of object h3cAclNumberGroupTable
-- Add h3cAclIPAclBasicCounting of object h3cAclIPAclBasicTable
-- Add h3cAclIPAclBasicRouteTypeAny of object h3cAclIPAclBasicTable
-- Add h3cAclIPAclBasicRouteTypeValue of object h3cAclIPAclBasicTable
-- Add h3cAclIPAclAdvancedCounting of object h3cAclIPAclAdvancedTable
-- Add h3cAclIPAclAdvancedTCPFlagMask of object h3cAclIPAclAdvancedTable
-- Add h3cAclIPAclAdvancedTCPFlagValue of object h3cAclIPAclAdvancedTable
-- Add h3cAclIPAclAdvancedRouteTypeAny of object h3cAclIPAclAdvancedTable
-- Add h3cAclIPAclAdvancedRouteTypeValue of object h3cAclIPAclAdvancedTable
-- Add h3cAclIPAclAdvancedFlowLabel of object h3cAclIPAclAdvancedTable
-- Add h3cAclMACLog of object h3cAclMACTable
-- Add h3cAclMACCounting of object h3cAclMACTable
-- Add h3cAclEnUserLog of object h3cAclEnUserTable
-- Add h3cAclEnUserCounting of object h3cAclEnUserTable
-- Modify the description of h3cAclResourceType
-- Add h3cAclResourceTypeDescription of object h3cAclResourceUsageTable
-- Add h3cAclPacketFilterObjects
-- ============================================================================
A3COM-HUAWEI-ACL-MIB DEFINITIONS ::= BEGIN
IMPORTS
h3cCommon
FROM A3COM-HUAWEI-OID-MIB
IpAddress, Integer32, Counter32, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE, Unsigned32, Counter64
FROM SNMPv2-SMI
InetAddressType, InetAddress, InetAddressPrefixLength
FROM INET-ADDRESS-MIB
RowStatus, TruthValue, MacAddress, TEXTUAL-CONVENTION
FROM SNMPv2-TC;
--
-- Node definitions
--
h3cAcl MODULE-IDENTITY
LAST-UPDATED "200409211936Z" -- Sept 21, 2004 at 19:36 GMT
ORGANIZATION
"Hangzhou H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team Hangzhou H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085"
DESCRIPTION
"ACL management information base for managing devices
that support access control list and packet filtering.
"
::= { h3cCommon 8 }
-- Rule action value
RuleAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of rule's action.
permit: The packet matching the rule will be permitted to forward.
deny: The packet matching the rule will be denied.
"
SYNTAX INTEGER
{
invalid(1),
permit(2),
deny(3)
}
-- CounterClear value
CounterClear ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"cleared: Reset the value of the rule's counter.
nouse: 'nouse' will be returned when getting.
"
SYNTAX INTEGER
{
cleared(1),
nouse(2)
}
-- PortOp value
PortOp ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The operation type of TCP and UDP.
lt : Less than given port number.
eq : Equal to given port number.
gt : Greater than given port number.
neq : Not equal to given port number.
range : Between two port numbers.
Default value is 'invalid'.
"
SYNTAX INTEGER
{
invalid(0),
lt(1),
eq(2),
gt(3),
neq(4),
range(5)
}
-- DSCP value
DSCPValue ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The value of DSCP.
<0-63> Value of DSCP
af11 Specify Assured Forwarding 11 service(10)
af12 Specify Assured Forwarding 12 service(12)
af13 Specify Assured Forwarding 13 service(14)
af21 Specify Assured Forwarding 21 service(18)
af22 Specify Assured Forwarding 22 service(20)
af23 Specify Assured Forwarding 23 service(22)
af31 Specify Assured Forwarding 31 service(26)
af32 Specify Assured Forwarding 32 service(28)
af33 Specify Assured Forwarding 33 service(30)
af41 Specify Assured Forwarding 41 service(34)
af42 Specify Assured Forwarding 42 service(36)
af43 Specify Assured Forwarding 43 service(38)
be Specify Best Effort service(0)
cs1 Specify Class Selector 1 service(8)
cs2 Specify Class Selector 2 service(16)
cs3 Specify Class Selector 3 service(24)
cs4 Specify Class Selector 4 service(32)
cs5 Specify Class Selector 5 service(40)
cs6 Specify Class Selector 6 service(48)
cs7 Specify Class Selector 7 service(56)
ef Specify Expedited Forwarding service(46)
"
SYNTAX Integer32 (0..63|255)
-- TCP Flags
TCPFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of TCP.
invalid(0)
tcpack(1) TCP protocol ACK Packet
tcpfin(2) TCP protocol PIN Packet
tcppsh(3) TCP protocol PUSH Packet
tcprst(4) TCP protocol RST Packet
tcpsyn(5) TCP protocol SYN Packet
tcpurg(6) TCP protocol URG Packet
Default value is 'invalid'.
"
SYNTAX INTEGER
{
invalid(0),
tcpack(1),
tcpfin(2),
tcppsh(3),
tcprst(4),
tcpsyn(5),
tcpurg(6)
}
-- Fragment Flags
FragmentFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of fragment.
invalid(0)
fragment(1) Frag-Type Fragment
fragmentSubseq(2) Frag-Type Fragment-subsequent
nonFragment(3) Frag-Type non-Fragment
nonSubseq(4) Frag-Type non-subsequent
Default value is 'invalid'.
"
SYNTAX INTEGER
{
invalid(0),
fragment(1),
fragmentSubseq(2),
nonFragment(3),
nonSubseq(4)
}
-- Address Flags
AddressFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Address flag to select IPv6 Address.
Default value is 'invalid'.
t64SrcAddrPre64DestAddrPre(1):
The mean of the enumeration 't64SrcAddrPre64DestAddrPre' is
that system gets the 64 bits prefix of source address and
the 64 bits prefix of destination address.
t64SrcAddrPre64DestAddrSuf(2):
The mean of the enumeration 't64SrcAddrPre64DestAddrSuf' is
that system gets the 64 bits prefix of source address and
the 64 bits suffix of destination address.
t64SrcAddrSuf64DestAddrPre(3):
The mean of the enumeration 't64SrcAddrSuf64DestAddrPre' is
that system gets the 64 bits suffix of source address and
the 64 bits prefix of destination address.
t64SrcAddrSuf64DestAddrSuf(4):
The mean of the enumeration 't64SrcAddrSuf64DestAddrSuf' is
that system gets the 64 bits suffix of source address and
the 64 bits suffix of destination address.
t128SourceAddress(5):
The mean of the enumeration 't128SourceAddress' is that
system gets the 128 bits of source address.
t128DestinationAddress(6):
The mean of the enumeration 't128SourceAddress' is that
system gets the 128 bits of destination address.
"
SYNTAX INTEGER
{
invalid(0),
t64SrcAddrPre64DestAddrPre(1),
t64SrcAddrPre64DestAddrSuf(2),
t64SrcAddrSuf64DestAddrPre(3),
t64SrcAddrSuf64DestAddrSuf(4),
t128SourceAddress(5),
t128DestinationAddress(6)
}
-- Direction type
DirectionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The direction: inbound or outbound."
SYNTAX INTEGER
{
inbound(1),
outbound(2)
}
--
-- nodes defined
--
h3cAclMibObjects OBJECT IDENTIFIER ::= { h3cAcl 1 }
h3cAclMode OBJECT-TYPE
SYNTAX INTEGER
{
linkBased(1),
ipBased(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Access-list mode."
DEFVAL { ipBased }
::= { h3cAclMibObjects 1 }
--
-- Node of h3cAclNumGroupTable
--
h3cAclNumGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cAclNumGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure the match-order of number-acl group."
::= { h3cAclMibObjects 2 }
h3cAclNumGroupEntry OBJECT-TYPE
SYNTAX H3cAclNumGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define the index of h3cAclNumGroupTable."
INDEX { h3cAclNumGroupAclNum }
::= { h3cAclNumGroupTable 1 }
H3cAclNumGroupEntry ::=
SEQUENCE
{
h3cAclNumGroupAclNum
Integer32,
h3cAclNumGroupMatchOrder
INTEGER,
h3cAclNumGroupSubitemNum
Integer32,
h3cAclNumGroupDescription
OCTET STRING,
h3cAclNumGroupCountClear
INTEGER,
h3cAclNumGroupRowStatus
RowStatus
}
h3cAclNumGroupAclNum OBJECT-TYPE
SYNTAX Integer32 (1000..5999)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of number-acl group
Interface type:1000..1999
Basic type:2000..2999
Advance type:3000..3999
Link type:4000..4999
User type:5000..5999"
::= { h3cAclNumGroupEntry 1 }
h3cAclNumGroupMatchOrder OBJECT-TYPE
SYNTAX INTEGER
{
config(1),
auto(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The match-order of number-acl group."
DEFVAL { config }
::= { h3cAclNumGroupEntry 2 }
h3cAclNumGroupSubitemNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of number-acl group's node."
::= { h3cAclNumGroupEntry 3 }
h3cAclNumGroupDescription OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The description of this acl group."
::= { h3cAclNumGroupEntry 4 }
h3cAclNumGroupCountClear OBJECT-TYPE
SYNTAX INTEGER
{
cleared(1),
nouse(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Reset the value of rules' counter, which belong to this group."
::= { h3cAclNumGroupEntry 5 }
h3cAclNumGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus, now support three state: CreateAndGo, Active, Destroy."
::= { h3cAclNumGroupEntry 6 }
--
-- Node of h3cAclNameGroupTable
--
h3cAclNameGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cAclNameGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Create acl-group that identified by name."
::= { h3cAclMibObjects 3 }
h3cAclNameGroupEntry OBJECT-TYPE
SYNTAX H3cAclNameGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define the index of h3cAclNameGroupTable."
INDEX { h3cAclNameGroupIndex }
::= { h3cAclNameGroupTable 1 }
H3cAclNameGroupEntry ::=
SEQUENCE {
h3cAclNameGroupIndex
Integer32,
h3cAclNameGroupCreateName
OCTET STRING,
h3cAclNameGroupTypes
INTEGER,
h3cAclNameGroupMatchOrder
INTEGER,
h3cAclNameGroupSubitemNum
Integer32,
h3cAclNameGroupRowStatus
RowStatus
}
h3cAclNameGroupIndex OBJECT-TYPE
SYNTAX Integer32 (10000..12999)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of name-acl group."
::= { h3cAclNameGroupEntry 1 }
h3cAclNameGroupCreateName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of name-acl group."
::= { h3cAclNameGroupEntry 2 }
h3cAclNameGroupTypes OBJECT-TYPE
SYNTAX INTEGER
{
basic(1),
advanced(2),
ifBased(3),
link(4),
user(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of name-acl group."
::= { h3cAclNameGroupEntry 3 }
h3cAclNameGroupMatchOrder OBJECT-TYPE
SYNTAX INTEGER
{
config(1),
auto(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The match-order of name-acl group."
DEFVAL { config }
::= { h3cAclNameGroupEntry 4 }
h3cAclNameGroupSubitemNum OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of name-acl group's node."
::= { h3cAclNameGroupEntry 5 }
h3cAclNameGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus, now support three state: CreateAndGo, Active, Destroy."
::= { h3cAclNameGroupEntry 6 }
--
-- h3cAclBasicRuleTable
--
h3cAclBasicRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cAclBasicRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure the rule for basic acl group."
::= { h3cAclMibObjects 4 }
h3cAclBasicRuleEntry OBJECT-TYPE
SYNTAX H3cAclBasicRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define the index of h3cAclBasicRuleTable."
INDEX { h3cAclBasicAclNum, h3cAclBasicSubitem }
::= { h3cAclBasicRuleTable 1 }
H3cAclBasicRuleEntry ::=
SEQUENCE {
h3cAclBasicAclNum
Integer32,
h3cAclBasicSubitem
Integer32,
h3cAclBasicAct
INTEGER,
h3cAclBasicSrcIp
IpAddress,
h3cAclBasicSrcWild
IpAddress,
h3cAclBasicTimeRangeName
OCTET STRING,
h3cAclBasicFragments
TruthValue,
h3cAclBasicLog
TruthValue,
h3cAclBasicEnable
TruthValue,
h3cAclBasicCount
Counter32,
h3cAclBasicCountClear
INTEGER,
h3cAclBasicRowStatus
RowStatus
}
h3cAclBasicAclNum OBJECT-TYPE
SYNTAX Integer32 (0|2000..2999|10000..12999)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of basic acl group."
::= { h3cAclBasicRuleEntry 1 }
h3cAclBasicSubitem OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The subindex of basic acl group."
::= { h3cAclBasicRuleEntry 2 }
h3cAclBasicAct OBJECT-TYPE
SYNTAX INTEGER
{
permit(1),
deny(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action of basic acl rule."
::= { h3cAclBasicRuleEntry 3 }
h3cAclBasicSrcIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Source IP-address of basic acl rule."
::= { h3cAclBasicRuleEntry 4 }
h3cAclBasicSrcWild OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Source IP-address wild of basic acl rule."
::= { h3cAclBasicRuleEntry 5 }
h3cAclBasicTimeRangeName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Time-range of basic acl rule."
::= { h3cAclBasicRuleEntry 6 }
h3cAclBasicFragments OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The flag of matching fragmented packet."
::= { h3cAclBasicRuleEntry 7 }
h3cAclBasicLog OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The flag of log."
::= { h3cAclBasicRuleEntry 8 }
h3cAclBasicEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The rule is active or not.
true : active
false : inactive
"
::= { h3cAclBasicRuleEntry 9 }
h3cAclBasicCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of matched by basic rule."
::= { h3cAclBasicRuleEntry 10 }
h3cAclBasicCountClear OBJECT-TYPE
SYNTAX INTEGER
{
cleared(1),
nouse(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Reset the value of counter."
::= { h3cAclBasicRuleEntry 11 }
h3cAclBasicRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus, now support three state: CreateAndGo, Active, Destroy."
::= { h3cAclBasicRuleEntry 12 }
--
-- h3cAclAdvancedRuleTable
--
h3cAclAdvancedRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cAclAdvancedRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure the rule for advanced acl group."
::= { h3cAclMibObjects 5 }
h3cAclAdvancedRuleEntry OBJECT-TYPE
SYNTAX H3cAclAdvancedRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define the index of h3cAclAdvancedRuleTable."
INDEX { h3cAclAdvancedAclNum, h3cAclAdvancedSubitem }
::= { h3cAclAdvancedRuleTable 1 }
H3cAclAdvancedRuleEntry ::=
SEQUENCE {
h3cAclAdvancedAclNum
Integer32,
h3cAclAdvancedSubitem
Integer32,
h3cAclAdvancedAct
INTEGER,
h3cAclAdvancedProtocol
Integer32,
h3cAclAdvancedSrcIp
IpAddress,
h3cAclAdvancedSrcWild
IpAddress,
h3cAclAdvancedSrcOp
INTEGER,
h3cAclAdvancedSrcPort1
Integer32,
h3cAclAdvancedSrcPort2
Integer32,
h3cAclAdvancedDestIp
IpAddress,
h3cAclAdvancedDestWild
IpAddress,
h3cAclAdvancedDestOp
INTEGER,
h3cAclAdvancedDestPort1
Integer32,
h3cAclAdvancedDestPort2
Integer32,
h3cAclAdvancedPrecedence
Integer32,
h3cAclAdvancedTos
Integer32,
h3cAclAdvancedDscp
Integer32,
h3cAclAdvancedEstablish
TruthValue,
h3cAclAdvancedTimeRangeName
OCTET STRING,
h3cAclAdvancedIcmpType
Integer32,
h3cAclAdvancedIcmpCode
Integer32,
h3cAclAdvancedFragments
TruthValue,
h3cAclAdvancedLog
TruthValue,
h3cAclAdvancedEnable
TruthValue,
h3cAclAdvancedCount
Counter32,
h3cAclAdvancedCountClear
INTEGER,
h3cAclAdvancedRowStatus
RowStatus
}
h3cAclAdvancedAclNum OBJECT-TYPE
SYNTAX Integer32 (0|3000..3999|10000..12999)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of advanced acl group."
::= { h3cAclAdvancedRuleEntry 1 }
h3cAclAdvancedSubitem OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The subindex of advanced acl group."
::= { h3cAclAdvancedRuleEntry 2 }
h3cAclAdvancedAct OBJECT-TYPE
SYNTAX INTEGER
{
permit(1),
deny(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action of Advance acl rule."
::= { h3cAclAdvancedRuleEntry 3 }
h3cAclAdvancedProtocol OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The protocol-type of advanced acl group.
<1-255> Protocol number
gre GRE tunneling(47)
icmp Internet Control Message Protocol(1)
igmp Internet Group Management Protocol(2)
ip Any IP protocol
ipinip IP in IP tunneling(4)
ospf OSPF routing protocol(89)
tcp Transmission Control Protocol (6)
udp User Datagram Protocol (17)"
::= { h3cAclAdvancedRuleEntry 4 }
h3cAclAdvancedSrcIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Source IP-address of advanced acl group."
::= { h3cAclAdvancedRuleEntry 5 }
h3cAclAdvancedSrcWild OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Source IP-address wild of advanced acl group."
::= { h3cAclAdvancedRuleEntry 6 }
h3cAclAdvancedSrcOp OBJECT-TYPE
SYNTAX INTEGER
{
invalid(0),
lt(1),
eq(2),
gt(3),
neq(4),
range(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source IP-address's operator of advanced acl group."
::= { h3cAclAdvancedRuleEntry 7 }
h3cAclAdvancedSrcPort1 OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The fourth layer source port1."
::= { h3cAclAdvancedRuleEntry 8 }
h3cAclAdvancedSrcPort2 OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The fourth layer source port2."
::= { h3cAclAdvancedRuleEntry 9 }
h3cAclAdvancedDestIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Destination IP-address of advanced acl group."
::= { h3cAclAdvancedRuleEntry 10 }
h3cAclAdvancedDestWild OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Destination IP-address wild of advanced acl group."
::= { h3cAclAdvancedRuleEntry 11 }
h3cAclAdvancedDestOp OBJECT-TYPE
SYNTAX INTEGER
{
invalid(0),
lt(1),
eq(2),
gt(3),
neq(4),
range(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination IP-address's operator of advanced acl group."
::= { h3cAclAdvancedRuleEntry 12 }
h3cAclAdvancedDestPort1 OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The fourth layer destination port1."
::= { h3cAclAdvancedRuleEntry 13 }
h3cAclAdvancedDestPort2 OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The fourth layer destination port2."
::= { h3cAclAdvancedRuleEntry 14 }
h3cAclAdvancedPrecedence OBJECT-TYPE
SYNTAX Integer32 (0..7|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of IP-packet's precedence.
<0-7> Value of precedence
routine Specify routine precedence(0)
priority Specify priority precedence(1)
immediate Specify immediate precedence(2)
flash Specify flash precedence(3)
flash-override Specify flash-override precedence(4)
critical Specify critical precedence(5)
internet Specify internetwork control precedence(6)
network Specify network control precedence(7) "
::= { h3cAclAdvancedRuleEntry 15 }
h3cAclAdvancedTos OBJECT-TYPE
SYNTAX Integer32 (0..15|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of IP-packet's TOS.
<0-15> Value of TOS(type of service)
max-reliability Match packets with max reliable TOS(2)
max-throughput Match packets with max throughput TOS(4)
min-delay Match packets with min delay TOS(8)
min-monetary-cost Match packets with min monetary cost TOS(1)
normal Match packets with normal TOS(0) "
::= { h3cAclAdvancedRuleEntry 16 }
h3cAclAdvancedDscp OBJECT-TYPE
SYNTAX Integer32 (0..63|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of DSCP.
<0-63> Value of DSCP
af11 Specify Assured Forwarding 11 service(10)
af12 Specify Assured Forwarding 12 service(12)
af13 Specify Assured Forwarding 13 service(14)
af21 Specify Assured Forwarding 21 service(18)
af22 Specify Assured Forwarding 22 service(20)
af23 Specify Assured Forwarding 23 service(22)
af31 Specify Assured Forwarding 31 service(26)
af32 Specify Assured Forwarding 32 service(28)
af33 Specify Assured Forwarding 33 service(30)
af41 Specify Assured Forwarding 41 service(34)
af42 Specify Assured Forwarding 42 service(36)
af43 Specify Assured Forwarding 43 service(38)
be Specify Best Effort service(0)
cs1 Specify Class Selector 1 service(8)
cs2 Specify Class Selector 2 service(16)
cs3 Specify Class Selector 3 service(24)
cs4 Specify Class Selector 4 service(32)
cs5 Specify Class Selector 5 service(40)
cs6 Specify Class Selector 6 service(48)
cs7 Specify Class Selector 7 service(56)
ef Specify Expedited Forwarding service(46)"
::= { h3cAclAdvancedRuleEntry 17 }
h3cAclAdvancedEstablish OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Establish flag."
DEFVAL { false }
::= { h3cAclAdvancedRuleEntry 18 }
h3cAclAdvancedTimeRangeName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Time-range of advanced acl rule."
::= { h3cAclAdvancedRuleEntry 19 }
h3cAclAdvancedIcmpType OBJECT-TYPE
SYNTAX Integer32 (0..255|65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of ICMP packet.
Integer32 ICMP type
echo Type=8, Code=0
echo-reply Type=0, Code=0
fragmentneed-DFset Type=3, Code=4
host-redirect Type=5, Code=1
host-tos-redirect Type=5, Code=3
host-unreachable Type=3, Code=1
information-reply Type=16, Code=0
information-request Type=15, Code=0
net-redirect Type=5, Code=0
net-tos-redirect Type=5, Code=2
net-unreachable Type=3, Code=0
parameter-problem Type=12, Code=0
port-unreachable Type=3, Code=3
protocol-unreachable Type=3, Code=2
reassembly-timeout Type=11, Code=1
source-quench Type=4, Code=0
source-route-failed Type=3, Code=5
timestamp-reply Type=14, Code=0
timestamp-request Type=13, Code=0
ttl-exceeded Type=11, Code=0 "
::= { h3cAclAdvancedRuleEntry 20 }
h3cAclAdvancedIcmpCode OBJECT-TYPE
SYNTAX Integer32 (0..255|65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The code of ICMP packet."
::= { h3cAclAdvancedRuleEntry 21 }