1. 程式人生 > >Linux ping --測試與目標主機的連通性

Linux ping --測試與目標主機的連通性

Linux系統的ping命令是常用的網路命令,它通常用來測試與目標主機的連通性,我們經常會說“ping一下某機器,看是不是開著”、不能開啟網頁時會說“你先ping閘道器地址192.168.1.1試試”。它通過傳送ICMP ECHO_REQUEST資料包到網路主機 (send ICMP ECHO_REQUEST tonetwork hosts),並顯示響應情況,這樣我們就可以根據它輸出的資訊來確定目標主機是否可訪問(但這不是絕對的)。有些伺服器為了防止通過ping探測到,通過防火牆設定了禁止ping或者在核心引數中禁止ping,這樣就不能通過ping確定該主機是否還處於開啟狀態。

linux下的ping和windows下的ping稍有區別,linux下ping不會自動終止,需要按ctrl+c終止或者用引數-c指定要求完成的迴應次數。

1.命令格式:

ping[引數] [主機名或IP地址]

2.命令功能:

ping命令用於:確定網路和各外部主機的狀態;跟蹤和隔離硬體和軟體問題;測試、評估和管理網路。如果主機正在執行並連在網上,它就對回送訊號進行響應。每個回送訊號請求包含一個網際協議(IP)和 ICMP 頭,後面緊跟一 個 tim結構,以及來填寫這個資訊包的足夠的位元組。預設情況是連續傳送回送訊號請求直到接收到中斷訊號(Ctrl-C)。

ping 命令每秒傳送一個數據報並且為每個接收到的響應列印一行輸出。ping 命令計算訊號往返時間和(資訊)包丟失情況的統計資訊,並且在完成之後顯示一個簡要總結。ping 命令在程式超時或當接收到 SIGINT 訊號時結束。Host 引數或者是一個有效的主機名或者是因特網地址。

3.命令引數:

-d使用Socket的SO_DEBUG功能。

-f  極限檢測。大量且快速地送網路封包給一臺機器,看它的迴應。

-n只輸出數值。

-q不顯示任何傳送封包的資訊,只顯示最後的結果。

-r忽略普通的Routing Table,直接將資料包送到遠端主機上。通常是檢視本機的網路介面是否有問題。

-R記錄路由過程。

-v詳細顯示指令的執行過程。

<p>-c數目:在傳送指定數目的包後停止。

-i秒數:設定間隔幾秒送一個網路封包給一臺機器,預設值是一秒送一次。

-I網路介面:使用指定的網路介面送出資料包。

-l前置載入:設定在送出要求資訊之前,先行發出的資料包。

-p範本樣式:設定填滿資料包的範本樣式。

-s位元組數:指定傳送的資料位元組數,預設值是56,加上8位元組的ICMP頭,一共是64ICMP資料位元組。

-t存活數值:設定存活數值TTL的大小。

4.使用例項:

例項1:ping的通的情況

命令:

ping 192.168.120.205

輸出:

[[email protected] ~]# ping 192.168.120.205

PING 192.168.120.205 (192.168.120.205) 56(84) bytes of data.

64 bytes from 192.168.120.205: icmp_seq=1 ttl=64 time=0.720 ms

64 bytes from 192.168.120.205: icmp_seq=2 ttl=64 time=0.181 ms

64 bytes from 192.168.120.205: icmp_seq=3 ttl=64 time=0.191 ms

64 bytes from 192.168.120.205: icmp_seq=4 ttl=64 time=0.188 ms

64 bytes from 192.168.120.205: icmp_seq=5 ttl=64 time=0.189 ms

--- 192.168.120.205 ping statistics ---

5 packets transmitted, 5 received, 0% packet loss, time 4000ms

rtt min/avg/max/mdev = 0.181/0.293/0.720/0.214 ms

[[email protected] ~]

說明:

例項2:ping不通的情況

命令:

ping192.168.120.202

輸出:

[[email protected] ~]# ping 192.168.120.202

PING 192.168.120.202 (192.168.120.202) 56(84) bytes of data.

From 192.168.120.204 icmp_seq=1 Destination Host Unreachable

