Difference between revisions of "Quick solve"

From DarkWiki
Jump to: navigation, search
(Ubuntu)
(Ubuntu)
Line 5: Line 5:
 
===Ubuntu===
 
===Ubuntu===
  
<code lang=bash>
+
If the following appears in <code>/var/log/syslog</code>:
 +
 
 +
<pre>
 +
avahi-daemon[1113]: IP_ADD_MEMBERSHIP failed: No buffer space available
 +
</pre>
 +
 
 +
It's probably because you've too many network interfaces. You can check your current configured maximum using this:
 +
 
 +
<syntaxhighlight lang="bash">
 
sysctl net.ipv4.igmp_max_memberships
 
sysctl net.ipv4.igmp_max_memberships
</code>
+
</syntaxhighlight>

Revision as of 06:07, 15 August 2018

Introduction

This is a selection of problems that can be quickly solved.

Ubuntu

If the following appears in /var/log/syslog:

avahi-daemon[1113]: IP_ADD_MEMBERSHIP failed: No buffer space available

It's probably because you've too many network interfaces. You can check your current configured maximum using this:

sysctl net.ipv4.igmp_max_memberships