A conexão com fio não funciona após a recuperação

1

Estou usando o Ubuntu 15.10 e encontrei alguns problemas com a conexão com fio. depois de usar o grub, usando a opção de recuperação do Ubuntu com a rede ativada, isso estragou minhas configurações de conexão com fio.

usando:

ifconfig eth0 up

retorna:

eth0: ERROR while getting interface flags: No such device

usando:

dmesg | grep eth

retorna:

[ 2.073397] usbcore: registered new interface driver cdc_ether
[ 2.215551] r8152 2-1:1.0 eth0: v1.08.1 (2015/07/28)
[ 3.237153] r8152 2-1:1.0 enx9cebe8261253: renamed from eth0
[ 69.963790] r8152 2-1:1.0 eth0: v1.08.1 (2015/07/28)
[ 71.017553] r8152 2-1:1.0 enx9cebe8261253: renamed from eth0
[ 195.797143] r8152 2-1:1.0 eth0: v1.08.1 (2015/07/28)
[ 196.861909] r8152 2-1:1.0 enx9cebe8261253: renamed from eth0
[ 229.932958] r8152 2-1:1.0 eth0: v1.08.1 (2015/07/28)
[ 230.981139] r8152 2-1:1.0 enx9cebe8261253: renamed from eth0

A conexão sem fio ainda funciona bem. Estou usando o laptop (Asus UX305FA), então minha conexão com fio é usb para adaptador ethernet. Ligação com fios trabalhada fora da caixa com adaptador na instalação nova. Eu agradeceria qualquer ajuda que pudesse obter sobre como resolver esse problema.

Editar:

ip link

retorna:

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default 
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: wlp2s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DORMANT group default qlen 1000
link/ether 5c:e0:c5:1b:e0:bd brd ff:ff:ff:ff:ff:ff
4: enx9cebe8261253: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
link/ether 9c:eb:e8:26:12:53 brd ff:ff:ff:ff:ff:ff

Observe que o número 3 está faltando. Acho que o número 3 costumava ser a minha conexão com fio original, mas não é mais reconhecido quando eu conecto meu cabo ethernet.

/etc/udev/rules.d/10-network.rules

Não existe tal arquivo, eu crio um novo arquivo com linha?

SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="10:c3:7b:4e:1d:6a″,KERNEL=="enp3s0″, NAME="eth0″

Editar2:

ifconfig enx9cebe8261253

retorna:

enx9cebe8261253 Link encap:Ethernet  HWaddr 9c:eb:e8:26:12:53  
                inet addr:10.250.29.214  Bcast:10.250.29.255  Mask:255.255.255.0
                inet6 addr: fe80::9eeb:e8ff:fe26:1253/64 Scope:Link
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:52 errors:0 dropped:0 overruns:0 frame:0
                TX packets:183 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:1000 
                RX bytes:3866 (3.8 KB)  TX bytes:18573 (18.5 KB)

e wifi

ifconfig wlp2s0

retorna:

wlp2s0    Link encap:Ethernet  HWaddr 5c:e0:c5:1b:e0:bd  
          inet addr:192.168.43.247  Bcast:192.168.43.255  Mask:255.255.255.0
          inet6 addr: fe80::5ee0:c5ff:fe1b:e0bd/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:306366 errors:0 dropped:0 overruns:0 frame:0
          TX packets:80425 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:427480060 (427.4 MB)  TX bytes:10062427 (10.0 MB)

Parece praticamente idêntico, mas funciona sem fio e com fio não

    
por user2821023 26.01.2016 / 09:27

1 resposta

1

Tente:

ip link

Minha saída:

alex@IT-CROWD:/etc/udev/rules.d$ ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
    link/ether 10:c3:7b:4e:1d:6a brd ff:ff:ff:ff:ff:ff
3: vmnet1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT group default qlen 1000
    link/ether 00:50:56:c0:00:01 brd ff:ff:ff:ff:ff:ff
4: vmnet8: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT group default qlen 1000
    link/ether 00:50:56:c0:00:08 brd ff:ff:ff:ff:ff:ff

E você pode alterar o nome do dispositivo definindo o nome manualmente com uma regra do udev em (se o arquivo não existir, crie):

  

/etc/udev/rules.d/10-network.rules

Adicione a seguinte linha, e não esqueça de mudar o MAC e o KERNEL para o seu MAC e KERNEL:

SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="10:c3:7b:4e:1d:6a″,KERNEL=="enp3s0″, NAME="eth0″

Essas regras serão aplicadas automaticamente na inicialização.

    
por Alex13 26.01.2016 / 09:43