cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
540
Views
5
Helpful
3
Replies

Rate-limit command 3560 does it exist?

rasoftware
Level 1
Level 1

I have just come across a command in my router IOS which might be useful too me. I was wondering if the following command is available on a 3560 Switch. I don't see it on my 3550 but the IOS is quite old. I don't have a 3560 avaiable currently to check.

Config t > int vlan x > rate-limit input/output

does this exist on the 3560? I am also interest if it does in the Bits per second range and if available input/output.

Thanks for any help

1 Accepted Solution

Accepted Solutions

Roberto Salazar
Level 8
Level 8

rate-limit is not supported on the 3550 switch or any catalyst switch, so it will not be available in 3560 as well. Instead you can use the policing feature, it similar in a way that you can police the amount of traffic a host connected to a particular interface or vlan to a specified amount. The following is a link on QoS and it has a section on policing:

http://www.cisco.com/univercd/cc/td/doc/product/lan/c3550/12225see/scg/swqos.htm#wp1044737

Please rate helpful posts.

View solution in original post

3 Replies 3

vladrac-ccna
Level 5
Level 5

Hello,

what kind of feature are you looking for?

CAR?

http://www.cisco.com/en/US/products/sw/iosswrel/ps1835/products_command_reference_chapter09186a0080087f26.html#wp1037428

For command list check the following link:

Catalyst 3560 Switch Command Reference, Rel. 12.2(25)SEE

http://www.cisco.com/univercd/cc/td/doc/product/lan/cat3560/12225see/cr/index.htm

For QOS configs:

http://www.cisco.com/univercd/cc/td/doc/product/lan/cat3560/12225see/scg/swqos.htm

If you need to rate limit traffic on an interface check:

Limiting the Bandwidth on an Egress Interface

http://www.cisco.com/univercd/cc/td/doc/product/lan/cat3560/12225see/scg/swqos.htm#wp1253412

Hope this help a bit,

if it does, please rate this post.

Vlad

Roberto Salazar
Level 8
Level 8

rate-limit is not supported on the 3550 switch or any catalyst switch, so it will not be available in 3560 as well. Instead you can use the policing feature, it similar in a way that you can police the amount of traffic a host connected to a particular interface or vlan to a specified amount. The following is a link on QoS and it has a section on policing:

http://www.cisco.com/univercd/cc/td/doc/product/lan/c3550/12225see/scg/swqos.htm#wp1044737

Please rate helpful posts.

Hi there,

You could use something like this

mls qos

mls qos aggregate-policer 1MB 1000000 8000 exceed-action drop

!

access-list 100 permit ip any any

!

mac access-list extended NON_IP

permit any any

!

class-map match-all NON_IP

match access-group name NON_IP

!

class-map match-all IP

match access-group 100

!

policy-map POLICE_1MB

class IP

police aggregate 1MB

class NON_IP

police aggregate 1MB

Please rate if it was usefull

Regards

Victor.-