Mailing List Archive

rate-limit on port/vlan
Hi,

Can someone tell me how to rate-limit a port/vlan on Extreme 8800 series
switches ingress, I know it works in combination with an acl.

Regards,
Raheel
Re: rate-limit on port/vlan [ In reply to ]
Hello Raheel,
Not sure if the following works:

1.Create meter
create meter ratelimit1M

2. Configure meter
configure meter ratelimit1M committed-rate 1 Mb out-action drop

3. Associate the meter with an ACL:
edit policy vlan-cust1ratelimit.pol

Entry ratelimit1M{
if {
source-address 0.0.0.0/0;
} then {
permit;
meter ratelimit1M
}
}

(Esc)
:wq!

3b. check policy vlan-cust1ratelimit1m
(".pol" not required)

4. Associate the ACL with a Vlan
configure access-list vlan-cust1ratelimit1m vlan cust1 ingress

Or apply the policy to the access port (NOT trunk port) that belongs to the
cust1 Vlan.
configure access-list vlan-pointgateratelimit1m port <port #> ingress

5. Disable dot1p examination ports all.

Kind regards,
Changjie

On Sun, Jan 10, 2010 at 9:02 PM, Raheel Muhammad
<raheel.muhammad@gmail.com>wrote:

> Hi,
>
> Can someone tell me how to rate-limit a port/vlan on Extreme 8800 series
> switches ingress, I know it works in combination with an acl.
>
> Regards,
> Raheel
>
> _______________________________________________
> extreme-nsp mailing list
> extreme-nsp@puck.nether.net
> https://puck.nether.net/mailman/listinfo/extreme-nsp
>
Re: rate-limit on port/vlan [ In reply to ]
Hi,

Thanks for the reply, will check it tomorrow and update if it works or not,

Regards,

On Sun, Jan 10, 2010 at 4:51 PM, Changjie <changjie81@gmail.com> wrote:

> Hello Raheel,
> Not sure if the following works:
>
> 1.Create meter
> create meter ratelimit1M
>
> 2. Configure meter
> configure meter ratelimit1M committed-rate 1 Mb out-action drop
>
> 3. Associate the meter with an ACL:
> edit policy vlan-cust1ratelimit.pol
>
> Entry ratelimit1M{
> if {
> source-address 0.0.0.0/0;
> } then {
> permit;
> meter ratelimit1M
> }
> }
>
> (Esc)
> :wq!
>
> 3b. check policy vlan-cust1ratelimit1m
> (".pol" not required)
>
> 4. Associate the ACL with a Vlan
> configure access-list vlan-cust1ratelimit1m vlan cust1 ingress
>
> Or apply the policy to the access port (NOT trunk port) that belongs to the
> cust1 Vlan.
> configure access-list vlan-pointgateratelimit1m port <port #> ingress
>
> 5. Disable dot1p examination ports all.
>
> Kind regards,
> Changjie
>
> On Sun, Jan 10, 2010 at 9:02 PM, Raheel Muhammad <
> raheel.muhammad@gmail.com> wrote:
>
> Hi,
>>
>> Can someone tell me how to rate-limit a port/vlan on Extreme 8800 series
>> switches ingress, I know it works in combination with an acl.
>>
>> Regards,
>> Raheel
>>
>> _______________________________________________
>> extreme-nsp mailing list
>> extreme-nsp@puck.nether.net
>> https://puck.nether.net/mailman/listinfo/extreme-nsp
>>
>
>