Technology · 8 min read

How Does Your Data Cross an Ocean in 60 Milliseconds?

how does the internet work?

Right now, over 600 submarine cables sit on the ocean floor, carrying 95% of intercontinental data as pulses of light through glass fibers thinner than a human hair. Every time you load a webpage, your request races through this global web of cables, routers, and protocols, and the answer comes back in milliseconds.

The core idea

Packets

Your data is split into tiny labeled chunks that travel independently and reassemble at the destination.

Routing

Routers read each packet's destination IP and forward it hop by hop toward the right network.

DNS

The internet's phone book: translates domain names like google.com into numeric IP addresses.

Key insight The internet's genius is packet switching. Unlike old telephone networks that reserved an entire wire for each call, the internet breaks your data into tiny labeled packets (up to 1,460 bytes each) that travel independently through whatever route is fastest. Different packets from the same message can take completely different paths across the globe and still arrive in the correct order. This means millions of conversations share the same wires simultaneously without anyone needing a dedicated connection.

When you click a link, your request leaves your device, races through copper, radio waves, and glass fibers at two-thirds the speed of light, bounces through a dozen routers on three continents, and the answer arrives back on your screen in less time than it takes to blink. The entire round trip: about 60 milliseconds.

The internet is not wireless. It is not "the cloud." It is 1.4 million kilometers of physical cable, most of it sitting on the ocean floor, carrying your data as pulses of light through glass fibers thinner than a human hair.

Most people picture the internet as something that floats in the air, maybe bouncing between satellites or living inside a data center somewhere. The reality is far more physical. About 95% of intercontinental internet traffic travels through roughly 600 submarine fiber optic cables laid across ocean floors. These cables are about the diameter of a garden hose, armored against shark bites and anchors, and they connect continents at speeds nothing else can match. When your video call reaches someone across the Atlantic, the data is not beaming through space. It is racing through a glass thread on the seabed.

The internet's core mechanism is packet switching. When you load a webpage, your computer does not send the request as one continuous stream. It breaks the data into small labeled chunks called packets, each carrying up to 1,460 bytes of payload plus a header that says where it came from, where it is going, and what position it occupies in the sequence. These packets travel independently. They can take completely different physical routes across the globe. At the destination, TCP (Transmission Control Protocol) reassembles them in the correct order.

Before any of that happens, your computer needs to figure out where to send the packets. You typed "google.com," but routers do not understand words. They understand IP addresses: numerical labels like 142.250.80.46. So your browser first queries the DNS (Domain Name System), the internet's phone book. Your device checks its local cache, then asks your ISP's DNS server, which may ask a root server, then a top-level domain server (.com), and finally the authoritative server for google.com. The answer comes back with the IP address, and now your packets have a destination.

Each packet enters the network and hits a router, a device that reads the destination IP and decides which direction to forward it. The router does not know the full path. It only knows which of its neighbors is the best next hop toward that destination, based on its routing table. The packet bounces from router to router, typically passing through 10 to 20 hops before arriving. Each hop adds a small amount of latency: the time to read the header, consult the table, and forward. The biggest contributor to latency is not the routers themselves. It is the physical distance the light must travel between them.

Interactive -- the packet journey
Your Device DNS Router local ISP Tier 3 IXP exchange SUBMARINE CABLE ~6,000 km | ~30ms Router backbone Server 142.250.80.46 ~1ms ~3ms ~5ms ~2ms round-trip latency ~62 ms 12 hops | 6,400 km via fiber explained.guide
Routing hops 12
Distance
62 ms
Round-trip time
12
Router hops
6,400 km
Cable distance
200k km/s
Signal speed
Transatlantic path: 6,400 km of undersea fiber, 12 router hops. Round-trip latency of 62 ms is almost entirely the speed of light in glass. No software optimization can reduce it further.
DNS (Domain Name System) translates human-readable domain names like google.com into IP addresses like 142.250.80.46. Your device checks its local cache first, then queries your ISP's DNS server, which may escalate to root servers, TLD servers (.com), and finally the authoritative server. This entire lookup typically adds 10-50ms on the first visit; subsequent visits use the cached result.

