DISQUS

Tech-Recipes: How to (more) safely run debugs on Cisco routers | Cisco router | Tech-Recipes

  • AWfki · 1 year ago
    The last command in this example is incorrect as it doesn't use the access-list that's been defined. The last example should be:


    access-list 100 permit ip any host 1.1.1.1
    access-list 100 permit ip host 1.1.1.1 any

    debug ip packet detail 100



    Note the 100 at the end of the debug line. That applies ACL 100 to the debug. Without that you risk choking the router if it's at all busy.
  • ahbanks · 7 months ago
    You are correct!

    That was a typo on my part. Great catch!