30

I'm trying to view traffic transmitted to a specific multicast address on a network in order to analyze a protocol we're using.

I don't have Wireshark available on the setup (unfortunately). TCPDump is available though. So, can anyone show me a command have TCPDump filter to only view messages transmitted to a secific multicast group address?

John Humphreys
  • 37,047
  • 37
  • 155
  • 255

1 Answers1

53

I believe this should be enough for a specific group:

tcpdump -i eth0 -s0 -vv host 239.255.255.250

All multicast traffic:

tcpdump -i eth0 -s0 -vv net 224.0.0.0/4
Anders Lindahl
  • 41,582
  • 9
  • 89
  • 93