IT Tool

Ping Test (TCP) - Is the Host Up and How Far Away

Check whether a server answers and how long the round trip takes, measured from our server with a TCP connection. See per-attempt latency, min/avg/max, and packet loss.

Instant AI-Assisted No Login
PROCESSINGSERVER / AI
LIMITNONE
PRIVACYSEE NOTES
Terminal — TCP ping
Waiting for input. Enter a hostname or IP to begin.

This measures a TCP connection to a port, not a raw ICMP ping. A refused connection still counts as a reply because the host answered. 100% loss usually means the port is filtered by a firewall or the host is down, not that the site is offline. The round trip is measured from our server to the target, so it is not your own connection's latency.

Why this ping uses TCP instead of ICMP

The ping command you run in a terminal sends an ICMP Echo Request and waits for an Echo Reply. ICMP is a low-level control protocol, and sending it requires a raw socket, which in turn requires elevated privileges. Serverless and container platforms — including the one this site is deployed on — do not grant that privilege, so a tool that shelled out to ping would work on a developer's laptop and then fail with “operation not permitted” in production. Rather than ship a tool that is broken where it actually runs, this one measures a TCP connection instead.

The idea is simple. To open any TCP connection your machine sends a SYN packet, the host replies with a SYN-ACK, and your machine finishes with an ACK — the three-way handshake. Timing how long the SYN to SYN-ACK takes gives you a round-trip time in the same way ICMP does, and it exercises the same network path. The one practical difference is which packets a firewall lets through: many hosts drop ICMP but almost none drop TCP on port 443, because that is how the web works. So a TCP ping is often a more reliable reachability check for a public web server than a real ping would be.

This tool makes four connection attempts in sequence and records each one, then reports the minimum, average, and maximum round trip along with a packet-loss percentage. Four is the same count the default Windows ping uses, enough to see variance without hammering the target.

Reading the three outcomes

Each attempt ends in one of three ways, and the difference matters. Connected means the handshake completed — the host is up and listening on that port. Refused means the host sent back a reset: it is up and answered, it just is not serving that port, so this still counts as a successful round trip. Timed out means nothing came back within three seconds, which is the only real packet loss. A refused result is good news about reachability; a timeout is the ambiguous one, because a dropped packet and a dead host look exactly the same from outside.

Latency, jitter, and where the number comes from

Round-trip time is dominated by physical distance — light in fibre travels roughly 200 km per millisecond, so a server on another continent cannot answer in under about 100 ms no matter how fast it is. The spread between your minimum and maximum is jitter: a stable path returns four near-identical times, while a congested one scatters them. One thing to keep straight is the vantage point. These times are measured from our server to the target, not from your computer, so they tell you how far the target is from a neutral point on the internet — not what your own connection feels like.

What this tool cannot tell you, and where it is safe to point it

A ping answers one narrow question: did a packet make the round trip, and how long did it take. It cannot tell you whether a website returns the right content, whether TLS is valid, or whether an application behind the port is healthy — a server can complete a TCP handshake on port 443 while the site itself throws a 500 on every request. For those, reach for a tool that speaks the actual protocol: an SSL checker for certificates, a DNS lookup for name resolution, a port scanner to see which services are exposed. Ping is the first step, not the diagnosis.

The test also refuses to point anywhere it should not. Private ranges, loopback, and link-local addresses are rejected outright, and because the most dangerous case is a public hostname that resolves to an internal address — the classic way a diagnostic tool gets turned into a server-side request forgery pivot against a cloud metadata endpoint — the hostname is resolved first and the request is blocked if the resolved address falls in a blocked range. Use the tool on hosts you are allowed to probe; it is a reachability check, not a scanner for networks you do not control.

How to Use

1

Enter a hostname (example.com) or an IP address (8.8.8.8). If you paste a full URL, the scheme and path are stripped for you.

2

Pick the port to test — 443 (HTTPS) is the safest default because almost every public host answers on it.

3

Press Start Ping. The tool opens four TCP connections in sequence and times each one.

4

Read the per-attempt latency, the min/avg/max round trip, and the packet-loss percentage.

Features

Works on modern serverless hosting, where raw ICMP ping cannot run
Times each of four TCP handshakes and reports min, average, and max
Counts a refused connection as a reply, because the host still answered
Shows the resolved IP address so you can see what the name points to
Blocks private, loopback, and cloud-metadata addresses, including via hostname resolution
Rate limited to keep the shared diagnostic server fair for everyone

Common Questions

About Ping Test

Check whether a server answers and how far away it is. Because raw ICMP ping cannot run on serverless hosting, this opens a TCP connection to a port and times the handshake — a refused connection still counts as a reply, and only a timeout is real packet loss. See per-attempt latency, min/avg/max round trip, packet-loss percentage, and the resolved IP. Private and cloud-metadata addresses are blocked, including via hostname resolution.

Also known as: ping, check latency, ping a host, tcp ping, ping online, is this server up, check if website is down, server reachability test, round trip time, rtt test, packet loss test, ping ip address, ping domain, host uptime check.

Processing Note

Ping Test may rely on server-side, model-based, or external processing for part of its workflow, so avoid entering secrets, credentials, or private personal data.

Tool Limits

IT tools provide quick diagnostics and transformations. They cannot see every private network, deployment setting, proxy, firewall, or production edge case.

Explore More