帮助 6Mb/s WIFI 连接速度 Qualcomm Atheros 设备 [168c:0042] (rev 31)

帮助 6Mb/s WIFI 连接速度 Qualcomm Atheros 设备 [168c:0042] (rev 31)

我对 Ubuntu 还不熟悉。我在一台新的 Dell Inspiron 5565 上安装了 16.04LTS。一切似乎都运行良好,直到我注意到我的互联网连接速度很慢。当我查看“连接信息”时,它显示速度为 6Mb/s。在我的 Windows 分区上,我得到 400+ Mb/s。我尝试了以下操作:

  • Qualcomm Atheros Device [168c:0042] (rev 30) Wi-Fi 驱动程序安装
  • sudo sed -i 's/wifi.powersave = 3/wifi.powersave = 2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
  • Qualcomm Atheros Device [168c:0042] (rev 31) Wi-Fi 驱动程序安装
  • 到目前为止似乎没有任何效果。以下是我正在使用的方法:

    cat 进程/版本

    Linux 版本 4.13.0-26-generic (buildd@lgw01-amd64-031) (gcc 版本 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5)) #29~16.04.2-Ubuntu SMP 2018 年 1 月 9 日星期二 22:00:44 UTC

    lspci -vvnn |grep -A 9 网络

    网络控制器 [0280]: Qualcomm Atheros 设备 [168c:0042] (rev 31) 子系统: Dell 设备 [1028:1810] 控制: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ 状态: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast

    TAbort- SERR- 正在使用的内核驱动程序:ath10k_pci 内核模块:ath10k_pci

    答案1

    我的连接信息也显示6 Mbps:

    $ iwconfig
    enp59s0   no wireless extensions.
    
    lo        no wireless extensions.
    
    wlp60s0   IEEE 802.11  ESSID:"TELUS1213-5G"  
              Mode:Managed  Frequency:5.22 GHz  Access Point: 70:F1:96:42:5F:06   
              Bit Rate=6 Mb/s   Tx-Power=17 dBm   
              Retry short limit:7   RTS thr:off   Fragment thr:off
              Power Management:on
              Link Quality=64/70  Signal level=-46 dBm  
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:0  Invalid misc:81   Missed beacon:0
    

    然而 speedtest.net 报告的吞吐量几乎达到 60 Mbps:

    互联网速度 无线网络

    在额定速度为 1000 Mbps 的以太网适配器上运行相同测试,结果互联网下载速度同样为 60 Mbps。因此速度受 ISP 限制,而不是受 WiFi 限制。相关lspci -vv

    3b:00.0 Ethernet controller: Qualcomm Atheros Killer E2400 Gigabit Ethernet Controller (rev 10)
        Subsystem: Device 0707:2400
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 16
        Region 0: Memory at dd600000 (64-bit, non-prefetchable) [size=256K]
        Region 2: I/O ports at d000 [size=128]
        Capabilities: <access denied>
        Kernel driver in use: alx
        Kernel modules: alx
    
    3c:00.0 Network controller: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter (rev 32)
        Subsystem: Bigfoot Networks, Inc. QCA6174 802.11ac Wireless Network Adapter
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 137
        Region 0: Memory at dd200000 (64-bit, non-prefetchable) [size=2M]
        Capabilities: <access denied>
        Kernel driver in use: ath10k_pci
        Kernel modules: ath10k_pci
    

    我无法解释为什么iwconfig实际速度如此之高,但速度却如此之低。从其他 Linux CLI 源获得了相同的结果:

    $ iw dev wlp60s0 link
        (... SNIP ...)
        freq: 5220
        RX: 1421503515 bytes (4545343 packets)
        TX: 131449836 bytes (1061284 packets)
        signal: -55 dBm
        tx bitrate: 6.0 MBit/s
    
        bss flags:  short-preamble short-slot-time
        dtim period:    2
        beacon int: 100
    
    $ iwlist wlp60s0 bitrate
    wlp60s0   unknown bit-rate information.
              Current Bit Rate=6 Mb/s
    

    相关内容