First time here? Check out the FAQ!

Ask Your Question
0

How to find out total number of ip4 packets (that are not TCP,UDP or ICMP)

asked Apr 25 '0

gamma gravatar image

updated Apr 25 '0

The header basically says it all. I want to find out the total number of ipv4 packets in a pcap file, that are not TCP,UDP or ICMP. What is the best way to do so?

Preview: (hide)

3 Answers

Sort by » oldest newest most voted
1

answered Apr 25 '0

Chuckc gravatar image

In the Wireshark Gui?
Display filter: ip.version==4 and !tcp and !udp and !icmp
Then check Displayed: in the status bar lower right.

Preview: (hide)
link

Comments

Thanks for the help! It worked fine.

gamma gravatar imagegamma ( Apr 25 '0 )
1

answered Apr 25 '0

Jim Aragon gravatar image

Enter this display filter:

ip && !(tcp || udp || icmp)

and then read the number of displayed packets in the status bar.

Preview: (hide)
link
0

answered Apr 27 '0

cmaynard gravatar image

An often overlooked aspect of filtering is IP fragments. While filters such as those provided by @bubbasnmp and @jim-aragon (e.g., ip && !(tcp || udp || icmp) will exclude IPv4 packets carrying either TCP, UDP or ICMP payloads, it will only do so in cases where the IP packets are not fragmented or for the 1st fragment when Reassemble fragmented IPv4 datagrams is disabled or for the last (reassembled) packet when is Reassemble fragmented IPv4 datagrams enabled.

If you want to filter out the IP fragments associated with the TCP, UDP or ICMP packets as well, then a better filter is: ip and !(ip.proto == 1 or ip.proto == 6 or ip.proto == 17).

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: Apr 25 '0

Seen: 1,703 times

Last updated: Apr 27 '20