On 09/19/2013 12:47 AM, David Lang wrote: > I'm trying to get a cluster up and running without using multicast, I've > made my cluster.conf be the following, but the systems are still sending > to the multicast address and not seeing each other as a result. > > Is there something that I did wrong in creating the cman segment of the > file? unforutunantly the cluster.conf man page just referrs to the > corosync.conf man page, but the two files use different config styles. > > If not, what else do I need to do to disable multicast and just use udpu?
> <cman two_node="1" expected_votes="1"> > <totem vsftype="none" token="5000" > token_retransmits_before_loss_const="10" join="60" consensus="4800" > rrp_mode="none" transport="udpu"> > <interface ringnumber="0" bindnetaddr="10.1.18.0" mcastport="5405" > ttl="1" > > <member memberaddr="10.1.18.177" /> > <member memberaddr="10.1.18.178" /> > </interface> > </totem> > </cman> You don't need all of that... <cman two_node="1" expected_votes="1" transport="udpu"/> There is no need to specify anything else. memberaddresses et all will be determined by the node names. Fabio _______________________________________________ Openais mailing list [email protected] https://lists.linuxfoundation.org/mailman/listinfo/openais
