0

We have a piece of software here that seems to be phoning home quite a bit. Using wireshark we figured out that it sends quite a few UDP packets each second to 224.168.168.168. Google tells me, this is a reserved multicast IP.

Can I somehow find out who is subscribed to that multicast group?

Dakkaron
  • 111
  • 3

2 Answers2

2

Unicast is visible to the local LAN AND it is visible to any routable network that has a chain of properly configured multicast repeaters available.

NO internet provider will forward multicast packets, so the software is NOT phoning home.

You can find out who is sbscribed IF you have the infrastructure in your network to track it. If not - no. But then it is limited basically on the next router (i.e. the same subnet / ethernet broadcast domain).

TomTom
  • 50,857
  • 7
  • 52
  • 134
1

Each device on the LAN can see those packets. If you don't do multicast routing then that's where it stops.

Sander Steffann
  • 7,572
  • 18
  • 29