Network Latency Calculator: Propagation + Transmission Delay

Network Latency Calculator

Break one-way network latency into its four real components: propagation delay from distance and medium, transmission delay from packet size and link rate, and processing plus queuing delay across each router hop. Enter your path and read the total delay in milliseconds with a full percentage breakdown.

📡Real Network Path Presets

🔢Path and Link Inputs

Physical cable length along the route, not straight-line.

Applies to the distance field above.

Sets the signal propagation speed used for delay.

Frame size on the wire; 1500 is a typical MTU.

Serialization speed of the bottleneck link.

Unit for the link rate value above.

Store-and-forward devices along the path.

Route lookup and forwarding time at each hop.

Wait in buffers; rises sharply under congestion.

Controls rounding on every result card.

Total One-Way Latency 0 ms sum of all four components
Propagation Delay 0 ms distance / signal speed
Transmission Delay 0 ms packet bits / link rate
Processing + Queuing 0 ms per-hop delay x hops

⚡Formula Snapshot

TotalP + T + Proc + Q
Pdist / speed
Tbits / rate
5 µsper km fiber

📡Propagation Speed by Medium

MediumSpeed (m/s)Fraction of cDelay per km
Vacuum / space3.0 × 10^81.00 c3.34 µs
Wireless / air3.0 × 10^8~1.00 c3.34 µs
Single-mode fiber2.0 × 10^80.67 c5.0 µs
Coax / copper2.0 × 10^80.66 c5.0 µs
Cat-cable copper1.9 × 10^80.64 c5.3 µs
Satellite RF path3.0 × 10^81.00 c3.34 µs

🌎City to City Fiber Latency Floor

RouteFiber DistanceMin One-WayNotes
New York to Chicago1200 km6.0 msBackbone hop
New York to London5600 km28 msTransatlantic
London to Frankfurt640 km3.2 msEU core
LA to Tokyo8800 km44 msTranspacific
Sydney to Singapore6300 km32 msSea route
Mumbai to Marseille7100 km36 msSEA-ME-WE
Same metro area50 km0.25 msMetro ring
Within one building0.1 km0.0005 msLAN link

🎮Latency Budget by Application

ApplicationGood One-WayUsable LimitWhat Breaks Past It
Competitive gamingUnder 15 ms30 msHit registration lag
VoIP / video callUnder 75 ms150 msTalk-over, echo
Web browsingUnder 50 ms100 msSluggish page loads
Live video streamUnder 100 ms250 msBuffering, drift
Financial tradingUnder 1 ms5 msMissed arbitrage
Cloud file syncUnder 100 ms300 msSlow throughput

📊Medium Comparison Grid

MediumSpeed Fraction cDelay per kmDelay 1000 kmTypical UseNotes
Single-mode fiber0.67 c5.0 µs5.0 msBackbone, metroLow loss long haul
Multimode fiber0.67 c5.0 µs5.0 msData centerShort reach only
Coax copper0.66 c5.0 µs5.0 msCable last mileShared segment
Twisted pair0.64 c5.3 µs5.3 msLAN, DSLUnder 100 m runs
Terrestrial wireless1.00 c3.34 µs3.34 msMicrowave, 5GLine of sight
LEO satellite1.00 c3.34 µs3.34 ms~550 km orbitShort RF path
GEO satellite1.00 c3.34 µs3.34 ms~35786 km orbit~120 ms one-way

⚙Formula Breakdown

Total = P + T + Proc + QOne-way latency is the sum of propagation, transmission, processing, and queuing delay along the path.
Propagation P = d / vDistance divided by signal speed. Over 1200 km of fiber at 2.0e8 m/s, P = 1,200,000 / 2e8 = 6 ms.
Transmission T = L / RPacket bits over link rate. A 1500-byte frame is 12,000 bits; on 1 Gbps, T = 12000 / 1e9 = 0.012 ms.
Bits L = bytes × 8Convert packet size to bits before dividing by the link rate in bits per second.
Processing = proc × hopsPer-hop route lookup summed over every router. 0.05 ms across 8 hops is 0.4 ms.
Queuing = queue × hopsBuffer wait per hop times the hop count. 0.1 ms over 8 hops is 0.8 ms, and it grows with load.
Per km fiber ≈ 5 µsA handy rule: light in fiber covers a kilometer in about 5 microseconds, so 200 km adds roughly 1 ms.

💡Latency Tuning Tips

