Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rate-limit problem

Status
Not open for further replies.

lemme2004

IS-IT--Management
Sep 7, 2005
16
hi everybody,

I tried to limit the bandwidth using cisco router 3600 with the rate-limit command and I didn't work.

I tried to limit the badwidth to 8000 bps (the min), but when I tried to download from the INTERNET I got a speed of
600 KBYte (the full).

what is exactly the problem it seems that there is no limit of the bandwidth

This is my configuration:

ip cef
!
interface fastethernet 0/0
ip adress 192.168.0.1
rate-limit output 8000 1500 300 conform-action set-prec-precedence 5 exceed-action drop

rate-limit intput 8000 1500 300 conform-action set-prec-precedence 5 exceed-action drop
!


thanks in advance of your help.
 
so you want this stuff to be transmitted with a precedence of 5 ?
your statement should work... the max burst we generally make twice the burst though...

rate-limit input 8000 1600 3200 conform-action set-prec-transmit 5 exceed-action drop

rate-limit output 8000 1600 3200 conform-action set-prec-transmit 5 exceed-action drop


when you do a sho int fa0/0 rate
what kind of stats are you seeing? are the conformed packets incrementing? no drops ?
 
hi plshlpme,

Thank you for the reply, when I try sh int fast 0 rate-limit

I got 0 droped packet (strange).

I configured a second test (with switch catalyst 3560)
and put the rate-limit in a vlan interface.
the same result rate-limit is not working.


Did I miss some commandS ?
 
well we use 3 rate limits..
for Tos 0 3 and 5
i have my setup as follows




access-list 101 permit ip any any
access-list rate-limit 0 0
access-list rate-limit 3 3
access-list rate-limit 5 5

rate-limit input access-group rate-limit 5 152000 30720 61440 conform-action set-prec-transmit 5 exceed-action drop
rate-limit input access-group rate-limit 3 200000 40960 81920 conform-action set-prec-transmit 3 exceed-action drop
rate-limit input access-group 101 512000 102400 204800 conform-action set-prec-transmit 0 exceed-action drop
rate-limit output access-group rate-limit 5 152000 30720 61440 conform-action transmit exceed-action transmit
rate-limit output access-group rate-limit 3 200000 40960 81920 conform-action transmit exceed-action transmit
rate-limit output access-group rate-limit 0 512000 102400 204800 conform-action transmit exceed-action drop
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top