Ethernet Standards

[!NOTE] This module explores the core principles of Ethernet Standards, deriving solutions from first principles and hardware constraints to build world-class, production-ready expertise.

1. What is Ethernet?

Ethernet is a family of wired computer networking technologies commonly used in local area networks (LANs). It is standardized as IEEE 802.3. Think of it as the universal language that computers in the same room (or building) use to talk to each other before sending data out to the global internet.

2. Physical Media: The Hardware Reality

Data travels over different physical mediums depending on distance, budget, and speed requirements. In system design, we don’t just pick “fast cables”—we balance physical hardware realities against business requirements.

Twisted Pair (Copper)

Eight thin copper wires twisted into pairs. The twisting is crucial: it utilizes differential signaling to cancel out electromagnetic interference (EMI) and Crosstalk from adjacent cables.

  • Cat5e: Up to 1Gbps. Max distance 100 meters. The “default” cheap cable.
  • Cat6a: Up to 10Gbps. Max distance 100 meters. Thicker, tighter twists, often shielded.
  • Connector: RJ-45 (the classic network plug).

War Story: If you run untwisted, unshielded copper cables parallel to industrial power lines or fluorescent lights, the EMI will induce voltage spikes on the data lines, causing massive packet loss. This is why data centers strictly separate power and data cable trays.

Fiber Optic

Uses extremely fast laser light pulses to send data through hair-thin glass or plastic cores.

  • Single-mode: Extremely narrow core. Laser beam shoots straight down without bouncing. Used for Long distance (Kilometers, e.g., undersea cables or building-to-building).
  • Multi-mode: Wider core. Uses LEDs or cheaper lasers that bounce off the walls of the fiber. Used for Short distance (Inside Data Centers, < 400m).
  • Pros: Immense bandwidth, absolutely zero electromagnetic interference (light is immune to EMI), and harder to wiretap.
  • Cons: Fragile glass, requires expensive transceivers.

3. Speed Evolution: Bridging the Gap

Standard Name Speed Medium Primary Use Case
10BaseT Ethernet 10 Mbps Cat3/5 Legacy / Obsolete
100BaseTX Fast Ethernet 100 Mbps Cat5 Basic IoT devices / Printers
1000BaseT Gigabit Ethernet 1 Gbps Cat5e/6 Modern Office Desktops
10GBASE-T 10 GigE 10 Gbps Cat6a Data Center Server Uplinks

4. Interactive Case Study: The Cable Picker

Scenario: You are a Network Engineer. You need to connect two office buildings 500 meters apart across a busy industrial campus.

Choose the right cable based on the hardware constraints we just learned.

Target: Connect two buildings 500 meters apart.

Select the appropriate medium to bridge the gap without signal degradation.

🔌
Cat6 Copper
Max: 100m • Susceptible to EMI
Fiber Optic
Max: 2km+ • Immune to EMI
Awaiting selection...

5. Topologies Revisited

Modern Ethernet uses a Physical Star (all cables go to a central switch) but acts as a Logical Bus (in its most basic hub form, everyone is part of the same broadcast domain). Modern switches have evolved this to point-to-point micro-segments, largely eliminating the collisions of legacy bus topologies.