I have a Cisco 2821 and want to limit the Outbound rate to around 2Megs. I currently have a bonded T1 on our Multilinkl. Can you provide a command to make this happen? Will this bring the link down?
rate-limit output 2048000 25000 25000 conform-action transmit exceed-action drop
You need output, not input, for what you want to do. I would make policy maps and an acl for this as well---just regular rate-limiting does not work all the time...
In a lab I setup the following to rate limit a customer so they can only have 1mbps of a 100mbps wan connection.
class-map match-any CM-UCL
match access-group name ACL-UCL
ip access-list extended ACL-UCL
permit ip any 172.27.0.0 0.0.0.255
policy-map PM-MO_WAN_QUEUING
class CM-UCL
police cir 1024000 bc 1544000
conform-action transmit
exceed-action drop
violate-action drop
interface FastEthernet0/0
description outbound from remote site
service-policy output PM-MO_WAN_QUEUING
!
interface FastEthernet0/1
description inbound from local
service-policy input PM-MO_ACCESS_MARKING
I have more to the class and policy maps for other applications.
The first number is bits per second, the second number is normal burst, the third is max burst. It will not bring the link down---this is one reason traffic shaping is better than just straight rate-limiting---it's called CAR/DCAR. Here's a Cisco link...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.