1 | initial version |
Hello Pauli
Broadcast messages happen on Layer 2 or Layer 3. Try this Wireshark display filter for Layer 2 broadcasts (which includes IP and other protocols, like ARP:
eth.dst.ig == 1
To focus on IP broadcast messages you might try
eth.dst.ig == 1 and ip
Good luck!
Eddi