-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDEVFILTER-MIB
779 lines (691 loc) · 22.7 KB
/
DEVFILTER-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
DEVFILTER-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress
FROM RFC1155-SMI
OBJECT-TYPE, MODULE-IDENTITY, Integer32
FROM SNMPv2-SMI
MacAddress, DisplayString, RowStatus
FROM SNMPv2-TC
device
FROM ANIROOT-MIB;
aniDevFilter MODULE-IDENTITY
LAST-UPDATED "0105091130Z" -- Wed May 9 11:30:00 PDT 2001
ORGANIZATION "Aperto Networks"
CONTACT-INFO
"
Postal: Aperto Networks Inc
1637 S Main Street
Milpitas, California 95035
Tel: +1 408 719 9977
"
DESCRIPTION
"This group provides Filter related information for BSU or SU.
"
::= { device 8 }
aniDevFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AniDevFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table allows the user to view the configured IP
Filters.
"
::= { aniDevFilter 1 }
aniDevFilterEntry OBJECT-TYPE
SYNTAX AniDevFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing objects for each IP Filter
configured.
"
INDEX { aniDevFilterIfIndex, aniDevFilterIdentifier }
::= { aniDevFilterTable 1 }
AniDevFilterEntry ::= SEQUENCE {
aniDevFilterIfIndex INTEGER,
aniDevFilterIdentifier Integer32,
aniDevFilterName DisplayString,
aniDevFilterPriority Integer32,
aniDevFilterActivationState INTEGER,
aniDevFilterPermission INTEGER,
aniDevFilterIpProtocol Integer32,
aniDevFilterIpSaddr IpAddress,
aniDevFilterIpSmask IpAddress,
aniDevFilterIpDaddr IpAddress,
aniDevFilterIpDmask IpAddress,
aniDevFilterIpSourceStart INTEGER,
aniDevFilterIpSourceEnd INTEGER,
aniDevFilterIpDestStart INTEGER,
aniDevFilterIpDestEnd INTEGER,
aniDevFilterIpOptions Integer32,
aniDevFilterIpSecOptions INTEGER,
aniDevFilterIcmpMsgType INTEGER,
aniDevFilterIcmpSubcode INTEGER,
aniDevFilterTcpFlags Integer32,
aniDevFilterDestMacMask OCTET STRING,
aniDevFilterSourceMac MacAddress,
aniDevFilterEnetType DisplayString,
aniDevFilterLlcDSAP DisplayString,
aniDevFilterLlcSSAP DisplayString,
aniDevFilterLlcControl DisplayString,
aniDevFilterLocalCode DisplayString,
aniDevFilterRowStatus RowStatus,
aniDevFilterUserPriorityHi INTEGER,
aniDevFilterUserPriorityLo INTEGER,
aniDevFilterVlanIdStart INTEGER,
aniDevFilterVlanIdEnd INTEGER
}
aniDevFilterIfIndex OBJECT-TYPE
SYNTAX INTEGER {
ethernet(1),
wireless-port1(2),
wireless-port2(3),
wireless-port3(4),
wireless-port4(5),
wireless-port5(6),
wireless-port6(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Interface Type.
On SU, only ethernet(1) and wireless-port1(2) are valid.
On BSU, ethernet(1) and all configured wireless interfaces
-- wireless-port1(2), wireless-port2(3), wireless-port3(4),
wireless-port4(5), wireless-port5(6), wireless-port6(7) are valid,
that is, filtering should be allowed on these wireless
interfaces only if they are configured.
"
DEFVAL { 1 }
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 1 }
aniDevFilterIdentifier OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A unique number which identifies the filtering rule.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 2 }
aniDevFilterName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A name which identifies the filtering rule.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 3 }
aniDevFilterPriority OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority for the filtering rule. It should be unique.
A higher number means higher priority.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 4 }
aniDevFilterActivationState OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
active(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of the filtering rule.
"
DEFVAL { 2 }
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 5 }
aniDevFilterPermission OBJECT-TYPE
SYNTAX INTEGER {
block(1),
pass(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The permissions for the filtering rule.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 6 }
aniDevFilterIpProtocol OBJECT-TYPE
SYNTAX Integer32 (0..257)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP protocol value.
List of well known IP Protocols:
Protocol Value
-------- -----
ICMP 1
IGMP 2
TCP 6
EGP 8
UDP 17
IPIP 94
RSVP 46
GRE 47
TCP or UDP 257
Apart from the above protocols, the user can also specify
other values.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 7 }
aniDevFilterIpSaddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source IP address for this Filter.
IP Source Address and Subnet Mask go in a pair.
So if aniDevFilterIpSaddr is configured, then
aniDevFilterIpSmask should be configured as well and
vice versa.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 8 }
aniDevFilterIpSmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Subnet mask for the source IP Address.
IP Source Address and Subnet Mask go in a pair.
So if aniDevFilterIpSaddr is configured, then
aniDevFilterIpSmask should be configured as well and
vice versa.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 9 }
aniDevFilterIpDaddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The destination IP address for this Filter.
IP Destination Address and Subnet Mask go in a pair.
So if aniDevFilterIpDaddr is configured, then
aniDevFilterIpDmask should be configured as well and
vice versa.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 10 }
aniDevFilterIpDmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Subnet mask for the destination IP Address.
IP Destination Address and Subnet Mask go in a pair.
So if aniDevFilterIpDaddr is configured, then
aniDevFilterIpDmask should be configured as well and
vice versa.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 11 }
aniDevFilterIpSourceStart OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lowest bound value for the source port number.
List of Some Well Known Ports:
Application Port
----------- ----
Ftp Data 20
Ftp Control 21
HTTP 80
IMAP2 143
SNMP 161
POP3 110
SMTP 25
Telnet 23
TFTP 69
BootP Server 67
BootP Client 68
Gopher 70
Finger 79
BGP 179
In addition to the list, the user can enter any other
value as well.
This field is valid only if the aniDevFilterIpProtocol
field is set to TCP, UDP, (TCP or UDP) or not specified by the user.
aniIpFilterIpSourceEnd should be >=
aniIpFilterIpSourceStart.
Whenever aniIpFilterIpSourceEnd is configured,
aniIpFilterIpSourceStart should be configured as well.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 12 }
aniDevFilterIpSourceEnd OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The highest bound value for the source port number.
Refer to the Well known ports list under
aniIpFilterIpSourceStart description.
In addition to the list, the user can enter any other
value as well.
This field is valid only if the aniDevFilterIpProtocol is
set to TCP, UDP, (TCP or UDP) or not specified by the user.
aniDevFilterIpSourceEnd should be >= aniDevFilterIpSourceStart.
Whenever aniDevFilterIpSourceEnd is configured,
aniDevFilterIpSourceStart should be configured as well.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 13 }
aniDevFilterIpDestStart OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lowest bound value for the destination port number.
Refer to the Well known ports list under
aniIpFilterIpSourceStart description.
In addition to the list, the user can enter any other
value as well.
This field is valid only if the aniDevFilterIpProtocol
is set to TCP, UDP, (TCP or UDP) or not specified by the user.
aniDevFilterIpDestEnd should be >= aniDevFilterIpDestStart.
Whenever aniDevFilterIpDestStart is configured,
aniDevFilterIpDestEnd should be configured as well.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 14 }
aniDevFilterIpDestEnd OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The highest bound value for the destination port number.
Refer to the Well known ports list under
aniIpFilterIpSourceStart description.
In addition to the list, the user can enter any other
value as well.
This field is valid only if the aniDevFilterIpProtocol
is set to TCP, UDP, (TCP or UDP) or not specified by the user.
aniDevFilterIpDestEnd should be >= aniDevFilterIpDestStart.
Whenever aniDevFilterIpDestStart is configured,
aniDevFilterIpDestEnd should be configured as well.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 15 }
aniDevFilterIpOptions OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Mask value for the IP Options.
No Operation (0x000001)
Route Record (0x000002)
Time Stamp (0x000040)
MTU Probe (0x000008)
MTU Reply (0x000010)
Trace Route (0x000080)
Address Extension (0x004000)
Loose Source Route (0x000200)
Strict Source Route (0x002000)
Extended Security (0x000400)
Security (0x000100)
Commercial Security (0x000800)
Experimental Measurement (0x000004)
Experimental Flow Control (0x040000)
Experimental Access Control (0x008000)
Stream Id (0x001000)
IMI Traffic Descriptor (0x010000)
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 16 }
aniDevFilterIpSecOptions OBJECT-TYPE
SYNTAX INTEGER {
top-secret(1),
secret(2),
confidential(3),
unclassified(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP Security Value.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 17 }
aniDevFilterIcmpMsgType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Message Type for ICMP Protocol.
This field is valid only if the aniDevFilterIpProtocol
is set to ICMP or not specified by the user.
Valid Range:
ICMP Message Type SubCode
------------ ---- ----
Echo reply 0
------------------------------------------------------------
Destination
Unreachable 3 0 = net unreachable;
1 = host unreachable;
2 = protocol unreachable;
3 = port unreachable;
4 = fragmentation needed and DF set;
5 = source route failed.
------------------------------------------------------------
Source Quench 4
------------------------------------------------------------
Redirect 5 0 = Redirect datagrams for the Network.
1 = Redirect datagrams for the Host.
2 = Redirect datagrams for the Type of
Service and Network.
3 = Redirect datagrams for the Type of
Service and Host.
------------------------------------------------------------
Echo 8
------------------------------------------------------------
Time Exceeded
Message 11 0 = time to live exceeded in transit;
1 = fragment reassembly time exceeded.
------------------------------------------------------------
Parameter
Problem 12 0 = pointer indicates the error.
------------------------------------------------------------
Timestamp
message 13
------------------------------------------------------------
Timestamp
reply message 14
------------------------------------------------------------
Information
Request 15
------------------------------------------------------------
Information
Reply 16
------------------------------------------------------------
Address Mask
request 17
------------------------------------------------------------
Address Mask
reply 18
------------------------------------------------------------
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 18 }
aniDevFilterIcmpSubcode OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Subcode for ICMP Protocol.
This field is valid only if the aniDevFilterIpProtocol is
set to ICMP or not specified by the user.
If this field is specified then aniDevFilterIcmpMsgType
should already be specified. The values allowed for ICMP Code
depend on aniDevFilterIcmpMsgType.
Refer to the description under aniDevFilterIcmpMsgType for a
detail list of values.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 19 }
aniDevFilterTcpFlags OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP Flags.
The valid range:
Urgent (0x20)
Acknowledgement (0x10)
Push (0x08)
Reset (0x04)
Sync (0x02)
Sync-Ack (0x12)
Finish (0x01)
Finish-Ack (0x11)
This field is valid only if the aniDevFilterIpProtocol
is set to ICMP or not specified by the user.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 20 }
aniDevFilterDestMacMask OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MAC address and mask value for destination.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 21 }
aniDevFilterSourceMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MAC Address of the source.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 22 }
aniDevFilterEnetType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Ethernet type value in the ethernet header.
The maximum length of the ethernet packet is 1500 (0x5DC).
The value of the ethernet type must be greater than 1500.
Appicable for Ethernet Version II frame type. If this type
is being used then, DSAP (LLC Header), SSAP (LLC Header),
Control Byte (LLC Header) and Local Code (SNAP) cannot be
used and vice-versa.
Valid Range: 0x5DD to 0xFFFF
List of Ethernet Types:
-----------------------------------------------------------
0x800 DOD Internet Protocol (IP)
-----------------------------------------------------------
0x806 Address Resolution Protocol (ARP)
(for IP and for CHAOS)
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 23 }
aniDevFilterLlcDSAP OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The DSAP (Destination Service Access Point) value
in LLC Header.
Valid Range: 0 to 0xFF
Applicable for IEEE 802.3 Frame Format only.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 24 }
aniDevFilterLlcSSAP OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SSAP (Source Service Access Point) value
in LLC Header.
Valid Range: 0 to 0xFF
Applicable for IEEE 802.3 Frame Format only.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 25 }
aniDevFilterLlcControl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Control Byte of the LLC Header.
Valid Range: 0 to 0xFF
Applicable for IEEE 802.3 Frame Format only.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 26 }
aniDevFilterLocalCode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Local Code for SNAP ethernet type.
Applicable for IEEE 802.3 Frame Format only.
DSAP should be set to 0xAA, SSAP should be set to 0xAA,
Control Byte should be set to 0x03.
Valid range: 0 - 0xFFFF.
List of Ethernet Types:
--------------------------------------------------------
0x800 DOD Internet Protocol (IP)
--------------------------------------------------------
0x806 Address Resolution Protocol (ARP)
(for IP and for CHAOS)
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 27 }
aniDevFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This represents the state of an entry within the
table. It is used to manage creation and deletion of rows.
The values include:
active(1)
notInService(2)
notReady(3)
createAndGo(4)
createAndWait(5)
destroy(6)
When a Get request is sent, this object returns either
active(1), notInService(2) or notReady(3) depending on
the state of this row.
A new row can be Created using either createAndGo(4) or
createAndWait(5).
For Deleting a row, this field should be set to destroy(6).
"
::= { aniDevFilterEntry 28 }
aniDevFilterUserPriorityHi OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The high priority byte of the user priority.
The user priority specifies the matching
parameters for the IEEE 802.1P user_priority
bits. An Ethernet packet with IEEE 802.1P
user_priority value 'priority' matches these
parameters if pri-low <= priority <= pri_high.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 29 }
aniDevFilterUserPriorityLo OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The low priority byte of the user priority.
The user priority specifies the matching
parameters for the IEEE 802.1P user_priority
bits. An Ethernet packet with IEEE 802.1P
user_priority value 'priority' matches these
parameters if pri-low <= priority <= pri_high.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 30 }
aniDevFilterVlanIdStart OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower limit for the VLAN ID.
This value is used to specify the lower limit in the
range. Any IEEE 802.1P packet from a customer's VLAN
that falls into the range matches the rule.
aniDevFilterVlanIdStart and aniDevFilterVlanIdEnd
must be defined in a pair.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 31 }
aniDevFilterVlanIdEnd OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper limit for the VLAN ID.
This value is used to specify the upper limit in the
range. Any IEEE 802.1P packet from a customer's VLAN
that falls into the range matches the rule.
aniUSClassifierVlanIdStart and aniUSClassifierVlanIdEnd
must be defined in a pair.
"
--DEFAULT next-function-async aniDevFilterEntry_next
::= { aniDevFilterEntry 32 }
aniDevFilterIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF AniDevFilterIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table allows the user to enable/disable Filtering
per interface basis.
"
::= { aniDevFilter 2 }
aniDevFilterIfEntry OBJECT-TYPE
SYNTAX AniDevFilterIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing objects for each IP Filter
interface configured.
"
INDEX { aniDevFilterIfIdentifier }
::= { aniDevFilterIfTable 1 }
AniDevFilterIfEntry ::= SEQUENCE {
aniDevFilterIfIdentifier INTEGER,
aniDevFilterIfFlag INTEGER
}
aniDevFilterIfIdentifier OBJECT-TYPE
SYNTAX INTEGER {
ethernet(1),
wireless-port1(2),
wireless-port2(3),
wireless-port3(4),
wireless-port4(5),
wireless-port5(6),
wireless-port6(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Interface Type.
On SU, only ethernet(1) and wireless-port1(2) are valid.
On BSU, ethernet(1) and all configured wireless interfaces
-- wireless-port1(2), wireless-port2(3), wireless-port3(4),
wireless-port4(5), wireless-port5(6), wireless-port6(7) are valid,
that is, filtering should be allowed on these wireless
interfaces only if they are configured.
"
DEFVAL { 1 }
--DEFAULT next-function-async aniDevFilterIfEntry_next
::= { aniDevFilterIfEntry 1 }
aniDevFilterIfFlag OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The flag to enable or disable filtering on
a particular interface.
The default value depends on whether a rule is configured
on the particular interface or not. When a rule is configured
on the interface, this flag will be set to enable(1)
automatically. If no rule is configured, this flag should
be disabled by default.
"
--DEFAULT next-function-async aniDevFilterIfEntry_next
::= { aniDevFilterIfEntry 2 }
END