New: Post-Quantum Cryptography tools — is your domain quantum-safe? Check now

network

Ping Test

Test ICMP connectivity and latency

What You Need to Know

What This Tool Does

Ping Test sends ICMP echo requests to a host and measures response time, packet loss, and connectivity to diagnose network issues and measure latency.

Why It Matters

  • Availability: Confirms host is online and reachable
  • Latency: Measures network delay affecting user experience
  • Packet Loss: Identifies network quality issues
  • Troubleshooting: First step in diagnosing connectivity problems

How to Read the Results

  • Time: Response time in milliseconds (lower is better)
  • <50ms: Excellent, <100ms: Good, <200ms: Acceptable, >200ms: Poor
  • Packet Loss: Percentage of packets that didn't return (0% is ideal)
  • Timeout: No response received - host may be offline or blocking ICMP

Input Parameters

Enter a domain name or IP address

Tool Status: Ready

Developer

API & CLI Usage

API Endpoint

POST /api/tools/ping

Platform-Specific Examples

Bash (curl)
curl -X POST https://epcybertools.com/api/tools/ping \
  -H "Content-Type: application/json" \
  -d '{"host":"google.com"}'
wget
wget --method=POST \
  --header="Content-Type: application/json" \
  --body-data='{"host":"google.com"}' \
  -O - https://epcybertools.com/api/tools/ping
HTTPie (apt install httpie)
http POST https://epcybertools.com/api/tools/ping \
  host="google.com"
View full API documentation →