學習啦 > 學習電腦 > 網(wǎng)絡(luò)知識 > 網(wǎng)絡(luò)技術(shù) > Ping命令診斷網(wǎng)絡(luò)故障

Ping命令診斷網(wǎng)絡(luò)故障

時間: 若木635 分享

Ping命令診斷網(wǎng)絡(luò)故障

  Ping 是Windows系列自帶的一個可執(zhí)行命令。利用它可以檢查網(wǎng)絡(luò)是否能夠連通,用好它可以很好地幫助我們分析判定網(wǎng)絡(luò)故障。應用格式:Ping IP地址。該命令還可以加許多參數(shù)使用,具體是鍵入Ping按回車即可看到詳細說明。

  1.Ping本機IP

  例如本機IP地址為:172.168.200.2。則執(zhí)行命令Ping 172.168.200.2。如果網(wǎng)卡安裝配置沒有問題,則應有類似下列顯示:

  Replay from 172.168.200.2?bytes=32 time<10ms

  Ping statistics for 172.168.200.2?

  Packets?Sent=4? Received=4?Lost=0?0% loss ?

  Approximate round trip times in milli-seconds?

  Minimum=0ms?Maxiumu=1ms?Average=0ms

  如果在MS-DOS方式下執(zhí)行此命令顯示內(nèi)容為:Request timed out,則表明網(wǎng)卡安裝或配置有問題。將網(wǎng)線斷開再次執(zhí)行此命令,如果顯示正常,則說明本機使用的IP地址可能與另一臺正在使用的機器IP地址重復了。如果仍然不正常,則表明本機網(wǎng)卡安裝或配置有問題,需繼續(xù)檢查相關(guān)網(wǎng)絡(luò)配置。

  2.Ping網(wǎng)關(guān)IP

  假定網(wǎng)關(guān)IP為:172.168.6.1,則執(zhí)行命令Ping 172.168.6.1。在MS-DOS方式下執(zhí)行此命令,如果顯示類似以下信息:

  Reply from 172.168.6.1? bytes=32 time=9ms TTL=255

  Ping statistics for 172.168.6.1?

  Packets?Sent=4?Received=4?Lost=0?0% loss ?

  Approximate round trip times in milli-seconds?

  Minimum=1ms?Maximum=9ms?Average=5ms

  則表明局域網(wǎng)中的網(wǎng)關(guān)路由器正在正常運行。反之,則說明網(wǎng)關(guān)有問題。

  #1  3.Ping遠程IP

  這一命令可以檢測本機能否正常訪問Internet。比如本地電信運營商的IP地址為:202.102.48.141。在MS-DOS方式下執(zhí)行命令:Ping 202.102.48.141,如果屏幕顯示:

  Reply from 202.102.48.141? bytes=32 time=33ms TTL=252

  Reply from 202.102.48.141? bytes=32 time=21ms TTL=252

  Reply from 202.102.48.141? bytes=32 time=5ms TTL=252

  Reply from 202.102.48.141? bytes=32 time=6ms TTL=252

  Ping statistics for 202.102.48.141?

  Packets?Sent=4?Received=4?Lost=0?0% loss ?

  Approximate round trip times in milli-seconds?

  Minimum=5ms?Maximum=33ms?Average=16ms

  則表明運行正常,能夠正常接入互聯(lián)網(wǎng)。反之,則表明主機文件(windows/host)存在問題。

  注意一下:沖擊波之后的DNS服務器都是禁止PING的也就是關(guān)閉了ICMP協(xié)議的

  這樣大家可以使用TRACERT這個命令跟蹤數(shù)據(jù)包,也是可以同樣達到目的的

133647