Glossary · Network
Packet: definition, explanation, and why it matters
The fundamental unit of data on an IP network — a small, self-contained block carrying source, destination, and a piece of the payload.
Definition
The fundamental unit of data on an IP network — a small, self-contained block carrying source, destination, and a piece of the payload.
Plain-English explanation
All internet traffic is broken into packets. Each packet travels independently and can take a different route to the destination, where they are reassembled. A typical packet is up to ~1500 bytes.
This packet-switching model is what makes the internet resilient and scalable, but it also means packets can arrive out of order, be lost, or be duplicated — which protocols like TCP must handle.
Real-world examples
- A 10 MB email attachment is split into roughly 7,000 packets in transit.
- Real-time game traffic is hundreds of small packets per second per player.
Why it matters
Understanding packets explains why network problems present as 'choppy', 'laggy', or 'glitchy' rather than as a clean on/off failure.
Common misconceptions
- Myth: Bigger packets are always faster.
Reality: Beyond the path MTU, packets are fragmented and may be dropped. Standard sizes are tuned to network reality.
Frequently asked questions
- What's a 'jumbo frame'?
- A packet larger than the standard 1500-byte MTU. Used on internal LANs to reduce overhead; not generally supported on the public internet.