Minha eth0 foi e eu não tenho conexão de internet e rede

15

Eu tinha conexão com a internet, mas quando atualizei meu VGA e reiniciei meu PC, tudo para o eth0 desapareceu.

Quando usei ifdown:

 ifdown: interface eth0 not configured

Existe algo que eu possa fazer?

EDITAR:
Conteúdo de /etc/network/interfaces

auto lo
iface lo inet loopback

Quando eu ifconfig I não tem estas linhas:

inet addr:192.168.1.5  Bcast:192.168.1.255  Mask:255.255.255.0
inet6 addr: fe80::219:5bff:fe5e:a5e/64 Scope:Link

No terminal digitado:

sudo gedit /etc/network/interfaces

e, em seguida, adicionou essas linhas na parte inferior:

auto eth0
iface eth0 inet dhcp

eu digitei:

sudo ifdown eth0
sudo ifup eth0

quando eu envio o segundo comando recebi a mensagem abaixo:

No DHCPOFFERS received
No working leases in persistent database - sleeping

Alguma ajuda?

    
por ALH 22.12.2013 / 06:32

4 respostas

12

Tente:

sudo dpkg-reconfigure network-manager 

Se isso não funcionar, inicialize a partir de um live CD, faça o backup das configurações de rede antigas, limpe o arquivo de conexão do sistema e copie os arquivos do CD ao vivo.

Alterar para raiz:

sudo su

backup:

mv /media/<Name of your Ubuntu Partion>/etc/NetworkManager/NetworkManager.conf /media/<Name of your Ubuntu Partion>/etc/NetworkManager/NetworkManager.conf.broken

claro:

rm /media/<Name of your Ubuntu Partion>/etc/NetworkManager/system-connections/*

copiar:

cp /etc/NetworkManager/NetworkManager.conf /media/<Name of your Ubuntu Partion>/etc/NetworkManager/NetworkManager.conf
cp /etc/NetworkManager/system-connections/* /media/<Name of your Ubuntu Partion>/etc/NetworkManager/system-connections/
    
por virtualxtc 24.12.2013 / 08:53
7

Você pode tentar editar / etc / network / interfaces e colocar as configurações padrão do DHCP abaixo?

# 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 dhcp

Tente reiniciar a rede em sudo service network-manager stop .

Se isso não funcionar, tente sudo service network-manager stop .

Em seguida, sudo ifconfig eth0 up para ativar a interface

Em seguida, force o Ubuntu a solicitar uma nova concessão de DHCP por sudo dhclient eth0

    
por Chester 24.12.2013 / 07:43
1

Eu tive um problema semelhante depois de um updtate do Ubuntu (12.04).

Eu resolvi isso fazendo login no modo de recuperação, então ative a rede, então digitando no console:

sudo apt-get remove network-manager
sudo apt-get update
sudo apt-get install network-manager
    
por fremo 28.12.2013 / 16:28
1

Obrigado. Funcionou para mim.
1 - Eu tinha o endereço IP, mas sem conexão com a internet | 2 - a porta LAN estava ativa
3 - Eu tinha atribuído endereço IP estático

Meu /etc/network/interfaces teve

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface

iface enp4s8 inet static
address 192.168.2.251
netmask 255.255.255.0
network 192.168.2.0

Eu estava tendo ifconfig como (isso é edição manual - foi assim)

~$ ifconfig
enp4s8    Link encap:Ethernet  HWaddr 00:19:d1:73:b7:11  
          inet addr:192.168.2.251  Bcast:192.168.2.251  Mask:255.255.255.0
          inet6 addr: fe80::219:d1ff:fe73:b711/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:13181 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8462 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:16690503 (16.6 MB)  TX bytes:884958 (884.9 KB)

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:317 errors:0 dropped:0 overruns:0 frame:0
          TX packets:317 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:40111 (40.1 KB)  TX bytes:40111 (40.1 KB)

Eu mudei o /etc/network/interfaces para

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto enp4s8
#iface enp4s8 inet dhcp


#iface enp4s8 inet static
#address 192.168.2.251
#netmask 255.255.255.0
#network 192.168.2.0
#broadcast 192.168.2.255
#gateway 192.168.2.1
#dns-nameservers 192.168.2.1

Em seguida, seguiu os passos acima:

1 - sudo service network-manager stop

2 - sudo ifconfig enp4s8 up para abrir a interface

3 - Então, force o Ubuntu a pedir uma nova concessão de DHCP por sudo dhclient enp4s8

4 - manualmente sudo service network-manager start * Isto é quando eu tenho a conexão com a rede

Estes passos funcionaram.

FYI - O Live CD também tinha conexão com a internet Eu não copiei arquivos do live cd.

Todo - eu preciso ter endereço IP estático. Não está funcionando, se eu voltar com configurações antigas. ainda solução de problemas e não relevante para este post. Desculpa Plz.

    
por vb217 28.02.2018 / 09:46