From 192.168.120.204 icmp_seq=2 Destination Host Unreachable

From 192.168.120.204 icmp_seq=3 Destination Host Unreachable

From 192.168.120.204 icmp_seq=4 Destination Host Unreachable

From 192.168.120.204 icmp_seq=5 Destination Host Unreachable

From 192.168.120.204 icmp_seq=6 Destination Host Unreachable

--- 192.168.120.202 ping statistics ---

8 packets transmitted, 0 received, +6 errors, 100% packet loss, time 7005ms

, pipe 4

[[email protected] ~]#

說明:

例項3:ping閘道器

命令:

ping -b192.168.120.1

輸出:

[[email protected] ~]# route

Kernel IP routing table

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

192.168.120.0   *               255.255.255.0   U     0      0        0 eth0

192.168.0.0     192.168.120.1   255.255.0.0     UG    0      0        0 eth0

10.0.0.0        192.168.120.1   255.0.0.0       UG    0      0        0 eth0

default         192.168.120.240 0.0.0.0         UG    0      0        0 eth0

[[email protected] ~]# ping -b 192.168.120.1

PING 192.168.120.1 (192.168.120.1) 56(84) bytes of data.

64 bytes from 192.168.120.1: icmp_seq=1 ttl=255 time=2.02 ms

64 bytes from 192.168.120.1: icmp_seq=2 ttl=255 time=1.83 ms

64 bytes from 192.168.120.1: icmp_seq=3 ttl=255 time=1.68 ms

64 bytes from 192.168.120.1: icmp_seq=4 ttl=255 time=1.98 ms

64 bytes from 192.168.120.1: icmp_seq=5 ttl=255 time=1.88 ms

--- 192.168.120.1 ping statistics ---

5 packets transmitted, 5 received, 0% packet loss, time 4000ms

rtt min/avg/max/mdev = 1.682/1.880/2.020/0.129 ms

說明:

例項4:ping指定次數

命令:

ping -c10 192.168.120.206

輸出:

[[email protected] ~]# ping -c 10 192.168.120.206

PING 192.168.120.206 (192.168.120.206) 56(84) bytes of data.

64 bytes from 192.168.120.206: icmp_seq=1 ttl=64 time=1.25 ms

64 bytes from 192.168.120.206: icmp_seq=2 ttl=64 time=0.260 ms

64 bytes from 192.168.120.206: icmp_seq=3 ttl=64 time=0.242 ms

64 bytes from 192.168.120.206: icmp_seq=4 ttl=64 time=0.271 ms

64 bytes from 192.168.120.206: icmp_seq=5 ttl=64 time=0.274 ms

64 bytes from 192.168.120.206: icmp_seq=6 ttl=64 time=0.295 ms

64 bytes from 192.168.120.206: icmp_seq=7 ttl=64 time=0.269 ms

64 bytes from 192.168.120.206: icmp_seq=8 ttl=64 time=0.270 ms

64 bytes from 192.168.120.206: icmp_seq=9 ttl=64 time=0.253 ms

64 bytes from 192.168.120.206: icmp_seq=10 ttl=64 time=0.289 ms

--- 192.168.120.206 ping statistics ---

10 packets transmitted, 10 received, 0% packet loss, time 9000ms

rtt min/avg/max/mdev = 0.242/0.367/1.251/0.295 ms

[[email protected] ~]

說明:

例項5:時間間隔和次數限制的ping

命令:

ping -c10 -i 0.5 192.168.120.206

輸出:

[[email protected] ~]# ping -c 10 -i 0.5 192.168.120.206

PING 192.168.120.206 (192.168.120.206) 56(84) bytes of data.

64 bytes from 192.168.120.206: icmp_seq=1 ttl=64 time=1.24 ms

64 bytes from 192.168.120.206: icmp_seq=2 ttl=64 time=0.235 ms

64 bytes from 192.168.120.206: icmp_seq=3 ttl=64 time=0.244 ms

64 bytes from 192.168.120.206: icmp_seq=4 ttl=64 time=0.300 ms

