Ping¶
Use Case¶
Test the reachability of a host
Test if a website is connected to foreign network from your country(You first ping it on your host)
Usage Guide¶
Input the domain name or IP address to query
Domain name format
User registered domain name, e.g. google.com, mozilla.org
Multi-level domain name, e.g. www.google.com, developer.mozilla.org
URL, e.g. https://mozilla.org, https://en.wikipedia.org/wiki/main_page
Email address, e.g. User@gmail.com, user@protonmail.com
IP address format
IP version 4 address (IPv4), e.g. 8.8.8.8
IP version 6 address (IPv6), e.g. 2001:dc7:1000:0:0:0:0:1
Select timeout time
3 seconds by default. The range: 1s - 30s.
If displaying timeout, please increase the time of timeout.
Select IP address version
IPv4: Run ping4 for IPv4 address.
IPv6: Run ping6 for IPv6 address.
Click button of Test
Then run the corresponding command of ping on server.
Examine Results
If the result is returned by ping, a tip is displayed in green, which says the host is connected to the Interneis.
If no result, a tip is displayed in red, which says the host is not connected to the Internet or other situation has happened.
Raw data is displayed at the bottom of the page.
Background Knowledge¶
Ping is a computer network administration software utility used to test the reachability of a host on an Internet Protocol (IP) network.
Ping measures the round-trip time for messages sent from the originating host to a destination computer that are echoed back to the source.
Ping operates by sending Internet Control Message Protocol (ICMP) echo request packets to the target host and waiting for an ICMP echo reply. The program reports errors, packet loss, and a statistical summary of the results, typically including the minimum, maximum, the mean round-trip times, and standard deviation of the mean.
Refer to ping (networking utility)