]
Bela Ban updated JGRP-1808:
---------------------------
Priority: Minor (was: Major)
Mac OS: no multicast route for 127.0.0.1
----------------------------------------
Key: JGRP-1808
URL:
https://issues.jboss.org/browse/JGRP-1808
Project: JGroups
Issue Type: Task
Reporter: Bela Ban
Assignee: Bela Ban
Priority: Minor
Fix For: 3.5
On Mac OS (Mavericks), there is no multicast route in the routing table. So the default
route is used (say 192.168.1.1). However, this doesn't work for nodes bound to
127.0.0.1 (don't know why).
So for loopback, an mcast route has to be added, e.g.
{noformat}
sudo route add -net 224.0.0.0/4 127.0.0.1
{noformat}
This adds a default route to all class D (multicast) addresses via loopback. However,
this doesn't work if the node is bound to 192.168.1.x !
TODO:
* See if we can get a default multicast route through 192.168.1.1 and make nodes bound to
127.0.0.1 use it
* If this doesn't work, define multiple mcast routes for different mcast addresses,
e.g.
{noformat}
sudo route add -net 224.0.0.0/4 127.0.0.1
sudo route add -net 230.0.0.0/8 192.168.1.0
{noformat}
This adds loopback as default mcast route, but uses en0 if a multicast address starts
with 230.x.x.x.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: