Dennis Academy crestDENNIS ACADEMY

1.0 Networking Concepts

Transmission Media, Transceivers, and Network Topologies

Sign in to track progress

Simple explanation

This lesson covers the physical stuff — cables, connectors, and the shapes networks are laid out in — plus the logical architectures built on top of that physical layer.

Technical explanation

Transmission media:

  • Copper (twisted pair) — Cat5e/Cat6/Cat6a cabling, uses RJ45 connectors, susceptible to electromagnetic interference (EMI), limited to about 100 meters.
  • Fiber optic — single-mode (long distance, laser light) vs. multi-mode (shorter distance, LED light, cheaper), immune to EMI, much higher bandwidth potential, uses connectors like SC/LC/ST.
  • Coaxial — older, still used in some cable broadband deployments.
  • Wireless — radio frequency, no physical cable at all.

Transceivers — modules (SFP, SFP+, QSFP) that convert electrical signals to optical (or vice versa), allowing a switch port to support different media types.

Network topologies:

  • Star — all devices connect to a central point (switch); most common in modern LANs, easy to troubleshoot, single point of failure at the center.
  • Mesh — every device connects to every other device (full mesh) or to several others (partial mesh); highly resilient, expensive to scale.
  • Bus — all devices share a single cable (largely legacy today).
  • Ring — each device connects to exactly two others, forming a loop (also largely legacy, though the concept persists in some modern redundancy protocols).
  • Hybrid — a combination of topology types.

Architectures: three-tier (core, distribution, access layers — traditional enterprise design), spine-and-leaf (modern data center design, every leaf switch connects to every spine switch, optimized for predictable, low-latency east-west traffic between servers), collapsed core (combining core and distribution into one layer for smaller networks), software-defined networking (SDN) (centralizing network control logic in software, decoupled from the physical hardware forwarding traffic).

Synonyms / related terms

| Term | Means | |---|---| | SFP | Small Form-factor Pluggable (a transceiver type) | | EMI | Electromagnetic Interference | | Spine-and-leaf | Modern data center topology optimized for server-to-server traffic |

Concept Check

"A data center needs predictable, low-latency connectivity between any two servers, regardless of which physical switch each is connected to." A traditional three-tier architecture isn't optimal here — traffic between two servers on different access switches has to travel up through distribution and possibly core. Spine-and-leaf is purpose-built for exactly this requirement, since every leaf connects directly to every spine, keeping the maximum path length constant and short.

Interview-style Q&A

Q: When would you choose multi-mode fiber over single-mode, given single-mode's superior distance and bandwidth potential? A: "Cost, mainly. Multi-mode uses cheaper LED-based transceivers and is perfectly adequate for shorter runs — within a building or between nearby buildings. Single-mode's laser-based equipment costs more, which only pays off when you actually need the extra distance or bandwidth headroom, like connecting between data centers miles apart."

Memory trick

"Star is Simple, Mesh is Mighty, Ring is Retired" — a quick memory tag for the three classic topologies' defining character.