Pourquoi tout réseau est construit en couches, et ce qu'est l'encapsulation. L'idée qui rend le reste des réseaux compréhensible.
Pourquoi les couches existent
En bref
Objectifs
- Expliquer ce que la découpe en couches apporte
- Décrire l'encapsulation en une phrase
Networks are built in layers. Each layer solves one problem and hands its result to the next, without needing to know how the others work. This is the single most important idea in networking — get it, and everything else falls into place.
When you send a message, each layer wraps it in its own header, like putting a letter in an envelope, then that envelope in a bigger one. This wrapping is called encapsulation.
Why bother?
Because it lets one part change without breaking the rest. Wi-Fi replaced Ethernet cables at the bottom layer, and the web above it never noticed. That is layering earning its keep.
Tip
Whenever a network problem confuses you, ask: which layer is this? Half of troubleshooting is putting the problem on the right layer.
À retenir
- Chaque couche résout un problème et passe à la suivante
- L'encapsulation enveloppe les données couche par couche
- Les couches permettent de changer une partie sans casser le reste