Happy happy joy joy, www.infodrom.ffis.de is up!
[infodrom.org/www.infodrom.org] / src / Debian / tips / neighbour.wml
1 #include <infodrom.style>
2 #include <debian.style>
3
4 <page title="Debian Tips">
5
6 <h1 align=center>Mysterious 'neighbour table overflow'</h1>
7
8 <blockquote>
9
10 <p>Networking After upgrading from potato to woody I noticed a couple
11 of 'neighbour table overflow' messages on the screen during the next
12 boot process. If it wouldn't be the laptop I wouldn't have
13 noticed. Thes messages seemed even slowing down the boot process with
14 regard to some related NFS problem.  A little investigation has shown
15 that the lo device (i.e. 127.0.0.1) was missing. Believe me, the
16 output of ifconfig looked strange, only eth0 was there, quite
17 irritating. For some strange reason that device wasn't initialized at
18 boot time.
19
20 A quick glance prooved that there was no
21 <code>/etc/init.d/network</code> file anymore so one had to stick with
22 /etc/network. The file <code>/etc/network/interfaces</code> ought to
23 contain all net devices that were to be initialized at boot time. lo
24 was there:
25
26 <pre>
27    # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
28
29    # The loopback interface
30    iface lo inet loopback
31 </pre>
32
33 A friend told me that a second line for the lo-interface was missing
34 that would actually set it up at boot time. Looks like the semantics
35 of that file was changed from potato to woody without scripts taking
36 proper care of it. The proper file looks like:
37
38 <pre>
39    # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
40
41    # The loopback interface
42    iface lo inet loopback
43    auto lo
44 </pre>
45
46 </page>
47
48 # Local variables:
49 # mode: html
50 # mode: auto-fill
51 # mode: iso-accents
52 # end: