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!

Cisco Switch 2950 Question

Status
Not open for further replies.

mundell

IS-IT--Management
Jul 11, 2000
22
0
0
US
I am trying to do rate limiting on a port using Qos but not having much luck here is what I have can you tell me why it does not restrict link to 1mb? I tell no difference with this on the port.

Config

class-map match-all 1024
match access-group 1
!
!
policy-map 1024policy
class 1024
police 1000000 8192 exceed-action drop
!
Here is my show access-list

Standard IP access list 1
permit any

Here is my config for the port

interface FastEthernet0/1
no ip address
duplex full
speed 100
service-policy input 1024
spanning-tree portfast
!
 
As far as I can see you haven't configured the ethernet port correctly.
When using the service-policy command, you need to use the name of the policy map and not the class map.
To make this work, change the line:
service-policy input 1024
to:
service-policy input 1024policy

That should then work. :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top