How to check the connection to the site? Print

  • 0

Ping or ping is a term that refers to the time it takes for a packet sent from your computer to travel to the recipient's computer and return.

At the command prompt, type for example, ping your_site and press ENTER. For example, ping google.com

The result should be similar to the following:

Pinging google.com [37.29.1.20] with 32 bytes of data:

Reply from 37.29.1.20: bytes=32 time=73ms TTL=52

Reply from 37.29.1.20: bytes=32 time=70ms TTL=52

Reply from 37.29.1.20: bytes=32 time=75ms TTL=52

Reply from 37.29.1.20: bytes=32 time=73ms TTL=52

Ping statistics for 37.29.1.20:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

Approximate round trip times in milli-seconds:

Minimum = 70ms, Maximum = 75ms, Average = 72ms

 

Traceroute (tracert) is a utility program designed to determine data routes on networks.

At the command prompt, type for example, tracert your_site and press ENTER. For example, tracert google.com
The result should be similar to the following:
tracert google.com
Tracing route to google.com [37.29.1.20]
over a maximum of 30 hops:
1  <1 ms  <1 ms  <1 ms  *
2 1 ms 1 ms 1 ms *
3     2 ms     2 ms     2 ms  80.80.209.158.ip.tps.uz [80.80.209.158]
4     2 ms     2 ms     2 ms  80.80.209.233.ip.tps.uz [80.80.209.233]
5 7 ms 5 ms 6 ms 80.80.209.2
6     2 ms     3 ms     3 ms  195.69.191.61
7     *          2 ms      2 ms  195.69.191.9
8 635 ms 549 ms 388 ms 195.69.191.1
9 209 ms 226 ms 356 ms 195.69.190.137
10 468 ms 401 ms 588 ms 37.29.3.181
11 389 ms 217 ms 362 ms 10.222.0.25
12 246 ms 273 ms 239 ms 37.29.1.20
Trace complete.
Note:
1. How to get to the command line?
In Windows OS: Click the Start button, select Run, enter cmd and click OK.

In Linux OS: Click the Applications button, select Accessories, select Terminal

2. Instead of the google.com domain, use the name of your website (domain/subdomain)


Was this answer helpful?

« Back