Killer Ethernet E2400 não conectando 16.04

0

Estou usando o Ubuntu 16.04 com este hardware:

# E2400 Killer Ethernet
lspci -nn | grep 0200
04:00.0 Ethernet controller [0200]: Qualcomm Atheros Killer E2400 Gigabit Ethernet Controller [1969:e0a1] (rev 10)

E esta versão do Ubuntu:

Linux lilezek-desktop 4.4.0-47-generic #68-Ubuntu SMP Wed Oct 26 19:39:52 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

modinfo da alx:

# modinfo alx 
filename:       /lib/modules/4.4.0-47-generic/kernel/drivers/net/ethernet/atheros/alx/alx.ko
license:        GPL
description:    Qualcomm Atheros(R) AR816x/AR817x PCI-E Ethernet Network Driver
author:         Qualcomm Corporation, <[email protected]>
author:         Johannes Berg <[email protected]>
srcversion:     80B89D6BA6F4A4F4A917E3C
alias:          pci:v00001969d000010A0sv*sd*bc*sc*i*
alias:          pci:v00001969d000010A1sv*sd*bc*sc*i*
alias:          pci:v00001969d00001090sv*sd*bc*sc*i*
alias:          pci:v00001969d0000E0A1sv*sd*bc*sc*i*
alias:          pci:v00001969d0000E091sv*sd*bc*sc*i*
alias:          pci:v00001969d00001091sv*sd*bc*sc*i*
depends:        mdio
intree:         Y
vermagic:       4.4.0-47-generic SMP mod_unload modversions 

Mais informações sobre o ALX e o ifconfig:

# ifconfig
enp5s0    Link encap:Ethernet  direcciónHW ::ec  
      ACTIVO DIFUSIÓN MULTICAST  MTU:1500  Métrica:1
      Paquetes RX:0 errores:0 perdidos:0 overruns:0 frame:0
      Paquetes TX:0 errores:0 perdidos:0 overruns:0 carrier:0
      colisiones:0 long.colaTX:1000 
      Bytes RX:0 (0.0 B)  TX bytes:0 (0.0 B)
      Interrupción:16 

# lsmod | grep alx
alx                    36864  0
mdio                   16384  1 alx

# dmesg | grep alx
[   21.416362] alx 0000:05:00.0 eth1: Qualcomm Atheros AR816x/AR817x Ethernet [1c:1b:0d:68:96:ec]
[   21.440970] alx 0000:05:00.0 enp5s0: renamed from eth1

# dmesg | grep enp
[  113.422322] alx 0000:05:00.0 enp5s0: NIC Up: 100 Mbps Full
[  113.554797] alx 0000:05:00.0 enp5s0: fatal interrupt 0x200, resetting
[  113.556538] alx 0000:05:00.0 enp5s0: NIC Up: 100 Mbps Full
[  113.689014] alx 0000:05:00.0 enp5s0: fatal interrupt 0x200, resetting
[  113.690728] alx 0000:05:00.0 enp5s0: NIC Up: 100 Mbps Full
# unplug cable    
[  113.796813] alx 0000:05:00.0 enp5s0: Link Down
[  113.823228] alx 0000:05:00.0 enp5s0: fatal interrupt 0x200, resetting
[  113.957444] alx 0000:05:00.0 enp5s0: fatal interrupt 0x200, resetting
[  114.091661] alx 0000:05:00.0 enp5s0: fatal interrupt 0x200, resetting
[  114.201293] IPv6: ADDRCONF(NETDEV_UP): enp5s0: link is not ready
[  114.225878] alx 0000:05:00.0 enp5s0: fatal interrupt 0x200, resetting
[  114.360092] alx 0000:05:00.0 enp5s0: fatal interrupt 0x200, resetting
[  114.494306] alx 0000:05:00.0 enp5s0: fatal interrupt 0x200, resetting

Qual é atualizado. Tudo estava funcionando, mas mudei minha placa-mãe que tinha um Gigabit Ethernet Controller para uma nova placa-mãe com E2400 Killer Ethernet Controller.

Será que mudar o hardware está fazendo com que o Ubuntu não funcione corretamente?

Atenciosamente, lilEzek.

    
por lilezek 26.11.2016 / 16:42

1 resposta

1

Por favor, veja este post: link O cartaz tem os mesmos sintomas; uma ethernet que não funciona e a mensagem de erro:

fatal interrupt 0x200, resetting

Ele resolveu desabilitando o IOMMU é o BIOS. Por favor tente. Se for ineficaz, tentaremos a opção do parâmetro GRUB.

Por favor, abra um terminal e faça:

gksudo gedit /etc/default/grub

Use nano ou kate ou leafpad se você não tiver o editor de texto gedit. Mude a linha:

GRUB_LINUX_CMD_LINE=""

Para ler:

GRUB_LINUX_CMD_LINE="iommu=soft"

Revise cuidadosamente, salve e feche o editor de texto. Faça o sistema reler o arquivo e usar as alterações:

sudo update-grub

Você deve estar pronto.

    
por chili555 29.11.2016 / 23:26