Velocidade de upload muito lenta | Ubuntu 16.04 | Dual-boot | Adaptador de rede sem fio Qualcomm Atheros QCA6174 802.11ac [168c: 003e]

1

Depois de pesquisar por todo o google e askUbuntu, não consegui encontrar uma solução para o meu problema. Eu tenho um Dell XPS 13 com Windows 10 e Ubuntu 16.04 com inicialização dupla. Minha velocidade de download da Internet funciona muito bem, mas minha velocidade de upload é muito mais lenta do que a minha velocidade no Windows e, honestamente, não consigo fazer nenhum trabalho dessa maneira.

Aqui estão os resultados dos meus testes na internet:

$ curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python - Retrieving speedtest.net configuration... Testing from Bezeq International (79.176.94.28)... Retrieving speedtest.net server list... Selecting best server based on ping... Hosted by Partner (Tel Aviv) [1.56 km]: 30.989 ms Testing download speed................................................................................ Download: 33.93 Mbit/s Testing upload speed................................................................................................ Upload: 0.15 Mbit/s

Resultados para: sudo lshw -C net

$ sudo lshw -C net [sudo] password for liorscha: *-network
description: Wireless interface product: QCA6174 802.11ac Wireless Network Adapter vendor: Qualcomm Atheros physical id: 0 bus info: pci@0000:3a:00.0 logical name: wlp58s0 version: 32 serial: 9c:b6:d0:e6:d5:79 width: 64 bits clock: 33MHz capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless configuration: broadcast=yes driver=ath10k_pci driverversion=4.13.0-38-generic firmware=WLAN.RM.4.4.1-00051-QCARMSWP-1 ip=10.0.0.15 latency=0 link=yes multicast=yes wireless=IEEE 802.11 resources: irq:286 memory:dc000000-dc1fffff

Resultados para iwlist wlan0 s

wlan0 Interface doesn't support scanning.

Resultados para $ lsmod | grep ath10 ath10k_pci 45056 0 ath10k_core 352256 1 ath10k_pci ath 28672 1 ath10k_core mac80211 782336 1 ath10k_core cfg80211 614400 3 mac80211,ath,ath10k_core

Estas são as coisas que eu já tentei:

  • sudo apt-get install --reinstale o linux-firmware
  • Copiando drivers do git repos para / lib / firmware / ath10k / QCA6174 / *
  • Preferindo o IPV4 no IPV6
  • Criptografando com software em vez de hardware

Agradecemos antecipadamente

EDITAR Isso resolveu para mim.

    
por Lior Schachter 17.04.2018 / 00:41

2 respostas

1

Posso confirmar que este problema está relacionado com o erro # 1670041 da @ @ WinEunuuchs2Unix postada . FYI, meu adaptador sem fio PCI-E é TP-LINK TL-WDN4800 :

lspci -nn |grep -i wireless

Network controller [0280]: Qualcomm Atheros AR93xx Wireless Network Adapter [168c:0030] (rev 01)

The low throughput with transmit TCP streams on ath10k should be fixed with this mac80211 commit:

mac80211: Adjust TSQ pacing shift

https://git.kernel.org/linus/36148c2bbfbe50c50206b6f61d072203c80161e0

Apparently v4.16-rc5 was the first release to have that commit.

Atualizar meu kernel para o 4.17 (o antigo é 4.14 LTS) corrige isso.

    
por cherrot 15.08.2018 / 15:35
0

Você parece ser afetado por esse bug . Existem 68 posts de problemas e sugestões. O último sugere:

  • Desativar economia de energia
  • Use a versão mais recente do kernel - estou usando o 4.14.34 e não tive problemas na cadeia 4.14, que é o LTS (Long Term Support) por 6 anos.
por WinEunuuchs2Unix 17.04.2018 / 01:42