1

could corosync can support unicast heartbeat mode?

from another thread in serverfault, some guy raised below corosync conf:

totem {
        version: 2
        secauth: off
        interface {
                member {
                        memberaddr: 10.xxx.xxx.xxx
                }
                member {
                        memberaddr: 10.xxx.xxx.xxx
                }
                ringnumber: 0
                bindnetaddr: 10.xxx.xxx.xxx
                mcastport: 694
        }
        transport: udpu
}

is this conf type means unicast mode?

thanks,
Emre

Emre He
  • 121
  • 1
  • 4

1 Answers1

2

Yes, that's right. See also here, an example configuration published by Florian Haas (one of the Linux HA guys): https://github.com/fghaas/corosync/blob/master/conf/corosync.conf.example.udpu

And please read the Corosync man page, it's all explained in there.

daff
  • 4,909