<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Virtual Interfaces Issues - Report Issues				            </title>
            <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/</link>
            <description>SKUDONET Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 13 Jul 2026 00:25:18 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-800</link>
                        <pubDate>Fri, 20 Jun 2025 11:05:08 +0000</pubDate>
                        <description><![CDATA[The issue was managed privately, and it seemed to be related to the way the switches updated the ARP table. The -U flag in the arping command solved the problem.]]></description>
                        <content:encoded><![CDATA[<p>The issue was managed privately, and it seemed to be related to the way the switches updated the ARP table. The -U flag in the arping command solved the problem. </p>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>emiliocm</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-800</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-77</link>
                        <pubDate>Wed, 12 Mar 2025 07:47:28 +0000</pubDate>
                        <description><![CDATA[Good day @rgonzaleza, this file zlb-start is called at the end of the Master startup process, so it is the place where to configure additional actions once the node takes the MASTER role, yo...]]></description>
                        <content:encoded><![CDATA[<p>Good day @rgonzaleza, this file zlb-start is called at the end of the Master startup process, so it is the place where to configure additional actions once the node takes the MASTER role, yo can add some sleep before executing the arping -U and increase the number of packets instead of 2. </p>
<p> </p>
<p>sleep 5</p>
<p><span>/usr/bin/arping -U -c 10 -I eth0 Virtual_IP_1</span></p>
<p><span>/usr/bin/arping -U -c 10 -I eth0 Virtual_IP_2</span></p>
<p><span>/usr/bin/arping -U -c 10 -I eth0 Virtual_IP_3</span></p>
<p><span>/usr/bin/arping -U -c 10 -I eth0 Virtual_IP_4</span></p>
<p><span>/usr/bin/arping -U -c 10 -I eth0 Virtual_IP_5</span></p>
<p><span>/usr/bin/arping -U -c 10 -I eth0 Virtual_IP_6</span></p>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>emiliocm</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-77</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-76</link>
                        <pubDate>Tue, 11 Mar 2025 22:05:28 +0000</pubDate>
                        <description><![CDATA[@emiliocm Thanks Emilio, I ran the command with -U, and that update the MAC address, but now, what do we have to do? because I added the commands in the file you said before (zlb-start) and ...]]></description>
                        <content:encoded><![CDATA[@emiliocm Thanks Emilio, I ran the command with -U, and that update the MAC address, but now, what do we have to do? because I added the commands in the file you said before (zlb-start) and wehn I did the failover it didnt work.]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>rgonzaleza</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-76</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-75</link>
                        <pubDate>Tue, 11 Mar 2025 07:52:33 +0000</pubDate>
                        <description><![CDATA[Hi @rgonaleza, I can confirm that the issue is related to your network. SKUDONET Cluster is working properly; see attached PDF with my tests. 
When the cluster switches, the new master send...]]></description>
                        <content:encoded><![CDATA[<p>Hi @rgonaleza, I can confirm that the issue is related to your network. SKUDONET Cluster is working properly; see attached PDF with my tests. </p>
<p>When the cluster switches, the new master sends a gratuitous ARP packet to the network to indicate networking devices that the MAC for the IP has changed. For some reason, this kind of packetets are discarded by your switches. </p>
<p>I would recommend you to play with the arping command in the new MASTER once the cluser switches doing some changes to the command </p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_1</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_2</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_3</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_4</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_5</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_6</span></p>
<p> </p>
<p>by (send arping package in unsolicited mode -U, instead of answered mode, -A)  </p>
<p> </p>
<p><span>/usr/bin/arping -U -c 2 -I eth0 Virtual_IP_1</span></p>
<p><span>/usr/bin/arping -U -c 2 -I eth0 Virtual_IP_2</span></p>
<p><span>/usr/bin/arping -U -c 2 -I eth0 Virtual_IP_3</span></p>
<p><span>/usr/bin/arping -U -c 2 -I eth0 Virtual_IP_4</span></p>
<p><span>/usr/bin/arping -U -c 2 -I eth0 Virtual_IP_5</span></p>
<p><span>/usr/bin/arping -U -c 2 -I eth0 Virtual_IP_6</span></p>
<p>You can do some troubleshooting in your switches and identify why these packets are not managed. But as I said the issue seems to be related to your network as the cluster works as expected and do the desired. </p>
<p> </p>
<p>Thanks!</p>
<p> </p>
<div id="wpfa-70032" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//www.skudonet.com/wp-content/uploads/wpforo/default_attachments/1741679553-SKUDONET-Cluster-CE-demo-test.pdf" target="_blank" title="SKUDONET-Cluster-CE-demo-test.pdf"><i class="fas fa-paperclip"></i>&nbsp;SKUDONET-Cluster-CE-demo-test.pdf</a></div>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>emiliocm</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-75</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-74</link>
                        <pubDate>Mon, 10 Mar 2025 22:28:24 +0000</pubDate>
                        <description><![CDATA[@emiliocm hi Emilio.
 
I added the command in the file you told me and is updated on the other node automatically, I supposed is because of the HA configuration, but the issue is the same,...]]></description>
                        <content:encoded><![CDATA[<p>@emiliocm hi Emilio.</p>
<p> </p>
<p>I added the command in the file you told me and is updated on the other node automatically, I supposed is because of the HA configuration, but the issue is the same, the node 2 shows interfaces are up, but we lost communication to the virutal interfaces. I add a new document with the evidence, also run the command you sent last week</p>
<div id="wpfa-70029" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//www.skudonet.com/wp-content/uploads/wpforo/default_attachments/1741645704-Skudonet-Error-2.docx" target="_blank" title="Skudonet-Error-2.docx"><i class="fas fa-paperclip"></i>&nbsp;Skudonet-Error-2.docx</a></div>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>rgonzaleza</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-74</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-71</link>
                        <pubDate>Mon, 10 Mar 2025 09:03:53 +0000</pubDate>
                        <description><![CDATA[Hi @rgonzaleza, thanks for the attached document; it is clear now. 
 
Did you apply the workaround I explained in my previous comment 26/02/2025 8:37 am  ? 
Add the following lines to /us...]]></description>
                        <content:encoded><![CDATA[<p>Hi @rgonzaleza, thanks for the attached document; it is clear now. </p>
<p> </p>
<p>Did you apply the workaround I explained in my previous comment <span class="wpf-post-date">26/02/2025 8:37 am</span><span>  ? </span></p>
<p>Add the following lines to <span>/usr/local/skudonet/config/zlb-start (both nodes of the cluster)</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_1</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_2</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_3</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_4</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_5</span></p>
<p><span>/usr/bin/arping -A -c 2 -I eth0 Virtual_IP_6</span></p>
<p> </p>
<p>Later repeat the tests and share the results with us. </p>
<p> </p>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>emiliocm</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-71</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-70</link>
                        <pubDate>Fri, 07 Mar 2025 18:51:26 +0000</pubDate>
                        <description><![CDATA[@emiliocm Hi Emilio, Finally we  were able to replicate the issue, we created a new cluster and I&#039;m sending you a document with the images, hoping that will be clear for you.
&nbsp;Skudonet...]]></description>
                        <content:encoded><![CDATA[@emiliocm Hi Emilio, Finally we  were able to replicate the issue, we created a new cluster and I'm sending you a document with the images, hoping that will be clear for you.
<div id="wpfa-69990" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//www.skudonet.com/wp-content/uploads/wpforo/default_attachments/1741373486-Skudonet-Error.docx" target="_blank" title="Skudonet-Error.docx"><i class="fas fa-paperclip"></i>&nbsp;Skudonet-Error.docx</a></div>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>rgonzaleza</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-70</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-61</link>
                        <pubDate>Tue, 04 Mar 2025 15:44:50 +0000</pubDate>
                        <description><![CDATA[Hi @rgonzaleza, when you say:  &quot;we are not able to bring up that virtual interface on node 2&quot;, what kind of test did you do to figure out that interfaces on node 2 are not bringing UP?
 
A...]]></description>
                        <content:encoded><![CDATA[<p>Hi @rgonzaleza, when you say:  "<span>we are not able to bring up that virtual interface on node 2", what kind of test did you do to figure out that interfaces on node 2 are not bringing UP?</span></p>
<p> </p>
<p>Additionally, some information is missing in the description.</p>
<p>-When the failover is done to node2, are the virtual interfaces configured and Up in the node2? you can check this with commands like:</p>
<pre contenteditable="false">ifconfig

ip route list

ip route list table table_eth0</pre>
<p>-When the failover is done to node2 are the farms UP and running in this node2? </p>
<p>if you run HTTP profiles then check if "pound" binaries are running:</p>
<pre contenteditable="false">ps -ef | grep pound</pre>
<p>if you run l4xnat profiles then check if nft is loaded with the rules</p>
<pre contenteditable="false">nft list ruleset</pre>
<p> </p>
<p>This information is mandatory to let me understand if the issue is a bug in the switching or an issue in your network configuration. </p>
<p> </p>
<p>Regards!</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>emiliocm</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-61</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-60</link>
                        <pubDate>Tue, 04 Mar 2025 14:37:30 +0000</pubDate>
                        <description><![CDATA[@emiliocm Hi Emilio, sorry If didnt make myself clear.
 
This is the issue:
 
We have a cluster with 2 nodes, master (10.1.1.140), backup (10.1.1.141) and cluster (10.1.1.142), everythin...]]></description>
                        <content:encoded><![CDATA[<p>@emiliocm Hi Emilio, sorry If didnt make myself clear.</p>
<p> </p>
<p>This is the issue:</p>
<p> </p>
<p>We have a cluster with 2 nodes, master (10.1.1.140), backup (10.1.1.141) and cluster (10.1.1.142), everything seems working fine, the replication and failover is working, we created 4 virtual interfaces: </p>
<p> </p>
<p>10.1.1.143</p>
<p>10.1.1.144</p>
<p>10.1.1.145</p>
<p>10.1.1.146</p>
<p>but here's the problem:</p>
<p> </p>
<p>when we make the failover to the node 2 some of the virtual interfaces stop working, hence the farms also stop working and we need to make the failover back to the node 1, so we are not able to bring up that virtual intrfaces on node 2, but the weird thing is that, if we create those virtual interfaces in another LB we got, they start working.</p>
<p> </p>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>rgonzaleza</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-60</guid>
                    </item>
				                    <item>
                        <title>RE: Virtual Interfaces Issues</title>
                        <link>https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-56</link>
                        <pubDate>Tue, 04 Mar 2025 10:40:32 +0000</pubDate>
                        <description><![CDATA[HI @rgonzaleza,. I cannot understand where your problem is, so can you please extend with more detail the description of the problem? Because I read your first comment and I understood clust...]]></description>
                        <content:encoded><![CDATA[<p>HI @rgonzaleza,. I cannot understand where your problem is, so can you please extend with more detail the description of the problem? Because I read your first comment and I understood cluster was not switching properly as the virtual IP was not working in second node, so I gave you indications to troubleshoot the switching and you reported it works. </p>
<p> </p>
<p>I am a little bit lost, sorry. </p>
<p> </p>
<p>Any additional information that would help me figure out what is going on would be appreciated. </p>
<p> </p>
<p>Regards!</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.skudonet.com/community/report-issues/">Report Issues</category>                        <dc:creator>emiliocm</dc:creator>
                        <guid isPermaLink="true">https://www.skudonet.com/community/report-issues/virtual-interfaces-issues/#post-56</guid>
                    </item>
							        </channel>
        </rss>
		