Why does physical distance still matter?

Light in fiber travels at about 200,000 kilometers per second, roughly two-thirds the speed of light in a vacuum. That sounds impossibly fast, but the distances involved are enormous. A round trip from New York to London through submarine cable is about 12,800 kilometers. At fiber speed, the signal propagation alone takes about 64 milliseconds. No software optimization, no faster router, no better protocol can reduce that number. It is limited by the speed of light in glass.

This is why CDNs (content delivery networks) exist. Companies like Cloudflare, Akamai, and AWS place copies of popular content on servers in hundreds of cities worldwide. When you load a webpage, you are probably connecting to a server 50 kilometers away, not 6,000. The data center industry's entire business model is a response to this single physical constraint: light is fast, but the Earth is big.

Interactive -- connection speed compared
Fiber
2 ms
near-instant response
GEO Satellite
600 ms
noticeable delay on every click
Fiber: signal travels 50 km through glass on the seabed. Satellite: signal travels 71,572 km to orbit and back.
Left panel
Right panel
Server distance
300x
Speed difference
+4.8 sec
Page load penalty
distance
Main bottleneck
Fiber optic cables carry data as pulses of light through glass strands. Light in fiber travels at ~200,000 km/s. The signal loses only ~3% strength per 100 meters, which is why fiber can span oceans with minimal repeaters. Local fiber connections have 1-2ms round-trip latency. Fiber is the backbone of the entire internet.

The thing nobody planned for

The internet was designed to survive a nuclear war. It was not designed for 5 billion people streaming video simultaneously.

95%
Why the physical internet is surprisingly fragile. Ninety-five percent of intercontinental data flows through about 600 submarine cables. Some ocean chokepoints (like the Strait of Malacca or the Red Sea) have only a handful of cables serving entire continents. When cables are damaged by anchors, earthquakes, or (rarely) shark bites, entire regions can lose connectivity or see latency spike 10x until traffic reroutes through surviving cables. The internet's logical resilience, packets finding alternative routes, depends on physical redundancy that is thinner than most people realize.

The original design of the internet, packet switching with decentralized routing, is what makes it resilient. No single point of failure can take down the whole network because packets simply find another path. But that resilience is only as good as the number of available physical paths. As more of the world's economy depends on the internet, the gap between the network's logical elegance and its physical vulnerability keeps getting more consequential.

The next time you load a webpage and it appears instantly, consider what just happened. Your device translated a name into a number, split your request into labeled packets, sent them racing through copper and glass at two-thirds the speed of light, across a dozen routers, possibly through a cable on the ocean floor, to a server that assembled your request, generated a response, and sent it back the same way. The whole thing took less time than a human reflex. The internet is not magic, and it is not abstract. It is an engineering project of staggering physical scale, doing something that would have seemed impossible a generation ago: making distance almost irrelevant for the movement of information.

The parts that make it work

Packets

Small chunks of data that travel independently to their destination.

The fundamental unit of internet data. Each packet carries a header (source/destination IP, sequence number, protocol) and up to 1,460 bytes of payload. A single webpage may require hundreds of packets, which can take different routes and are reassembled in order at the destination by TCP.

Routers

Devices that read addresses and forward data toward its destination.

Forward packets between networks by reading destination IP addresses and consulting routing tables. Use BGP (Border Gateway Protocol) to determine optimal paths across autonomous systems. A typical request passes through 10–20 routers between source and destination.

DNS Servers

The phone book that turns website names into numeric addresses.

Translate human-readable domain names (example.com) into IP addresses (93.184.216.34). A hierarchical system: 13 root server clusters delegate to TLD servers (.com, .org), which delegate to authoritative servers for each domain. Cloudflare's DNS alone handles 4.3 trillion queries per day.

TCP/IP Protocol

The shared set of rules that all internet devices follow.

The foundational rule set of the internet, organized in 4 layers: Application (HTTP, DNS), Transport (TCP/UDP), Internet (IP addressing and routing), and Link (physical transmission). TCP ensures reliable delivery by numbering packets and requesting retransmission of any that are lost.

Fiber Optic & Submarine Cables

