My Mac keeps broadcasting UDP packets to 255.255.255.255:2008

5,309

Solution 1

Found this same issue today, check to see if "Remote Mouse" is installed, that was the culprit on my network.

Solution 2

Its probably Bonjour, and its basically throwing out broadcasts to advertise its presence. You can use good old netstat, either in cli or through network utility to determine this. If you're using cli, also consider using grep to filter through the results, and the -b switch to display the binary's name - I'd use something like netstat -abn | grep 255.255.255.255 - which if i recall should show all connections, and list the binaries and ip addresses, and greps for that ip address.

Share:
5,309

Related videos on Youtube

codable
Author by

codable

Updated on September 18, 2022

Comments

  • codable
    codable over 1 year

    The source port changes rapidly, from 49xxx to 6xxxx. I tried to use lsof -i udp, and see there's process named mDNSRespo which holds a lot of udp sockets. However, none of these sockets' ports are of source ports of sockets broadcasting packets.

    Is there a utility to find out which process is doing this?

  • codable
    codable almost 12 years
    I stopped Bonjour, and it still keeps broadcasting..
  • Thalys
    Thalys almost 12 years
    What does netstat say?
  • Jason C
    Jason C almost 10 years
    This seems like a potentially helpful, albeit not ideal, answer to me.