<div dir="ltr">Hi drbd-user,<div><br></div><div>I made some code changes for achieving local and remote replication at the same time. Any idea is appreciated.<br><div><br></div><div>Previously I sent a local replication problem email, actually I want to achieve the goal of drbd local replication with remote replication at the same time.</div><div>I look into the patch f0b6e32, in this patch drbdadm is designed allowing loopback ip(127.0.0.1) replication by skipping loopback ip check. Hence local replication is not a problem now.</div><div><br></div><div>I want to achieve local replication with remote replication at the same time. And the function <span class="gmail-m_7094562953561678107gmail-blob-code-inner"><span class="gmail-m_7094562953561678107gmail-pl-en">check_addr_conflict</span></span> still disallow the local host ip(except for 127.0.0.1) sharing. Hence I&#39;m wondering if we can allow local other ip sharing as well as follows:</div><div>diff --git a/user/shared/shared_tool.c b/user/shared/shared_tool.c<br>index cdfe9e4..ca17b49 100644<br>--- a/user/shared/shared_tool.c<br>+++ b/user/shared/shared_tool.c<br>@@ -484,9 +484,15 @@ bool addr_scope_local(const char *input)<br>        struct in6_addr addr6;<br><br>        if (inet_pton(AF_INET6, input, &amp;addr6) == 1)<br>-               return IN6_IS_ADDR_LOOPBACK(&amp;addr6);<br>+              if (have_ip_ipv6(input) == 1)<br>+                       return true;<br>+              else<br>+                        return IN6_IS_ADDR_LOOPBACK(&amp;addr6);<br>        else if (inet_pton(AF_INET, input, &amp;addr4) == 1)<br>-               return IN_IS_ADDR_LOOPBACK(&amp;addr4);<br>+              if (have_ip_ipv4(input) == 1)<br>+                       return true;<br>+              else<br>+                       return IN_IS_ADDR_LOOPBACK(&amp;addr4);<br><br>        return false;<br> }<br></div><div><br></div><div>After the above changes, I hope the r0.res and r0-local.res(as attached) will be bought up successfully. As you can see in r0.res, I hope local and remote replication being bought up at the same time.</div></div><div><br></div>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">謝謝<div>Kevin</div></div></div></div>