cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
611
Views
5
Helpful
4
Replies

How to filter eigrp message when wanting to see debug message ?

eigrpy
Level 4
Level 4

Hi When I want to see debug ip packet message, I noticed that there are a lot eigrp message. I want to block the eigrp message in order to see debug ip packet clearly. I use the following configuration. But It does not work. Anyone can give me some suggestion ? Thank you 

 

 

*Mar  7 05:34:01.882: IP: s=1.1.1.6 (local), d=224.0.0.10 (Vlan4), len 60, sending broad/multicast
*Mar  7 05:34:02.226: IP: s=1.1.56.6 (local), d=224.0.0.10 (FastEthernet1/0), len 60, sending broad/multicast

 

debug ip packet 100

access-list 100 deny   ip host 1.1.1.6 host 224.0.0.10

 

If I use this configuration, I cannot see any debug ip packet message. 

1 Accepted Solution

Accepted Solutions

Rolf Fischer
Level 9
Level 9

Hi,

remember that there is always an implicit "deny any" at the end of an ACL.

Try this:

access-list 100 deny ip host 1.1.1.6 host 224.0.0.10
access-list 100 permit ip any any

or

access-list 100 deny eigrp any any
access-list 100 permit ip any any

 

HTH

Rolf

View solution in original post

4 Replies 4

Rolf Fischer
Level 9
Level 9

Hi,

remember that there is always an implicit "deny any" at the end of an ACL.

Try this:

access-list 100 deny ip host 1.1.1.6 host 224.0.0.10
access-list 100 permit ip any any

or

access-list 100 deny eigrp any any
access-list 100 permit ip any any

 

HTH

Rolf

Great! Thank you so much

 

BTW, do you think it would effect eigrp connection ? 

It won't affect EIGRP if you are just using the acl with the debug command.

Obviously applied to an interface it could.

Jon

As Jon has already stated, it won't affect EIGRP in particular but you have to be very careful with this command in production environments!

From the Command Reference:

Because the debug ip packet command generates a substantial amount of output and uses a substantial amount of system resources, this command should be used with caution in production networks. It should only be enabled when traffic on the IP network is low, so other activity on the system is not adversely affected. (...)

IP packet debugging captures the packets that are process switched including received, generated and forwarded packets. IP packets that are switched in the fast path are not captured.

In production environments, I always try to restrict the output as far as possible by an ACL.

HTH

Rolf

Review Cisco Networking for a $25 gift card