Ping is a network utility used to test network connections by sending Internet Control Message Protocol (ICMP) echo requests to a host and waiting for replies.
Discover and execute PING commands to test network connectivity and latency.
The PING command is a crucial network utility used to test the reachability of a host on an Internet Protocol (IP) network and to measure the round-trip time for messages sent from the originating host to a destination computer.
Sends ICMP echo request packets to google.com and waits for replies.
ping google.comSends 5 ICMP packets to github.com and stops after receiving 5 replies or timeouts.
ping -n 5 github.comPings example.com, waiting 2 seconds between each packet sent.
ping -i 2 example.comSends ping packets of 3 bytes to cloudflare.com.
ping -s 3 cloudflare.comPings github.com with a 10-second timeout for each packet.
ping -n 10 github.comEnter your own PING command to execute.