Wireshark: Filter by Multicast in GUI

user1205577 picture user1205577 · Jul 9, 2012 · Viewed 80k times · Source

Using the Wireshark "Filter" field in the Wireshark GUI, I would like to filter capture results so that only multicast packets are shown.

I've seen this post but that doesn't work for the GUI filter field. This Wireshark page shows how to filter out multicast, but not how to filter everything but multicast.

Does anyone know of a simple statement that will do this?

Thank you in advance!

Answer

Rob Wagner picture Rob Wagner · Jul 9, 2012

Just use this (eth.dst[0] & 1) . Multicast traffic is recognized by the least significant bit of the most significant byte of the MAC address. If 1, multicast, if 0, not.