Connection

網路超時如何分析問題

  • February 15, 2017

在過去的三個月裡,我經歷了我的網際網路連接開始變得非常緩慢,並且網站載入時間很長。我做的第一件事是對 www.google.com 進行 ping 操作,這表明我正在丟包。這裡的一些結果:

64 bytes from 74.125.39.103: icmp_seq=2909 ttl=53 time=48.222 ms
Request timeout for icmp_seq 2910
Request timeout for icmp_seq 2911
64 bytes from 74.125.39.103: icmp_seq=2912 ttl=53 time=44.372 ms

幾天后,我不得不重置我的路由器,因為它無法建立正確的網路連接。當事情再次工作了幾天時,這是在重置之後。但後來同樣的網路超時又開始發生了。

我想知道如何分析問題以找到導致此超時的源。你會採取哪些步驟來圈出這個問題?

我的網路

筆記型電腦 -> 無線路由器調製解調器 -> ISP

編輯:我在 Mac OS X 10.6

致電您的 ISP。他們可以提供驚人的幫助。

看看在mtr你的 OSX 系統上使用。

它是一個非常有用的工具,可以重複執行traceroute,儲存有關沿途每一跳的資訊。

因此,最後,您有一個“x”跳數、它們的可用性/封包遺失以及平均、最小和最大 ping 時間的列表。

“互動”模式的語法很簡單

mtr <site>   

或者為了更方便的離線分析,

mtr <site> --report -c 1000

您可以從以下網址獲取有關如何安裝mtr的資訊:http: //mtr.darwinports.com

樣本輸出:

$ mtr google.com --report -c 10
HOST: blahblahblah                Loss%   Snt   Last   Avg  Best  Wrst StDev
 1. h119.127.19.98.static.ip.win  0.0%    10    5.4  14.4   2.0 111.1  34.0
 2. h235.30.213.151.static.ip.wi  0.0%    10    3.4   3.7   2.0   8.4   1.9
 3. h122.222.90.75.static.ip.win  0.0%    10    3.3   4.0   3.3   5.7   1.0
 4. h18.222.90.75.static.ip.wind  0.0%    10    3.9   4.5   3.4   5.5   0.7
 5. h16.222.90.75.static.ip.wind  0.0%    10    5.1   6.1   5.1   7.5   0.8
 6. h38.254.213.151.static.ip.wi  0.0%    10    6.7   7.3   6.2   8.8   0.9
 7. h14.254.213.151.static.ip.wi  0.0%    10   23.9  25.0  23.4  31.1   2.4
 8. h12.254.213.151.static.ip.wi  0.0%    10   23.9  24.8  23.3  27.3   1.1
 9. h10.254.213.151.static.ip.wi  0.0%    10   41.5  42.0  41.3  43.4   0.7
10. 72.14.219.192                 0.0%    10   41.0  46.6  40.8  88.3  14.7
11. 72.14.233.54                  0.0%    10   42.9  54.3  41.3 157.1  36.2
12. 72.14.232.213                 0.0%    10   44.5  42.8  41.3  45.3   1.4
13. 209.85.253.141               40.0%    10   50.5  51.4  48.6  55.8   2.5

引用自:https://serverfault.com/questions/156839