-
Notifications
You must be signed in to change notification settings - Fork 0
/
bladetype2-acl.mib
1321 lines (1183 loc) · 39.4 KB
/
bladetype2-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 NOTICE
-- Copyright (c) Hewlett Packard Company, 2005
-- All rights reserved
--
--
BLADETYPE2-ACL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, IpAddress
FROM SNMPv2-SMI
MacAddress
FROM SNMPv2-TC
hpSwitchBladeType2-Mgmt
FROM HP-SWITCH-PL-MIB
;
acl MODULE-IDENTITY
LAST-UPDATED "200510120000Z" -- 12 October 2005
ORGANIZATION "Hewlett Packard Company"
CONTACT-INFO "[email protected]"
DESCRIPTION
"The MIB module for the Access Control List configuration
and statistics."
::= { hpSwitchBladeType2-Mgmt 9 }
-- MIB_INSERT_START
-- ----------------------------------------------------------------------------
-- { INSERT: bt2acl
-- ----------------------------------------------------------------------------
acConfig OBJECT IDENTIFIER ::= { acl 1 }
acList OBJECT IDENTIFIER ::= { acConfig 1 }
aclBlock OBJECT IDENTIFIER ::= { acConfig 2 }
aclGroup OBJECT IDENTIFIER ::= { acConfig 3 }
-- ---------------------------------------------------------- --
-- Access Control List (ACL) Configuration
-- ---------------------------------------------------------- --
aclCurCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AclCurCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of current ACL configuration."
::= { acList 1 }
aclCurCfgEntry OBJECT-TYPE
SYNTAX AclCurCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Current information about a particular ACL configuration entry."
INDEX { aclCurCfgIndex }
::= { aclCurCfgTable 1 }
AclCurCfgEntry ::= SEQUENCE {
aclCurCfgIndex Unsigned32,
aclCurCfgBlock Unsigned32,
aclCurCfgGroup Unsigned32,
aclCurCfgFilterAction INTEGER,
aclCurCfgFilterActionSetCOS INTEGER,
aclCurCfgEthFmt INTEGER,
aclCurCfgTagFmt INTEGER,
aclCurCfgSrcMACAddress MacAddress,
aclCurCfgSrcMACMask MacAddress,
aclCurCfgDstMACAddress MacAddress,
aclCurCfgDstMACMask MacAddress,
aclCurCfgEthernetTypeName INTEGER,
aclCurCfgEthernetTypeValue INTEGER,
aclCurCfgVLanId INTEGER,
aclCurCfgVLanMask INTEGER,
aclCurCfg8021pPriority INTEGER,
aclCurCfgTypeOfService INTEGER,
aclCurCfgProtocol INTEGER,
aclCurCfgSrcIPAddress IpAddress,
aclCurCfgSrcIPMask IpAddress,
aclCurCfgDstIPAddress IpAddress,
aclCurCfgDstIPMask IpAddress,
aclCurCfgSrcPort INTEGER,
aclCurCfgSrcPortMask INTEGER,
aclCurCfgDstPort INTEGER,
aclCurCfgDstPortMask INTEGER,
aclCurCfgTCPFlags BITS,
aclCurCfgTCPFlagsMask BITS,
aclCurCfgEgressPorts OCTET STRING,
aclCurCfgStatistics INTEGER
}
aclCurCfgIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index associated with this ACL entry."
::= { aclCurCfgEntry 1 }
aclCurCfgBlock OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the ACL block to which this ACL entry is a member of.
A value of zero means the ACL is not a member of any block."
::= { aclCurCfgEntry 2 }
aclCurCfgGroup OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the ACL group to which this ACL entry is a member of.
A value of zero means the ACL is not a member of any group."
::= { aclCurCfgEntry 3 }
aclCurCfgFilterAction OBJECT-TYPE
SYNTAX INTEGER {
none(0),
permit(1),
deny(2),
setcos(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The action to be performed on a packet that matches the filter
settings of this ACL entry."
::= { aclCurCfgEntry 4 }
aclCurCfgFilterActionSetCOS OBJECT-TYPE
SYNTAX INTEGER {
none(0),
cos0(1),
cos1(2),
cos2(3),
cos3(4),
cos4(5),
cos5(6),
cos6(7),
cos7(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value to be used when the action to be performed is setCOS
for this ACL entry."
::= { aclCurCfgEntry 5 }
aclCurCfgEthFmt OBJECT-TYPE
SYNTAX INTEGER {
none(0),
ethernet2(1),
snap(2),
llc(3),
ieee802dot3(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The packet ethernet format to be filtered."
::= { aclCurCfgEntry 6 }
aclCurCfgTagFmt OBJECT-TYPE
SYNTAX INTEGER {
untagged(1),
tagged(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The packet tag format to be filtered."
::= { aclCurCfgEntry 7 }
aclCurCfgSrcMACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source MAC address to be filtered."
::= { aclCurCfgEntry 9 }
aclCurCfgSrcMACMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address mask applied to aclCurCfgSrcMACAddress for filtering."
::= { aclCurCfgEntry 10 }
aclCurCfgDstMACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination MAC address to be filtered."
::= { aclCurCfgEntry 11 }
aclCurCfgDstMACMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address mask applied to aclCurCfgDstMACAddress for filtering."
::= { aclCurCfgEntry 12 }
aclCurCfgEthernetTypeName OBJECT-TYPE
SYNTAX INTEGER {
none(0),
arp(1),
ipv4(2),
ipv6(3),
mpls(4),
rarp(5),
any(6),
other(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Ethernet type to be filtered. If the value of this
object is other(7), the value of aclNewCfgEthernetTypeValue
indicates the ethernet type that will be filtered."
::= { aclCurCfgEntry 13 }
aclCurCfgEthernetTypeValue OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Ethernet type value to be filtered. The value of this
object is equivalent to the value of aclNewCfgEthernetTypeName
except when the value of aclNewCfgEthernetTypeName is other(7),
which can be any user-defined value for this object."
::= { aclCurCfgEntry 14 }
aclCurCfgVLanId OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The virtual LAN identifier to be filtered."
::= { aclCurCfgEntry 15 }
aclCurCfgVLanMask OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mask applied to aclCurCfgVLanId for filtering."
::= { aclCurCfgEntry 16 }
aclCurCfg8021pPriority OBJECT-TYPE
SYNTAX INTEGER {
none(0),
priority0(1),
priority1(2),
priority2(3),
priority3(4),
priority4(5),
priority5(6),
priority6(7),
priority7(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 802.1p priority to be filtered."
::= { aclCurCfgEntry 17 }
aclCurCfgTypeOfService OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of service to be filtered."
::= { aclCurCfgEntry 18 }
aclCurCfgProtocol OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol to be filtered."
::= { aclCurCfgEntry 19 }
aclCurCfgSrcIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source IP address to be filtered."
::= { aclCurCfgEntry 20 }
aclCurCfgSrcIPMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address mask applied to aclCurCfgSrcIPAddress for filtering."
::= { aclCurCfgEntry 21 }
aclCurCfgDstIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination IP address to be filtered."
::= { aclCurCfgEntry 22 }
aclCurCfgDstIPMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address mask applied to aclCurCfgDstIPAddress for filtering."
::= { aclCurCfgEntry 23 }
aclCurCfgSrcPort OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source TCP/UDP port number to be filtered."
::= { aclCurCfgEntry 24 }
aclCurCfgSrcPortMask OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mask applied to aclCurCfgSrcPort for filtering."
::= { aclCurCfgEntry 25 }
aclCurCfgDstPort OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination TCP/UDP port number to be filtered."
::= { aclCurCfgEntry 26 }
aclCurCfgDstPortMask OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mask applied to aclCurCfgDstPort for filtering."
::= { aclCurCfgEntry 27 }
aclCurCfgTCPFlags OBJECT-TYPE
SYNTAX BITS {
reserved1(0),
reserved2(1),
tcpURG(2),
tcpACK(3),
tcpPSH(4),
tcpRST(5),
tcpSYN(6),
tcpFIN(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TCP flags to be filtered.
OCTET
xxxxxxxx
||||..||
||||..||_tcpFIN(7)
||||..|__tcpSYN(6)
||||
||||_____tcpACK(3)
|||______tcpURG(2)
||_______reserved2(1)
|________reserved1(0)
where:
- reserved1 - 0;
- reserved2 - 0;
- x - 0 or 1;
"
::= { aclCurCfgEntry 28 }
aclCurCfgTCPFlagsMask OBJECT-TYPE
SYNTAX BITS {
reserved1(0),
reserved2(1),
tcpURG(2),
tcpACK(3),
tcpPSH(4),
tcpRST(5),
tcpSYN(6),
tcpFIN(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TCP flags mask.
OCTET
xxxxxxxx
||||..||
||||..||_tcpFIN(7)
||||..|__tcpSYN(6)
||||
||||_____tcpACK(3)
|||______tcpURG(2)
||_______reserved2(1)
|________reserved1(0)
where:
- reserved1 - 0;
- reserved2 - 0;
- x - 0 or 1;
"
::= { aclCurCfgEntry 39 }
aclCurCfgEgressPorts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port list in the ACL configured for egress filtering.
The ports are presented in bitmap format, as follows:
OCTET 1 OCTET 2 .....
xxxxxxxx xxxxxxxx .....
|| || |
|| || |_ port 9
|| ||
|| ||___ port 8
|| |____ port 7
|| . . .
||_________ port 2
|__________ port 1
where x:
1 - the represented port is configured for filtering.
0 - the represented port is not configured for filtering."
::= { aclCurCfgEntry 29 }
aclCurCfgStatistics OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether statistics collection for this ACL is enabled or not."
::= { aclCurCfgEntry 30 }
--
-- New ACL Configuration Table
--
aclNewCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AclNewCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of new ACL configuration."
::= { acList 2 }
aclNewCfgEntry OBJECT-TYPE
SYNTAX AclNewCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"New information about a particular ACL configuration."
INDEX { aclNewCfgIndex }
::= { aclNewCfgTable 1 }
AclNewCfgEntry ::= SEQUENCE {
aclNewCfgIndex Unsigned32,
aclNewCfgBlock Unsigned32,
aclNewCfgGroup Unsigned32,
aclNewCfgFilterAction INTEGER,
aclNewCfgFilterActionSetCOS INTEGER,
aclNewCfgEthFmt INTEGER,
aclNewCfgTagFmt INTEGER,
aclNewCfgSrcMACAddress MacAddress,
aclNewCfgSrcMACMask MacAddress,
aclNewCfgDstMACAddress MacAddress,
aclNewCfgDstMACMask MacAddress,
aclNewCfgEthernetTypeName INTEGER,
aclNewCfgEthernetTypeValue INTEGER,
aclNewCfgVLanId INTEGER,
aclNewCfgVLanMask INTEGER,
aclNewCfg8021pPriority INTEGER,
aclNewCfgTypeOfService INTEGER,
aclNewCfgProtocol INTEGER,
aclNewCfgSrcIPAddress IpAddress,
aclNewCfgSrcIPMask IpAddress,
aclNewCfgDstIPAddress IpAddress,
aclNewCfgDstIPMask IpAddress,
aclNewCfgSrcPort INTEGER,
aclNewCfgSrcPortMask INTEGER,
aclNewCfgDstPort INTEGER,
aclNewCfgDstPortMask INTEGER,
aclNewCfgTCPFlags BITS,
aclNewCfgTCPFlagsMask BITS,
aclNewCfgEgressPorts OCTET STRING,
aclNewCfgStatistics INTEGER,
aclNewCfgAddEgressPort Unsigned32,
aclNewCfgRemoveEgressPort Unsigned32,
aclNewCfgDelete INTEGER
}
aclNewCfgIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index associated with this ACL entry."
::= { aclNewCfgEntry 1 }
aclNewCfgBlock OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the ACL block to which this ACL entry is a member of.
A value of zero means the ACL is not a member of any block."
::= { aclNewCfgEntry 2 }
aclNewCfgGroup OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the ACL group to which this ACL entry is a member of.
A value of zero means the ACL is not a member of any group."
::= { aclNewCfgEntry 3 }
aclNewCfgFilterAction OBJECT-TYPE
SYNTAX INTEGER {
none(0),
permit(1),
deny(2),
setcos(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The action to be performed on a packet that matches the filter
settings of this ACL entry."
::= { aclNewCfgEntry 4 }
aclNewCfgFilterActionSetCOS OBJECT-TYPE
SYNTAX INTEGER {
none(0),
cos0(1),
cos1(2),
cos2(3),
cos3(4),
cos4(5),
cos5(6),
cos6(7),
cos7(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The COS queue to be used when the action for this ACL entry is
set to SetCOS."
::= { aclNewCfgEntry 5 }
aclNewCfgEthFmt OBJECT-TYPE
SYNTAX INTEGER {
none(0),
ethernet2(1),
snap(2),
llc(3),
ieee802dot3(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The packet ethernet format to be filtered."
::= { aclNewCfgEntry 6 }
aclNewCfgTagFmt OBJECT-TYPE
SYNTAX INTEGER {
none(1),
tagged(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The packet tagging format to be filtered."
::= { aclNewCfgEntry 7 }
aclNewCfgSrcMACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source MAC address to be filtered. Whenever this object is
set to a nonzero value, the aclNewCfgSrcMACMask object, if not
yet set, will be automatically set to ff:ff:ff:ff:ff."
::= { aclNewCfgEntry 9 }
aclNewCfgSrcMACMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The address mask to be applied to aclNewCfgSrcMACAddress
for filtering."
::= { aclNewCfgEntry 10 }
aclNewCfgDstMACAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The destination MAC address to be filtered. Whenever this object
is set to a nonzero value, the aclNewCfgDstMACMask object, if not
yet set, will be automatically set to ff:ff:ff:ff:ff."
::= { aclNewCfgEntry 11 }
aclNewCfgDstMACMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The address mask to be applied to aclNewCfgDstMACAddress
for filtering."
::= { aclNewCfgEntry 12 }
aclNewCfgEthernetTypeName OBJECT-TYPE
SYNTAX INTEGER {
none(0),
arp(1),
ipv4(2),
ipv6(3),
mpls(4),
rarp(5),
any(6),
other(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Ethernet type to be filtered. If the value of this
object is other(7), the value of aclNewCfgEthernetTypeValue
indicates the ethernet type that will be filtered. If this
object is set to a value other than other(7), the value of
the aclNewCfgEthernetTypeValue object is automatically set,
as follows:
aclNewCfgEthernetTypeName aclNewCfgEthernetTypeValue
none(0) 0
arp(1) 2054 (0x0806)
ipv4(2) 2048 (0x0800)
ipv6(3) 34525 (0x86dd)
mpls(4) 34887 (0x8847)
rarp(5) 32821 (0x8035)
any(6) 65535 (0xffff)
"
::= { aclNewCfgEntry 13 }
aclNewCfgEthernetTypeValue OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Ethernet type value to be filtered. The value of this
object is equivalent to the value of aclNewCfgEthernetTypeName
except when the value of aclNewCfgEthernetTypeName is other(7),
which can be any user-defined value for this object."
::= { aclNewCfgEntry 14 }
aclNewCfgVLanId OBJECT-TYPE
SYNTAX INTEGER (1..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The virtual LAN identifier to be filtered. Whenever this object
is set to a nonzero value, the aclNewCfgVLanMask object, if not
yet set, will be automatically set to 4095 (0xfff)."
::= { aclNewCfgEntry 15 }
aclNewCfgVLanMask OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mask to be applied to aclNewCfgVLanId for filtering."
::= { aclNewCfgEntry 16 }
aclNewCfg8021pPriority OBJECT-TYPE
SYNTAX INTEGER {
none(0),
priority0(1),
priority1(2),
priority2(3),
priority3(4),
priority4(5),
priority5(6),
priority6(7),
priority7(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 802.1p priority to be filtered."
::= { aclNewCfgEntry 17 }
aclNewCfgTypeOfService OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of service to be filtered."
::= { aclNewCfgEntry 18 }
aclNewCfgProtocol OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The protocol to be filtered."
::= { aclNewCfgEntry 19 }
aclNewCfgSrcIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source IP address to be filtered. Whenever this object is set
to a nonzero value, the aclNewCfgSrcIPMask object, if not yet set,
will be automatically set to 255.255.255.255."
::= { aclNewCfgEntry 20 }
aclNewCfgSrcIPMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The address mask to be applied to aclNewCfgSrcIPAddress
for filtering."
::= { aclNewCfgEntry 21 }
aclNewCfgDstIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The destination IP address to be filtered. Whenever this object is set
to a nonzero value, the aclNewCfgDstIPMask object, if not yet set,
will be automatically set to 255.255.255.255."
::= { aclNewCfgEntry 22 }
aclNewCfgDstIPMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The address mask to be applied to aclNewCfgDstIPAddress for filtering."
::= { aclNewCfgEntry 23 }
aclNewCfgSrcPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source TCP/UDP port number to be filtered. Whenever this
object is set if the aclNewCfgSrcPortMask object is not set
will be automatically set to 65535 (0xffff)."
::= { aclNewCfgEntry 24 }
aclNewCfgSrcPortMask OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mask to be applied to aclNewCfgSrcPort for filtering."
::= { aclNewCfgEntry 25 }
aclNewCfgDstPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The destination TCP/UDP port number to be filtered. Whenever this
object is set the aclNewCfgSrcPortMask object, if not yet set, will
be automatically set to 65535 (0xffff)."
::= { aclNewCfgEntry 26 }
aclNewCfgDstPortMask OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mask to be applied to aclNewCfgDstPort for filtering."
::= { aclNewCfgEntry 27 }
aclNewCfgTCPFlags OBJECT-TYPE
SYNTAX BITS {
reserved1(0),
reserved2(1),
tcpURG(2),
tcpACK(3),
tcpPSH(4),
tcpRST(5),
tcpSYN(6),
tcpFIN(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP flags to be filtered.
The TCP flags are presented in bitmap format, as follows:
OCTET
xxxxxxxx
||||..||
||||..||_tcpFIN(7)
||||..|__tcpSYN(6)
||||
||||_____tcpACK(3)
|||______tcpURG(2)
||_______reserved2(1)
|________reserved1(0)
where:
- reserved1 - 0;
- reserved2 - 0;
- x - 0 or 1;
"
::= { aclNewCfgEntry 28 }
aclNewCfgTCPFlagsMask OBJECT-TYPE
SYNTAX BITS {
reserved1(0),
reserved2(1),
tcpURG(2),
tcpACK(3),
tcpPSH(4),
tcpRST(5),
tcpSYN(6),
tcpFIN(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP flags mask.
The TCP flags are presented in bitmap format, as follows:
OCTET
xxxxxxxx
||||..||
||||..||_tcpFIN(7)
||||..|__tcpSYN(6)
||||
||||_____tcpACK(3)
|||______tcpURG(2)
||_______reserved2(1)
|________reserved1(0)
where:
- reserved1 - 0;
- reserved2 - 0;
- x - 0 or 1;
Default value is 0x3f."
::= { aclNewCfgEntry 39 }
aclNewCfgEgressPorts OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port list in the ACL configured for egress filtering.
The ports are presented in bitmap format, as follows:
OCTET 1 OCTET 2 .....
xxxxxxxx xxxxxxxx .....
|| || |
|| || |_ port 9
|| ||
|| ||___ port 8
|| |____ port 7
|| . . .
||_________ port 2
|__________ port 1
where x:
1 - the represented port is configured for filtering.
0 - the represented port is not configured for filtering."
::= { aclNewCfgEntry 29 }
aclNewCfgStatistics OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether statistics collection for this ACL is enabled or not."
::= { aclNewCfgEntry 30 }
aclNewCfgAddEgressPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port to be added to the specified ACL for egress filtering.
A value of zero is always returned when this object is read."
::= { aclNewCfgEntry 31 }
aclNewCfgRemoveEgressPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port to be removed from the specified ACL. A value of zero
is always returned when this object is read."
::= { aclNewCfgEntry 32 }
aclNewCfgDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an action object to delete an ACL entry. A value of
other(1) is always returned when this object is read."
::= { aclNewCfgEntry 33 }
-- ---------------------------------------------------------- --
-- ACL Block Configuration
-- ---------------------------------------------------------- --
aclBlockCurCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AclBlockCurCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of current ACL block configuration."
::= { aclBlock 1 }
aclBlockCurCfgEntry OBJECT-TYPE
SYNTAX AclBlockCurCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Current information about a particular ACL block configuration."
INDEX { aclBlockCurCfgIndex }
::= { aclBlockCurCfgTable 1 }
AclBlockCurCfgEntry ::= SEQUENCE {
aclBlockCurCfgIndex Unsigned32,
aclBlockCurCfgMemberAcls OCTET STRING
}
aclBlockCurCfgIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index associated with this ACL block entry."
::= { aclBlockCurCfgEntry 1 }
aclBlockCurCfgMemberAcls OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ACL members of this ACL block, presented in bitmap
format, as follows:
OCTET 1 OCTET 2 .....
xxxxxxxx xxxxxxxx .....
|| || |
|| || |_ ACL 9
|| ||
|| ||___ ACL 8
|| |____ ACL 7
|| . . .
||_________ ACL 2
|__________ ACL 1
where x:
1 - the represented ACL is a member of the block.
0 - the represented ACL is not a member of the block."
::= { aclBlockCurCfgEntry 2 }
aclBlockNewCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AclBlockNewCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of new ACL block configuration."
::= { aclBlock 2 }