Distance dominates long links: On a 5600 km transatlantic path, propagation alone is about 28 ms one-way, while a 1500-byte packet on a 10 Gbps link serializes in only 0.0012 ms. Past a few hundred kilometers, no amount of faster hardware beats the speed of light, so the only real fix is a shorter physical route or an edge cache closer to the user.
Slow links inflate transmission: The same 1500-byte packet takes 0.012 ms on 1 Gbps but 12 ms on a 1 Mbps link, a thousandfold jump. On constrained uplinks, transmission delay can rival propagation, so shrinking packets or raising the bottleneck rate cuts latency far more than adding capacity elsewhere on the path.

What about email? Send it and watch it vanish. Reply comes back nearly immediatey. Magic! Video chat? Your face locks up when you talk to people on the other side of planet. What’s the difference between them? Speed? Bandwidth? No, that’s latency: the time it takes for one packet of data to get from point A to point B.

The place where that time gets spent is what turns vague frustration into hard-won engineering insight. To make it clear where your performance are being hurt, the calculator splits out one-way delay into its four physical part. Queuing + Processing Delay + Transmission Delay + Propagation Delay.

Understanding What Causes Internet Lag

Propagation delay just means how long it takes for signal to spend in flight from source to destination. There’s no getting around this math: Distance/Speed. Optical fiber signals move about two hundred million meters per second. That’s because they’re slowed in glass; they go about two-thirds the speed of light in a vacuum. Fiber adds an average of about five microseconds per kilometer. So two hundred kilometers of cable will take a millisecond one way. You can’t beat that physics.

The delay caused by pushing every bit of a packet onto the wire is known as transmission delay. Also sometimes referred to as serialization delay. It’s fully dependent on link rate and packet size. For example, there are 12,000 bits in an ordinary 1500-byte Ethernet frame. That teeny-weeny fraction would only take 0.012 milliseconds to send across a moddern 1 Gbps connection. But at a poky 1 Mbps uplink, that very same frame would take 12 milliseconds. Since the link is too slow to send the data out, it gets stuffed with raw data, which clogs the works and increases the delay by a thousand times. That’s what makes rural DSL connections feel so sluggish, even over relatively short distances. The traffic jam is the interface itself.

Next are the hidden costs of having all of your packets pass through intermediary machines. Each router inspects header information and selects an outbound port. Each hop typically take a fraction of a millisecond: that’s processing delay. The wild card is queuing delay. If there’s no traffic on a link, packets moves quickly through buffers. But as traffic loads up those queues, they wait longer and longer. Often, the queuing delay itself can surpass the propagation and transmission delays combined.

We model them independently. This makes the responsiveness easy to see, as you can see how much network load contributes directly to your overall delay budget. If you read that as percentages, it tells you precisely where you could do something about it. For example, on a fiber link across a continent, more than ninety per cent is propagation: faster routers won’t help much if at all. You’d need to make the physical route shorter or put some kind of edge cache nearer the user to move the needle. But on a slow last-mile link, maybe it’s all transmission. Now you know where to stop pointing fingers… Because you now know what is congestion-bound and what is physics-bound.

These are very abstract numbers, but these reference tables helps connect them to some sense of real world experience. There’s a 6 millisecond hop from New York to Chicago and 44 milliseconds across to Tokyo. Then there are application budget ranges that differ widely. Web browsing can tolerate up to 100 milliseconds while competitive gaming struggles beyond 30 milliseconds. Even geostationary satellite links will tack on about 120 milliseconds one way just for being thirty-five thousand kilometers out in space. That distance is unavoidable. It travels at the speed of light, but that’s just how far it has to go.

The tool has ten presets for various scenarios… From a low-Earth-orbit Starlink hop to a transatlantic cable to a local LAN run. A quick flick across them illustrates how the dominant component vary with changes in hop count, link rate, and distance. While any one static result can be illuminating, how it reveals the tradeoffs involved in network design makes it more so.

Ping reports twice the one-way delay plus server response time, rather than just the one-way latency. One could argue that this comparison is measuring round-trip instead of just one-way delay. That’s true, but it’s by design. Why? Because Ping reports twice the one-way delay and adds the server response time. It confuses endpoint processing with path physics.

Ping reports half the one-way delay and adds the server response time. It confuses Endpoint processing with Path Physics. Separating these allows you to think clearly about the path first without adding any additional Protocol Overhead. Size your Trading Link, troubleshoot why your Video Call isn’t responding… knowing exactly where the Milliseconds are hiding turns mystery into something we can manage.

There is always delay in the wire. It should of been waiting for you.

Network Latency Calculator: Propagation + Transmission Delay