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

Limiting Traffic speed on a port

Status
Not open for further replies.

hobbes80

MIS
Dec 2, 2004
47
US
I have a 6509 with a Sup 2 module. I'm trying to limit the traffic on g1/1 to stay under 200mbps... I have a policer setup to do so, but last night our traffic exceeded 200mbps for a few moments and I want to know why it did... or if I'm missing a line.

Code:
mls qos
!
!
spanning-tree mode pvst
diagnostic cns publish cisco.cns.device.diag_results
diagnostic cns subscribe cisco.cns.device.diag_commands
!
class-map match-all ANY
  match access-group 1
!
!
policy-map POLICE-200Mbps
  class ANY
      police flow 200000000 100000 conform-action transmit exceed-action drop
!
!
interface GigabitEthernet1/1
 no ip address
 switchport
 switchport access vlan 200
 switchport mode access
 service-policy input POLICE-200Mbps
!
!
access-list 1 permit any
!
!
end
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top