Comment 61 for bug 256054

Revision history for this message
Julien Aubin (gojulgarbmail) wrote :

Does not fix the issue for me.

A work around consists in rewriting the /etc/resolv.conf file.

Content of my /etc/network/interfaces file
---------------------
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
        address 192.168.0.5
        netmask 255.255.255.0
        network 192.168.0.0
        broadcast 192.168.0.255
        gateway 192.168.0.1
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 192.168.0.1

---------------------

Below is the result if my ifconfig command :
--------------------------------------------
eth0 Link encap:Ethernet HWaddr 00:1b:fc:a4:07:0c
          inet adr:192.168.0.5 Bcast:192.168.0.255 Masque:255.255.255.0
          adr inet6: fe80::21b:fcff:fea4:70c/64 Scope:Lien
          UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
          Packets reçus:100101 erreurs:0 :0 overruns:0 frame:0
          TX packets:62816 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 lg file transmission:1000
          Octets reçus:113517622 (113.5 MB) Octets transmis:6214973 (6.2 MB)
          Interruption:217 Adresse de base:0x6000

eth1 Link encap:Ethernet HWaddr 00:1b:fc:a4:25:de
          UP BROADCAST MULTICAST MTU:1500 Metric:1
          Packets reçus:0 erreurs:0 :0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 lg file transmission:1000
          Octets reçus:0 (0.0 B) Octets transmis:0 (0.0 B)
          Interruption:216 Adresse de base:0xa000

lo Link encap:Boucle locale
          inet adr:127.0.0.1 Masque:255.0.0.0
          adr inet6: ::1/128 Scope:Hôte
          UP LOOPBACK RUNNING MTU:16436 Metric:1
          Packets reçus:432 erreurs:0 :0 overruns:0 frame:0
          TX packets:432 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 lg file transmission:0
          Octets reçus:187991 (187.9 KB) Octets transmis:187991 (187.9 KB)
--------------------------------------------

Rgds.