64 bytes from 192.168.120.206: icmp_seq=5 ttl=64 time=0.255 ms

64 bytes from 192.168.120.206: icmp_seq=6 ttl=64 time=0.264 ms

64 bytes from 192.168.120.206: icmp_seq=7 ttl=64 time=0.263 ms

64 bytes from 192.168.120.206: icmp_seq=8 ttl=64 time=0.331 ms

64 bytes from 192.168.120.206: icmp_seq=9 ttl=64 time=0.247 ms

64 bytes from 192.168.120.206: icmp_seq=10 ttl=64 time=0.244 ms

--- 192.168.120.206 ping statistics ---

10 packets transmitted, 10 received, 0% packet loss, time 4499ms

rtt min/avg/max/mdev = 0.235/0.362/1.241/0.294 ms

[[email protected] ~]# ping -c 10 -i 0.01 192.168.120.206

PING 192.168.120.206 (192.168.120.206) 56(84) bytes of data.

64 bytes from 192.168.120.206: icmp_seq=1 ttl=64 time=0.244 ms

64 bytes from 192.168.120.206: icmp_seq=2 ttl=64 time=0.195 ms

64 bytes from 192.168.120.206: icmp_seq=3 ttl=64 time=0.219 ms

64 bytes from 192.168.120.206: icmp_seq=4 ttl=64 time=0.204 ms

64 bytes from 192.168.120.206: icmp_seq=5 ttl=64 time=3.56 ms

64 bytes from 192.168.120.206: icmp_seq=6 ttl=64 time=1.93 ms

64 bytes from 192.168.120.206: icmp_seq=7 ttl=64 time=0.193 ms

64 bytes from 192.168.120.206: icmp_seq=8 ttl=64 time=0.193 ms

64 bytes from 192.168.120.206: icmp_seq=9 ttl=64 time=0.202 ms

64 bytes from 192.168.120.206: icmp_seq=10 ttl=64 time=0.211 ms

--- 192.168.120.206 ping statistics ---

10 packets transmitted, 10 received, 0% packet loss, time 90ms

rtt min/avg/max/mdev = 0.193/0.716/3.564/1.080 ms

[[email protected] ~]

說明:

例項6:通過域名ping公網上的站點

命令:

ping -c5 www.58.com

輸出:

peida-VirtualBox ~ # ping -c 5 www.58.com

PING www.58.com (211.151.111.30) 56(84) bytes of data.

64 bytes from 211.151.111.30: icmp_req=1 ttl=49 time=14.7 ms

64 bytes from 211.151.111.30: icmp_req=2 ttl=49 time=16.4 ms

64 bytes from 211.151.111.30: icmp_req=3 ttl=49 time=15.2 ms

64 bytes from 211.151.111.30: icmp_req=4 ttl=49 time=14.6 ms

64 bytes from 211.151.111.30: icmp_req=5 ttl=49 time=19.9 ms

--- www.58.com ping statistics ---

5 packets transmitted, 5 received, 0% packet loss, time 20101ms

rtt min/avg/max/mdev = 14.618/16.192/19.917/1.965 ms

peida-VirtualBox ~ 

說明:

例項7:多引數使用

命令:

ping -i3 -s 1024 -t 255 192.168.120.206

輸出:

[[email protected] ~]# ping -i 3 -s 1024 -t 255 192.168.120.206

PING 192.168.120.206 (192.168.120.206) 1024(1052) bytes of data.

1032 bytes from 192.168.120.206: icmp_seq=1 ttl=64 time=1.99 ms

1032 bytes from 192.168.120.206: icmp_seq=2 ttl=64 time=0.694 ms

1032 bytes from 192.168.120.206: icmp_seq=3 ttl=64 time=0.300 ms

1032 bytes from 192.168.120.206: icmp_seq=4 ttl=64 time=0.481 ms

1032 bytes from 192.168.120.206: icmp_seq=5 ttl=64 time=0.415 ms

1032 bytes from 192.168.120.206: icmp_seq=6 ttl=64 time=0.600 ms

1032 bytes from 192.168.120.206: icmp_seq=7 ttl=64 time=0.411 ms

