cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2118
Views
10
Helpful
3
Replies

Limit bandwidth on a Cisco 7206 router

John Torkos
Level 1
Level 1

Hello everyone, could anyone point me to a link that describes how I can go about setting a bandwidth on the router. Basically, I will have a 1GigE from a vendor and I will like to limit the Internet traffic to say 80Mbps only. I can't seem to find this information on the Cisco web site, but if anyone knows where I can go, could you please send me the link or perhaps explain how I can go about configuring the router.

Thanks.

3 Replies 3

Edison Ortiz
Hall of Fame
Hall of Fame

class-map internet

match protocol http

policy-map internet

class internet

police cir 80000000

interface s0/0

service-policy output internet

service-policy input internet

http://www.cisco.com/univercd/cc/td/doc/product/software/ios124/124cg/hqos_c/part20/ch05/index.htm

mohammedmahmoud
Level 11
Level 11

hi,

You can do CAR - Committed Access Rate:

http://www.cisco.com/univercd/cc/td/doc/product/software/ios111/cc111/car.htm

http://www.cisco.com/univercd/cc/td/doc/product/software/ios122/122cgcr/fqos_c/fqcprt1/qcfcar.htm

interface fastethernet0/0

ip address

rate-limit input 80000000 15000000 15000000 conform-action transmit exceed-action drop

rate-limit output 80000000 15000000 15000000 conform-action transmit exceed-action drop

HTH, please do rate all helpful posts,

Mohammed Mahmoud.

paolo bevilacqua
Hall of Fame
Hall of Fame

Beside CAR, you may want to look at traffic-shaping. Being less abrupt than CAT in cutting excess traffic, it lets TCP recover much better and in general I would recommend if you router can handle that.

Hope this helps, please rate post if it does!