Filter ICMP packets sent from my IP address in Wireshark with the Packet Filter

16,308

The problem is that ICMP type 11 (TTL expired) returns the IP header of the sent IP packet. So in order to fix it, we need to exclude the type 11 ICMP. 0b = 11 in decimal, so use this filter to fix it:

ip.src == xxx.xxx.xxx.xxx && !(icmp[0] == B ) && icmp
Share:
16,308

Related videos on Youtube

0xab3d
Author by

0xab3d

Jordanaholic ~ Technoholic ~ Telecommunications Engineer ~ Ubuntu-Lover

Updated on September 18, 2022

Comments

  • 0xab3d
    0xab3d over 1 year

    I want to filter the ICMP packets sent from my IP address in Wireshark.

    I tried the following expression:

    ip.src == xxx.xxx.xxx.xxx && icmp
    

    But the problem is that it shows packets with ip.src = yyy.yyy.yyy.yyy
    that were sent to ip.dst = xxx.xxx.xxx.xxx.

  • 0xab3d
    0xab3d over 11 years
    0b = 11 in decimal so we want to exclude the type 11 ICMP