1032 bytes from 192.168.120.206: icmp_seq=8 ttl=64 time=0.281 ms

1032 bytes from 192.168.120.206: icmp_seq=9 ttl=64 time=0.318 ms

1032 bytes from 192.168.120.206: icmp_seq=10 ttl=64 time=0.362 ms

1032 bytes from 192.168.120.206: icmp_seq=11 ttl=64 time=0.408 ms

1032 bytes from 192.168.120.206: icmp_seq=12 ttl=64 time=0.445 ms

1032 bytes from 192.168.120.206: icmp_seq=13 ttl=64 time=0.397 ms

1032 bytes from 192.168.120.206: icmp_seq=14 ttl=64 time=0.406 ms

1032 bytes from 192.168.120.206: icmp_seq=15 ttl=64 time=0.458 ms

--- 192.168.120.206 ping statistics ---

15 packets transmitted, 15 received, 0% packet loss, time 41999ms

rtt min/avg/max/mdev = 0.281/0.531/1.993/0.404 ms

[[email protected] ~]

說明:

-i 3傳送週期為 3秒 -s 設定傳送包的大小為1024 -t 設定TTL值為 255

相關推薦

Linux ping --測試目標主機通性

Linux系統的ping命令是常用的網路命令,它通常用來測試與目標主機的連通性,我們經常會說“ping一下某機器,看是不是開著”、不能開啟網頁時會說“你先ping閘道器地址192.168.1.1試試”。它通過傳送ICMP ECHO_REQUEST資料包到網路主機 (send ICMP ECHO_REQUES

Linux學習並不難》Linux網絡命令(3):ping命令測試目標計算機之間的通性

Linux ping 測試 27.3 《Linux學習並不難》Linux網絡命令(3):ping命令測試與目標計算機之間的連通性使用ping命令可以用來測試與目標計算機之間的連通性。執行ping命令會使用ICMP傳輸協議發出要求回應的信息,如果遠程主機的網絡功能沒有問題,就會回應該信息,因而得知

shell腳本--批量測試主機通性ping IP

code 17. conn -c shell腳本 nec ket dir tar 2019-03-28 12:11:51 1、新建文本文件,保存要連接的IP地址 vi target_ip.txt 137.32.117.53 137.32.117.60 137.

shell腳本之測試某網段內主機通性

shell linux 腳本 1. 測試192.168.4.0/24整個網段的連通性(while版本)#!/bin/bash #Author:丁丁歷險(Jacob) #定義變量i控制循環次數,i從1開始循環,每循環一次,i自加1,直到i等於254循環退出 #在每次循環中對一個IP進行ping測試,

使用python和批處理bat腳本ping檢測主機通性

python bat 今天因為工作需求,要在報盤機器上(windows系統)檢測與上手連接的網絡可用性,使用zabbix自身的功能並不能解決這個問題。所以一開始考慮使用python腳本調系統的ping命令來檢測然後再使用zabbix來監控就可完成任務。 網上查了下,發現使用subproc

Linux虛擬機器Windows主機ssh通訊

Windows主機端的準備 這個軟體是用來替代SSH Secure File Transfer Client的,後者在win10下不好用。 Linux端準備 1.ifconfig看一下IP地址。 使用ssh進行檔案傳輸 在Windows端開啟Tectia

VMWare下Linux虛擬機器Window主機的網路設定通訊

首先安裝好vmware以及linux系統,這就不多說了,安裝好後,開始進行相關網路的設定工作。 1。  開啟虛擬機器,edit-->virtual network editor 進行相關設定工作。如下圖: 2。 進行第二步的操作。設定好NAT網路配置項。 3

使用telnet測試指定埠的通性

大家好,我是良許。 大家知道,`telnet` 是一個閹割版的 `ssh` ,它資料不加密,資料容易被盜竊,也容易受中間人攻擊,所以預設情況下 telnet 埠是必須要被關閉的。 telnet為使用者提供了在本地計算機上完成遠端主機工作的能力,因此可以通過telnet來測試埠的連通性。 #### 確認遠

ping---測試主機之間網路的通性

ping命令用來測試主機之間網路的連通性。執行ping指令會使用ICMP傳輸協議,發出要求迴應的資訊,若遠端主機的網路功能沒有問題,就會迴應該資訊,因而得知該主機運作正常。   選項 -d:使用Socket的SO_DEBUG功能; -c<完成次數>:設定完成要求迴應的次數; -f:

解決Linux虛擬機真實機的通性

解決Linux虛擬機與真實機的連通性正巧碰到,記錄一下 1、查看IP地址安裝完成虛擬機後,查看IP地址 2、修改IP地址配置開啟onboot服務 3、重啟網卡、查看IP地址service network restartifconfig4、NAT模式實現上網與訪問需要註意的是:現在上網模式是NAT模式,可以看到

主機虛擬機接,主機能ping通虛擬機虛擬機ping不通主機問題

only 適配 不知道 img 路由器 檢查 並不會 軟路由 外部網絡 事件描述: 從物理主機ping虛擬機時,能正常返回信息。反之,從虛機ping物理主機時返回信息:Destination Host unreachable。 解決方法: 首先,是因為默認創建的虛擬機並

ping測試某網段網絡通性

ash done line then -c seq off 8.14 don ping測試某網段網絡連通性 #!/bin/bash for i in `seq 1 14`;do ping 100.88.14.$i -c 2 >/dev/null if [

Linux和Windows下的NC(Netcat)命令測試通性

一、Linux OS 環境下(以Centos為例),使用nc命令分別測試TCP和UDP埠連通性: 安裝方法: 在客戶端和伺服器端分別安裝nc工具,安裝命令如下: yum install nc 1 1. Linux OS下使用nc命令,實現TCP方式監聽伺服器端5000

Linux使用者管理、許可權管理、歸檔、壓縮以及建立連線和測試網路網路通性

uid:使用者標識號 gid:組標識號 預設情況下,使用者uid和gid一樣 使用者的分類: 超級使用者(root):許可權特別大,uid=0,gid=0,生產環境建議不要使用 普通使用者:uid>=500,Ubuntu一般>=1000,一般許可權系統管理,

linux ping IP地址telnet 測試IP埠

ping命令是不能夠測試埠的,ping只是測試網路聯接狀況以及資訊包傳送和接收狀況。 格式:ping IP地址或主機名 [-t] [-a] [-n count] [-l size] 引數含義:-t不停

伺服器使用nc測試UDP通性linux和 windows)

