N1 network command -ping

The ping
parameter -c specifies the number of times

root@ubuntu17:~# ping -c 2 www.baidu.com
PING www.a.shifen.com (111.13.100.92) 56(84) bytes of data.
64 bytes from 111.13.100.92 (111.13.100.92): icmp_seq=1 ttl=51 time=19.0 ms
64 bytes from 111.13.100.92 (111.13.100.92): icmp_seq=2 ttl=51 time=17.9 ms

--- www.a.shifen.com ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1000ms
rtt min/avg/max/mdev = 17.998/18.526/19.054/0.528 ms

Parameter -q only see the result

root@ubuntu17:~# ping -q www.baidu.com -c 2
PING www.a.shifen.com (111.13.100.91) 56(84) bytes of data.

--- www.a.shifen.com ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1000ms
rtt min/avg/max/mdev = 11.622/11.786/11.951/0.197 ms

The parameter -s specifies the size of the ping packet

root@ubuntu17:~# ping -s 65500 -c 2 www.baidu.com
PING www.a.shifen.com (111.13.100.92) 65500(65528) bytes of data.

--- www.a.shifen.com ping statistics ---
2 packets transmitted, 0 received, 100% packet loss, time 1022ms

The parameter -t specifies the time to live

root@ubuntu17:~# ping -t 10 www.yahoo.com -c 2
PING atsv2-fp.wg1.b.yahoo.com (124.108.103.104) 56(84) bytes of data.
From r4105-s2.tp.hinet.net (220.128.10.198) icmp_seq=1 Time to live exceeded
From r4105-s2.tp.hinet.net (220.128.10.198) icmp_seq=2 Time to live exceeded

--- atsv2-fp.wg1.b.yahoo.com ping statistics ---
2 packets transmitted, 0 received, +2 errors, 100% packet loss, time 1001ms

The parameter -i specifies the interval time of ping

root@ubuntu17:~# ping -i 0.1 -c 10 www.baidu.com
PING www.a.shifen.com (111.13.100.91) 56(84) bytes of data.
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=1 ttl=51 time=11.8 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=2 ttl=51 time=11.8 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=3 ttl=51 time=11.7 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=4 ttl=51 time=11.7 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=5 ttl=51 time=11.7 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=6 ttl=51 time=11.6 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=7 ttl=51 time=11.7 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=8 ttl=51 time=11.7 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=9 ttl=51 time=11.7 ms
64 bytes from 111.13.100.91 (111.13.100.91): icmp_seq=10 ttl=51 time=11.7 ms

--- www.a.shifen.com ping statistics ---
10 packets transmitted, 10 received, 0% packet loss, time 1156ms
rtt min/avg/max/mdev = 11.671/11.752/11.870/0.147 ms

parameter -f flood flood

root@ubuntu17:~# ping -f -c 100 www.baidu.com
PING www.a.shifen.com (111.13.100.92) 56(84) bytes of data.

--- www.a.shifen.com ping statistics ---
100 packets transmitted, 100 received, 0% packet loss, time 1584ms
rtt min/avg/max/mdev = 17.319/17.899/19.847/0.313 ms, pipe 2, ipg/ewma 16.000/17.831 ms

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324769683&siteId=291194637