Use the IP Ping Tool to Diagnose Network Issues
The IP Ping tool lets you check whether Cloud Voice can reach a given hostname or IP (Internet Protocol) address from the network it sits on. This page walks through running a ping and making sense of what comes back. IP Ping only sends small test packets: it does not change any configuration or interrupt calls in progress, so it is safe to run on a live system.
When to use IP Ping
Section titled “When to use IP Ping”IP Ping uses the Internet Control Message Protocol (ICMP) to send small packets to a destination and measure whether they return, along with how long the round trip takes. It is a quick way to confirm that a target is reachable and to gauge the health of the path to it.
Reach for this tool when you run into either of the following:
- Connectivity problems. Verify that the system can actually reach a specific IP address or domain name.
- Degraded VoIP (Voice over IP) call quality. If calls suffer from echo, buzzing, or delay, a ping to the far end can reveal problems on the route: latency (how long each packet takes), jitter (how much that delay varies from packet to packet), or packet loss (replies that never arrive).
Run a ping
Section titled “Run a ping”- Sign in to the web portal and open Maintenance > Troubleshooting > IP Ping.
- In the Target Host field, type the domain name or IP address you want to test.
- Select Start to begin sending packets.
- Select Stop once you have gathered enough output.
Interpret the results
Section titled “Interpret the results”A successful ping
Section titled “A successful ping”When the target responds, the output resembles the following:
start...PING 192.168.6.11 (192.168.6.11): 56 data bytes64 bytes from 192.168.6.11: seq=0 ttl=64 time=8.853 ms64 bytes from 192.168.6.11: seq=1 ttl=64 time=0.778 ms64 bytes from 192.168.6.11: seq=2 ttl=64 time=1.394 ms
--- 192.168.6.11 ping statistics ---3 packets transmitted, 3 packets received, 0% packet lossround-trip min/avg/max = 0.778/3.675/8.853 msHere is what this tells you:
- Three packets were sent, and all three drew a reply, so no packets were lost.
- Each packet carried 56 data bytes, reported here as a 64-byte total once the ICMP header is included.
- The TTL (Time To Live) is 64, indicating the packets consistently follow the same path.
- The
timevalue is how long each reply took to arrive after the request was sent (the delay between the outgoing Echo Request and the returning Echo Reply). Rising or erratic times are a useful signal that the network may be congested. - The final
round-trip min/avg/maxline summarizes the fastest, average, and slowest reply times across the whole run.
A failed ping
Section titled “A failed ping”When nothing comes back, the output looks like this:
start...PING 192.168.7.2 (192.168.7.2): 56 data bytes
--- 192.168.7.2 ping statistics ---60 packets transmitted, 0 packets received, 100% packet lossA result like this, with 100% packet loss, points to a problem with either the network path to the target or the target device itself.