Debian: no hay conexión por cable después del reinicio

Debian: no hay conexión por cable después del reinicio

Anoche estaba trabajando en mi computadora, como referencia estoy usando i3, y decidí desinstalar XFCE4, ya que sentí que no lo necesitaba. A la mañana siguiente encendí mi computadora y no tengo conexión por cable. Sin embargo, inicié en mi partición de Windows y descubrí que funcionaba allí. Busqué en línea pero tuve problemas para encontrar respuestas.

Este es el resultado de sudo ifconfig:

archie@debian:~$ sudo ifconfig
[sudo] password for archie: 
eth0      Link encap:Ethernet  HWaddr 40:8d:5c:58:fa:92  
          inet6 addr: fe80::428d:5cff:fe58:fa92/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:2061 errors:0 dropped:54 overruns:0 frame:0
          TX packets:29 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:307371 (300.1 KiB)  TX bytes:4856 (4.7 KiB)

 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:42 errors:0 dropped:0 overruns:0 frame:0
          TX packets:42 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:5306 (5.1 KiB)  TX bytes:5306 (5.1 KiB)

Y este es mi /etc/network/interfaces

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

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface eth0 inet6 auto

Estoy agradecido por cualquier ayuda.

Respuesta1

A continuación auto loagregue auto eth0. Luego, debajo de eso, agreguealow-hotplug eth0

Su /etc/network/interfaces final debería decir:

auto lo
auto eth0
allow-hotplug eth0
iface eth0 inet6 auto

Reinicie por si acaso.

ver: man interfacespara más información :)

información relacionada