The Internet Is a Network of Networks
The internet is not a single thing owned by any company or government. It is a vast, decentralized collection of interconnected networks — belonging to internet service providers (ISPs), universities, businesses, governments, and individuals — that all agree to communicate using the same set of rules. Those rules are called protocols, and they're what make the whole system work.
The Physical Layer: It's More Cables Than You Think
Despite the word "wireless" appearing everywhere, the internet is fundamentally a physical infrastructure. Most long-distance internet traffic travels through fiber-optic cables — hair-thin strands of glass that transmit data as pulses of light at extraordinary speeds. A global network of undersea cables stretching hundreds of thousands of kilometers connects continents, crossing ocean floors at depths of several kilometers.
Your home Wi-Fi is indeed wireless — but only for the short hop between your device and your router. From your router onward, data typically travels through a chain of physical cables and hardware before reaching its destination.
How Data Moves: Packets and Protocols
When you send an email or load a webpage, the data isn't sent as one continuous stream. It's broken into small chunks called packets. Each packet is labeled with a source address, a destination address, and its position in the sequence. Packets from the same message may travel completely different routes across the internet and are reassembled in the correct order at the destination.
This "packet switching" design — developed in the 1960s — makes the internet resilient. If one route is congested or broken, packets simply take another path.
The Key Protocols Explained
IP — Internet Protocol
Every device on the internet has an IP address — a unique numerical label that acts like a postal address. IP is responsible for addressing and routing packets so they reach the right destination. IPv4 addresses (like 192.168.1.1) are the older format; IPv6 was introduced to accommodate the vast number of internet-connected devices now in existence.
TCP — Transmission Control Protocol
TCP works alongside IP (together: TCP/IP) to ensure that packets are delivered reliably and in the correct order. If any packet fails to arrive, TCP requests it be resent. This is used for applications where accuracy matters — web browsing, email, file transfers.
DNS — Domain Name System
Humans use domain names (like cendlos.com); computers use numerical IP addresses. DNS is the internet's phone book — a distributed global database that translates domain names into IP addresses. When you type a URL, your device first contacts a DNS server to look up the corresponding IP address before connecting to the actual website.
HTTP and HTTPS
HyperText Transfer Protocol (HTTP) defines how web browsers and web servers communicate. HTTPS is the encrypted version, using TLS (Transport Layer Security) to ensure that data between your browser and the server can't be intercepted or tampered with. The padlock icon in your browser's address bar indicates an HTTPS connection.
What Happens When You Type a URL
- Your browser asks a DNS server: "What's the IP address of this domain?"
- The DNS server responds with an IP address.
- Your browser sends an HTTP/HTTPS request to that IP address.
- The web server at that address responds with the files that make up the webpage (HTML, CSS, images, scripts).
- Your browser assembles and renders those files into the page you see.
This entire process typically takes a fraction of a second.
The Edge: CDNs and Data Centers
Popular websites don't serve content from a single server in one location. They use Content Delivery Networks (CDNs) — distributed systems of servers placed in data centers around the world. When you request a webpage, the CDN serves it from the location geographically closest to you, dramatically reducing loading time and spreading the load across many servers.
Why This Matters
Understanding how the internet works helps you make smarter decisions online — recognizing the importance of HTTPS for security, understanding why your connection might slow down, and appreciating the extraordinary engineering achievement that makes instant global communication possible. The internet is the most complex collaborative infrastructure humans have ever built, and it runs on open standards that anyone can learn.