Glass strands on the ocean floor that carry data as light.

Carry data as pulses of light through glass strands at ~200,000 km/s (two-thirds the speed of light). Roughly 600 submarine cable systems span the ocean floors, carrying 95% of intercontinental traffic. Fiber loses only ~3% signal strength per 100 meters, versus 94% for copper.

ISPs & Exchange Points

Companies and hubs that connect you to the global network.

ISPs connect end users to the internet backbone through tiered networks (Tier 1 = global backbone, Tier 3 = local). Over 700 Internet Exchange Points (IXPs) worldwide let networks peer directly, exchanging traffic locally rather than routing through distant networks, reducing latency and cost.

Round-trip latency by connection type (Ookla 2025 median)

Fiber / Ethernet (local) 1–2 ms
WiFi (5 GHz) 5–15 ms
5G 10–30 ms
4G LTE 30–100 ms
Starlink (LEO satellite) 25–60 ms
Traditional satellite (GEO) 500–700 ms

Tips & maintenance

  1. Test your real speed on a wired Ethernet connection with all other devices idle. Your wired speed should reach at least 80% of what your ISP advertises. WiFi typically delivers only 30–50%.
  2. Switch your DNS to Cloudflare (1.1.1.1) or Google (8.8.8.8). ISP DNS servers are often slow, and faster DNS can cut 10–30 ms off every new domain lookup.
  3. Use your router's 5 GHz or 6 GHz band for speeds above 200 Mbps. The 2.4 GHz band is heavily congested by neighboring networks, Bluetooth, and even microwaves.
  4. A quality VPN typically reduces speed by 10–20% due to encryption overhead. Free VPNs can cause 50–80% speed loss. If you need a VPN, choose one using the WireGuard protocol for minimal impact.
  5. Position your router centrally and elevated, away from walls, metal objects, and appliances. Every wall between you and the router degrades signal. For large homes, a mesh WiFi system eliminates dead zones.

Common questions

Seven steps fire in milliseconds: your browser parses the URL, DNS converts the domain to an IP address (checking caches first, then querying root → TLD → authoritative servers), a TCP 3-way handshake opens a connection (SYN, SYN-ACK, ACK), a TLS handshake encrypts it for HTTPS, your browser sends the HTTP request, the server returns the HTML response, and your browser parses the HTML, fetches linked resources (CSS, JS, images), and renders the page.

No single entity. The internet is a decentralized network of networks operated by ISPs, governments, universities, and corporations. ICANN (a nonprofit) manages domain names and IP address allocation. Physical infrastructure is owned by many parties: submarine cables by telecom consortia and tech giants like Google and Meta, local connections by ISPs, and exchange points by independent organizations.

The internet is the physical infrastructure: the global network of cables, routers, switches, and protocols (TCP/IP) connecting billions of devices. The World Wide Web is just one service running on the internet, a system of interlinked documents accessed via HTTP through browsers. Email (SMTP), file transfer (FTP), and video calling are other internet services that aren't "the web."

An IP address is a unique numerical label for every device on the internet. IPv4 uses 32-bit addresses (like 192.168.1.1), giving only 4.3 billion total, which were exhausted in 2011. IPv6 uses 128-bit addresses, providing 340 undecillion addresses (3.4 × 10³⁸), enough to assign a unique address to every atom on Earth's surface and still have addresses left over.

Light in fiber optic cable travels at ~200,000 km/s (two-thirds of light speed in vacuum). But real-world speed depends on more than signal propagation; routing hops, protocol overhead, and congestion all add latency. A fiber connection to a nearby server has ~1–2 ms round-trip latency. A request crossing the Atlantic via submarine cable adds ~30–60 ms. Traditional geostationary satellite adds 500–700 ms due to the 35,786 km orbital distance.

WiFi uses shared radio spectrum subject to interference from neighboring networks, Bluetooth devices, microwaves, and physical obstacles like walls. Ethernet provides a dedicated full-duplex connection with no contention. The 2.4 GHz WiFi band is especially congested. For the best wireless performance, use 5 GHz or 6 GHz bands and position your router centrally with line-of-sight to where you use devices most.