How2pass.com Forums

Full Version: Sim CoPP question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Im currently using packet tracer to practice the CoPP simulation. I got to the part where these following commands need to be added, and the router is rejecting them as unrecognized commands. Can anyone tell me what I may be missing or doing wrong?

!
policy-map CoPP_CORE_ROUTER
class CoPP_CRITICAL
  police 8000 conform-action transmit exceed-action transmit
class CoPP_IMPORTANT
  police 8000 conform-action transmit exceed-action transmit
class CoPP_NORMAL
  police 8000 conform-action transmit exceed-action transmit
class class-default
  police 8000 conform-action drop exceed-action drop
Try breaking it up into multiple commands. Otherwise, Packet tracer may just lack the police functionality. You get what you pay for. :\

R2(config)#policy-map SINGLE-RATE-TWO-COLOR
R2(config-pmap)#class ICMP
R2(config-pmap-c)#police 128000
R2(config-pmap-c-police)#conform-action transmit
R2(config-pmap-c-police)#exceed-action drop
Hello,

for me I put in the exact configuration within the CoPP sim and I am unable to ping which is strange it says its dropping the packets even though I am allowing them in the access-list the rate limit should be fine.