Introduction
Imagine trying to connect several computers so they can share information easily. The way these computers are connected affects how well they communicate and how easy it is to fix problems when they happen.
Imagine a group of friends trying to talk to each other. In one case, they all gather around one person who passes messages (star). In another, they sit in a line passing notes down the row (bus). Sometimes they form a circle passing a message around (ring). Or they all call each other directly on their phones (mesh).
┌─────────┐
│ Switch │
└───┬─────┘
│
┌───────┼───────┐
│ │ │
┌──┴──┐ ┌──┴──┐ ┌──┴──┐
│ PC1 │ │ PC2 │ │ PC3 │
└─────┘ └─────┘ └─────┘
Bus Topology:
PC1 ─── PC2 ─── PC3 ─── PC4
Ring Topology:
PC1 ──> PC2 ──> PC3 ──> PC4 ──> PC1
Mesh Topology:
PC1 ──┬── PC2
│ │ │
PC3 ──┴── PC4