Ubuntu 16.04 Problemas de conexão Wi-Fi (“conectado” à perda de pacotes) [duplicado]

2

Estou usando um Lenovo E51. A primeira questão é que o meu Wi-Fi está ligado, no entanto, constantemente tem zero barras quando se olha para a força da conexão.

A outra questão é mais séria. Ocasionalmente (aproximadamente a cada hora) ao usar o wifi minhas páginas da web param de carregar e todo o tráfego pela internet se torna nulo e sem efeito. Eu pinguei meu ponto de acesso Wi-Fi durante uma dessas quedas de conexão, e ele mostra aproximadamente 17 000 ms com 15% de perda de pacotes. No entanto, se eu pingar o ponto de acesso de outro laptop, não tenho o mesmo problema.

Quando desativo meu wifi e uso a conexão ethernet, meu ping e perda de pacotes retornam ao normal.

Mais detalhes

sudo lshw -class network

   description: Wireless interface
   product: Qualcomm Atheros
   vendor: Qualcomm Atheros
   physical id: 0
   bus info: pci@0000:02:00.0
   logical name: wlp2s0
   version: 30
   serial: c8:ff:28:6f:d5:3b
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
   configuration: broadcast=yes driver=ath10k_pci driverversion=4.4.0-28-generic firmware=WLAN.TF.1.0-00267-1 ip=10.0.42.172 latency=0 link=yes multicast=yes wireless=IEEE 802.11abgn
   resources: irq:128 memory:c1000000-c11fffff
dmesg | grep ath10k

[   54.031166] ath10k_pci 0000:02:00.0: pci irq msi-x interrupts 8 irq_mode 0 reset_mode 0
[   54.267795] ath10k_pci 0000:02:00.0: Direct firmware load for ath10k/cal-pci-0000:02:00.0.bin failed with error -2
[   56.149768] ath10k_pci 0000:02:00.0: qca9377 hw1.0 (0x05020000, 0x003820ff sub 17aa:4035) fw WLAN.TF.1.0-00267-1 fwapi 5 bdapi 2 htt-ver 3.1 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1 features ignore-otp
[   56.149769] ath10k_pci 0000:02:00.0: debug 0 debugfs 1 tracing 1 dfs 0 testmode 0
[   56.158505] ath10k_pci 0000:02:00.0 wlp2s0: renamed from wlan0
[35286.808388] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[35294.004448] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[37307.506326] ath10k_pci 0000:02:00.0: failed to install key for vdev 0 peer 30:91:8f:91:88:8b: -110
[37307.562587] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[38438.809538] ath10k_pci 0000:02:00.0: failed to install key for vdev 0 peer 30:91:8f:91:88:8b: -110
[43803.521938] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43895.527856] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43912.384595] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43912.418986] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43912.470225] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43912.490166] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43917.679053] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43943.076183] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43943.076530] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!
[43943.076949] ath10k_pci 0000:02:00.0: no channel configured; ignoring frame(s)!

Deixe-me saber se há alguma outra informação que você precisa. Agradecemos antecipadamente por qualquer / toda ajuda.

EDIT: atualização de firmware foi malsucedida - dmesg | grep ath10k retorna o mesmo erro

dmesg | grep ath10k

[   54.031166] ath10k_pci 0000:02:00.0: pci irq msi-x interrupts 8 irq_mode 0 reset_mode 0
[   54.267795] ath10k_pci 0000:02:00.0: Direct firmware load for ath10k/cal-pci-0000:02:00.0.bin failed with error -2
[   56.149768] ath10k_pci 0000:02:00.0: qca9377 hw1.0 (0x05020000, 0x003820ff sub 17aa:4035) fw WLAN.TF.1.0-00267-1 fwapi 5 bdapi 2 htt-ver 3.1 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1 features ignore-otp
[   56.149769] ath10k_pci 0000:02:00.0: debug 0 debugfs 1 tracing 1 dfs 0 testmode 0
[   56.158505] ath10k_pci 0000:02:00.0 wlp2s0: renamed from wlan0

Atualização: Eu também tentei atualizar minha versão do kernel da versão 4.4.0-31-genérica para a 4.4.9-040409-genérica sem sucesso.

$ lspci -nnk | grep -A2 Network
02:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30)
    Subsystem: Lenovo Device [17aa:4035]
    Kernel driver in use: ath10k_pci

Eu também tentei como sugerido em Atho 10 WiFi não está funcionando corretamente ou seja:

sudo apt-get install git
git clone https://github.com/kvalo/ath10k-firmware.git
cd ath10k-firmware
sudo cp -r -i * /lib/firmware/ath10k/

dmesg | grep ath10k erros ainda persistem juntamente com problemas de conexão.

    
por YinGroen 02.08.2016 / 15:45

1 resposta

0

Eu sugiro que você tente mais tarde firmware para o seu dispositivo. Com uma conexão de internet ativa, abra um terminal e faça:

wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.159_all.deb
sudo dpkg -i linux-firmware*.deb

Reinicie e nos informe se o desempenho melhorou.

Nota aos pesquisadores: O número da versão, 1.159 neste caso, muda de tempos em tempos. Este número de versão pode ser inválido em algum momento no futuro.

    
por chili555 02.08.2016 / 16:11