What Is a Network?
The mental model for everything that follows: what a network is, why it exists, and the difference between a LAN and a WAN.
Explain It Simply
A network is just a group of devices that can send information to each other. That’s it. Two laptops connected by a cable are a network. Your phone, your laptop, and your smart TV all connected to the same home router are a network. The entire Internet is a network of networks.
What is actually happening?
When one device sends information to another, it doesn’t send the whole file or message in one piece. It breaks the data into smaller chunks, wraps each chunk with addressing information (who it’s from, who it’s for), and sends those chunks out. The receiving device collects the chunks and reassembles them.
This matters because almost every networking concept you’ll learn is really about how those chunks find their way to the right place, reliably, and in the right order.
Analogy: The Postal System
Think of a network like the global postal system.
When you write a letter (the data), you don’t throw it out the window. You put it in an envelope (encapsulation), write the destination address and your return address on the outside, and drop it in a mailbox.
The postal workers (switches and routers) read the address on the outside of the envelope and make decisions about the best path to get that letter to its destination. The person delivering the letter doesn’t care what you wrote inside it—they only care about the address on the outside.
This is exactly how computer networks work. Devices put data into “envelopes” with addresses, and network equipment reads those addresses to forward the data to the right place.
Why does it matter?
Because every single networking technology you will ever learn — VLANs, routing, firewalls, VPNs, BGP — exists to solve one of two fundamental problems:
- Getting data from A to B (Switching, Routing, DNS, ARP)
- Controlling who gets to send data, and to where (Firewalls, VLANs, Security)
If you keep that in mind, new topics stop feeling like a pile of unrelated trivia and start feeling like variations on the same two problems.
LAN vs. WAN
A LAN (Local Area Network) is a network you control, usually confined to one site — your home, an office floor, a building.
A WAN (Wide Area Network) connects separate LANs together over a distance, usually using a connection you don’t fully control, like an ISP circuit.
Is the connection between your home router and your ISP a LAN or a WAN link?
It’s a WAN link. Your home network (everything behind your router) is the LAN. The moment traffic leaves your router toward your ISP, it’s travelling over a WAN connection you don’t own or fully control.
How is this used in a real network?
Every network you’ll ever work on — a small office, an enterprise campus, or an ISP’s core — is built from the same basic idea: LANs at the edges where devices actually live, and WAN links connecting those LANs together. The scale changes. The core idea doesn’t.
Can You Explain It?
Close the lesson and answer these without looking back. The goal isn't the wording — it's whether you've formed a usable mental model.
- In your own words, what is a network?
- What's the difference between a LAN and a WAN?
- Why do devices break data into smaller chunks instead of sending it all at once?