平時大家都是測試TCP的,windos上telnet IP+埠就可以測試了但是UDP就有人些有點蒙圈了不要想的那麼難,很簡單的一、隨便找臺centos有網路的機器 輸入下面命令安裝nc工具:yum install -y nc 安裝完畢後輸入下面命令就可以了(IP是自己訪問的IP):nc -vuz 192.16

服務器使用nc測試UDP通性linux和 windows)

解壓 windows centos 端口 alt 對話 搜索 格式 mage 平時大家都是測試TCP的,windos上telnet IP+端口就可以測試了但是UDP就有人些有點蒙圈了不要想的那麽難,很簡單的一、隨便找臺centos有網絡的機器 輸入下面命令安裝nc工具:yu

Linux虛擬機器外面系統ping不通,或者不上網

更多詳細文件:http://download.csdn.net/download/zml_2015/8843061 很多人在做linux課程設計的時候,用的linux虛擬機器與外面的系統ping不通,或者虛擬機器裡面上不了網,這個主要是與系統的預設設定有關,下面讓我幫你們解決這個問題吧

Linux環境測試機器埠通性

生產中,有很大一部分的問題都是由於不同機器間網路不同導致的,那麼如何判斷兩臺機器之間的連通性?本文介紹幾種常見的方式: telnet方法 wget方法 ssh方法 curl方法 1. telnet方法 格式:telnet ip port 說明:i

怎麼在Linux伺服器上測試TCP/UDP埠的通性

翻譯自: How to Test Port[TCP/UDP] Connectivity from a Linux Server (文件 ID 2212626.1) 適用於: Linux OS - Version Oracle Linux 5.0 to Oracle Lin