lcm-proj / lcm

Lightweight Communications and Marshalling
GNU Lesser General Public License v2.1
944 stars 385 forks source link

UDP Multicast doesn't work on MacOS #476

Open ihilt opened 8 months ago

ihilt commented 8 months ago

In particular, these commands:

sudo ifconfig lo multicast
sudo route add -net 224.0.0.0 netmask 240.0.0.0 dev lo

fail since lo does not exist.

Changing lo to lo0 made further progress but route does not appear to have a netmask specifier. The following was accepted:

sudo route -nv add -net 224.0.0.0 -interface lo0

However the LCM self test continued to fail.

SuryaB1 commented 2 months ago

I am encountering the same issue.