When using multiple interfaces, it's necessary to use different
multicast address/port pair for each interface to make
rrp work correctly. This is now checked in parser.

Signed-off-by: Jan Friesse <[email protected]>
---
 exec/totemconfig.c  |   16 +++++++++++++++-
 man/corosync.conf.5 |    4 ++++
 2 files changed, 19 insertions(+), 1 deletions(-)

diff --git a/exec/totemconfig.c b/exec/totemconfig.c
index cab21fb..239a89f 100644
--- a/exec/totemconfig.c
+++ b/exec/totemconfig.c
@@ -474,7 +474,7 @@ int totem_config_validate (
        static char local_error_reason[512];
        char parse_error[512];
        const char *error_reason = local_error_reason;
-       int i;
+       int i, j;
        unsigned int interface_max = INTERFACE_MAX;
 
        if (totem_config->interface_count == 0) {
@@ -535,6 +535,20 @@ int totem_config_validate (
                        error_reason =  "Not all bind address belong to the 
same IP family";
                        goto parse_error;
                }
+
+               /*
+                * Ensure mcast address/port differs
+                */
+               if (totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
+                       for (j = i + 1; j < totem_config->interface_count; j++) 
{
+                               if 
((totemip_equal(&totem_config->interfaces[i].mcast_addr,
+                                   &totem_config->interfaces[j].mcast_addr) &&
+                                   (totem_config->interfaces[i].ip_port == 
totem_config->interfaces[j].ip_port))) {
+                                       error_reason = "Interfaces multicast 
address/port pair must differ";
+                                       goto parse_error;
+                               }
+                       }
+               }
        }
 
        if (totem_config->version != 2) {
diff --git a/man/corosync.conf.5 b/man/corosync.conf.5
index a2c8000..59fcf9f 100644
--- a/man/corosync.conf.5
+++ b/man/corosync.conf.5
@@ -218,6 +218,10 @@ If only one interface directive is specified, none is 
automatically chosen.
 If multiple interface directives are specified, only active or passive may
 be chosen.
 
+When using multiple interfaces, make sure to use different multicast
+address/port pair for each interface (this is checked by parser) to make
+rrp works.
+
 .TP
 netmtu
 This specifies the network maximum transmit unit.  To set this value beyond
-- 
1.7.1

_______________________________________________
discuss mailing list
[email protected]
http://lists.corosync.org/mailman/listinfo/discuss

Reply via email to