Não é possível fazer com que minha conexão com fio funcione

0

Sem fio funciona bem sem nenhum problema, mas a conexão com fio não está funcionando para mim.

Estou executando o Ubuntu 14.04.

Eu tentei seguir vários tópicos diferentes, principalmente estes; link , link . Mas até agora, ainda não há conexão com o meu cabo.

Eu editei esses arquivos um pouco, porque todo mundo está dando instruções diferentes para problemas semelhantes, mas eu não consigo acertar. Por favor, alguém me ajude ..

ifconfig:

eth0      Link encap:Ethernet  HWaddr ac:22:0b:b0:91:3e  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:2424 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2424 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:241074 (241.0 KB)  TX bytes:241074 (241.0 KB)

wlan0     Link encap:Ethernet  HWaddr 48:d2:24:3d:bc:42  
          inet addr:192.168.0.101  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::4ad2:24ff:fe3d:bc42/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:10494 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8782 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:8283223 (8.2 MB)  TX bytes:1409996 (1.4 MB)

/ etc / network / interfaces:

 #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
 address 127.0.0.1
 netmask 255.0.0.0

 #The primary network interface
 auto eth0
 iface eth0 inet dhcp

/etc/resolv.conf:

 #Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
 #DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
 nameserver 127.0.1.1
 nameserver 192.168.0.1
 nameserver 94.208.107.35
 #search WL309
    
por user2939361 03.10.2014 / 19:31

1 resposta

0

Seu dispositivo eth0 não possui um endereço IP. Verifique o / etc / network / interfaces e verifique se ele tem algo como o seguinte.

auto lo eth0
iface eth0 inet dhcp

Se não tiver isso, adicione-o e salve o arquivo. Então corra -

service networking restart
    
por Tom Damon 03.10.2014 / 19:51