You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 20, 2024. It is now read-only.
We've received several reports of processes suffering intermittent 'No route to host' errors in weave networks with large numbers of containers. ARP resolution failure is the most likely cause, resulting in an ICMP unreachable message being delivered to the client process; although this could be due to UDP loss in the underlying network, it may will be the case that our pcap process is dropping packets under load. Currently investigating increasing the value of sysctl net.ipv4.neigh.ethwe.mcast_solicit as a mitigation strategy.
The text was updated successfully, but these errors were encountered:
Proof that three missed ARP responses returns EHOSTUNREACH ('No route to host') to userspace:
Telnet to a non-existent address on an attached subnet:
$ date +%s.%N; telnet 10.0.2.100; date +%s.%N
1438161687.988999879
Trying 10.0.2.100...
telnet: Unable to connect to remote host: No route to host
1438161690.988471276
@awh I suggest contacting the reporters of this problem, suggesting the upgrade to weave 1.1.0, which contains #1283, which we hope will help diagnosing the issue.
We've received several reports of processes suffering intermittent 'No route to host' errors in weave networks with large numbers of containers. ARP resolution failure is the most likely cause, resulting in an ICMP unreachable message being delivered to the client process; although this could be due to UDP loss in the underlying network, it may will be the case that our pcap process is dropping packets under load. Currently investigating increasing the value of
sysctl net.ipv4.neigh.ethwe.mcast_solicit
as a mitigation strategy.The text was updated successfully, but these errors were encountered: