cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
410
Views
0
Helpful
1
Replies

Line/Rate Limit 2950 Switch

mhrivnatz
Level 1
Level 1

IOS: 12.0(5.3)WC(1)

Looking for the syntax to rate limit a physical FE port to one meg. Not looking for a custom queue, just a hard top limit.

1 Reply 1

This is only possible on the ingress of the interface since the 2950 (and only the EI versions) supports only ingress policers.

ip access-list standard all-ip

permit ip any any

!

class-map match-all all-ip

match access-group name all-ip

!

policy-map limit-1mbps

class all-ip

police 1000000 8192 exceed-action drop

!

interface FastEthernet0/1

service-policy input limit-1mbps

!

The catalyst 3550 supports ingress & egress policers. The newer 2960, 2970, 3560 & 3750 only support ingress policers (progress eh?).

HTH

Andy