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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cannot get Cisco rate-limit to work 1

Status
Not open for further replies.

dipstuff

Technical User
Oct 26, 2007
1
0
0
CA
I am trying to limit bandwidth to 2Mbps on a VLAN on a Cisco 6513 Switch using rate-limit. I have added this entry to the interface:

interface Vlan112
ip address 129.112.10.18 255.255.255.240
rate-limit input 2048000 1500 2000 conform-action transmit exceed-action drop
rate-limit output 2048000 1500 2000 conform-action transmit exceed-action drop
input standby 1 ip 129.112.10.17
standby 1 priority 120
standby 1 preempt

QoS is enabled.

It has no effect whatsoever on Bandwidth

I was not sure if rate-limit can be assigned to a VLAN?

Can anyone help.
Thanks


 
Maybe try doing the rate limit command on an interface that is in the 112 vlan and see if it has any affect, then you would just apply it to an interface range (all i/f in VLAN 112).
 
If your in Native mode, the legacy rate-limit command will not work and is a unsupported coman. Youe will need to go with MQC

ip access-list extended RATELIMIT
permit ip any any
!
class-map RATECLASS
match access group RATELIMIT
!
policy-map RATEPOLICY
class RATECLASS
police 2048000 655360 655360 conform-action transmit exceed-action drop
!
int Vlan 112
service-policy output RATEPOLICY
service-policy input RATEPOLICY
!
Int Gx/x
switchport access vlan112
mls qos vlan-base
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top