Wireshark: Filter by Multicast in GUI

前端 未结 5 685
情歌与酒
情歌与酒 2021-02-01 21:10

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 tha

5条回答
  •  臣服心动
    2021-02-01 21:29

    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.

提交回复
热议问题