On Thu, 16 Aug 2007, Satish Vellanki wrote: > From: Satish Vellanki <[EMAIL PROTECTED]> > > Hi all, > > I am unable to send multicast messages from my openSuSE 10.2 machine. > Multicast messages are not delivered to other machines on the LAN. > > Now this is what the kernel IP routing table looks like: > #route -n > Kernel IP routing table > Destination Gateway Genmask Flags Metric Ref Use Iface > 129.118.162.0 0.0.0.0 255.255.254.0 U 0 0 0 eth0 > 169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0 > 127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo > 224.0.0.0 0.0.0.0 240.0.0.0 U 0 0 0 lo > 224.0.0.0 0.0.0.0 240.0.0.0 U 0 0 0 eth0 > 0.0.0.0 129.118.163.254 0.0.0.0 UG 0 0 0 eth0 >
Hi Satish: The kernel routing table has two entries which may conflict 224.0.0.0 via (lo)cal 224.0.0.0 via (eth0) You need to remove '224.0.0.0 via lo' entry /sbin/route del -net 224.0.0.0 netmask 240.0.0.0 dev lo Let me know how it goes. thanks Saifi.

