Back to Practice

Ping

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.

Client
Server
Click "Start Ping Scan" to begin

PING Command Explorer

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.

Basic ping to Google's domain

Sends ICMP echo request packets to google.com and waits for replies.

ping google.com

Ping with a count of 5 packets

Sends 5 ICMP packets to github.com and stops after receiving 5 replies or timeouts.

ping -n 5 github.com

Ping with 2-second intervals

Pings example.com, waiting 2 seconds between each packet sent.

ping -i 2 example.com

Ping with custom packet size

Sends ping packets of 3 bytes to cloudflare.com.

ping -s 3 cloudflare.com

Ping with a 10-second timeout

Pings github.com with a 10-second timeout for each packet.

ping -n 10 github.com

Manual PING Command

Enter your own PING command to execute.