如何測試Wi-Fi連線的穩定性?

如何測試Wi-Fi連線的穩定性?

如何測試特定時間內無線連線的穩定性,或測試較長時間內連線的穩定性?

答案1

最簡單的解決方案可能是啟動 ping 並檢查資料包遺失情況。

  • Win + R按並鍵入cmd+ OK啟動命令提示符
  • 輸入命令啟動 pingping -t 8.8.8.8
    • (這將 ping Google 的 DNS 伺服器,直到您按Ctrl + C取消)
  • 如果您與網路的連線斷開,您將收到錯誤訊息。

要真正確定是 Wi-Fi 適配器故障,最好對您的預設閘道執行 ping 操作。 (可能是 192.168.0.1 或 192.168.1.1)

答案2

回答原來的問題

答案很簡單。嘗試另一台電腦、筆記型電腦等。

現在,對於內部適配器,請嘗試回滾到先前的版本。這並不一定意味著它與 Windows 10 不相容,它可能意味著驅動程式崩潰。嘗試不同的版本並檢查它們是否有效。

過去在一台全新的筆記型電腦上遇到過這個問題,當我回滾驅動程式時,一切正常。

編輯:您是否考慮過這是路由器的問題而不是適配器的問題?其他設備也會斷開連線嗎?

更新:有很多因素都可能導致此問題。

  • 如果問題僅出在您的電腦上,請檢查您的防火牆設置,可能有某些東西阻止了您的訪問。嘗試 Windows 故障排除。你會驚訝地發現這有多少次有幫助,儘管有些人認為它沒有任何作用。
  • 如果問題出在您的 WiFi 上,請嘗試路由器 WiFi 設定中的其他頻道。

當您使用乙太網路電纜時是否遇到相同的問題?如果是的話,那麼你的路由器有問題。這甚至可能是您的 ISP 的問題。有很多事情可能會出錯。

答案3

以下批次檔將為您進行快速測試和重設:

@echo off
Rem Microsoft Windows 10 ping test to gateway.
Rem Run batch file from an administrative command prompt.

cls
:starting
Rem Send one ping to the gateway.  Write the results to a file.
ping 192.168.1.1 -n 1 > pingtest.txt

Rem Search for unreachable in the file. 
c:\windows\system32\findstr.exe "unreachable" pingtest.txt

Rem errorlevel 0 reset the adapter if 1 then wait 10 minutes and test again
if %errorlevel%==1 goto waiting

Rem unreachable was found reset the adapter.

Rem write the date and time the reset was done.
echo Reset date: %date% time: %time% >> resettimes.txt

Rem issue netsh interface show interface to find your adapter's name to reset
Rem my adapter is "wi-fi"

netsh interface set interface "wi-fi" disable
timeout /t  5
netsh interface set interface "wi-fi" enable
:waiting
echo "It is online waiting 10 minutes"
timeout /t  600
goto starting

相關內容