Ethernet Naming Convention
IEEE Ethernet standards follow a naming pattern: [Speed][BASE or BROAD]-[Media type]. The speed is in Mbps or Gbps. BASE means baseband (single channel using full bandwidth); BROAD means broadband (rarely used now). The media designator indicates cable type: T = twisted pair copper, F = fiber, S = short wavelength fiber, L = long wavelength fiber, X = Ethernet-specific encoding.
Examples decoded: 10BASE-T = 10 Mbps, baseband, twisted pair. 100BASE-TX = 100 Mbps (Fast Ethernet), twisted pair. 1000BASE-T = 1 Gbps (Gigabit Ethernet), twisted pair, requires Cat5e+. 10GBASE-T = 10 Gbps, twisted pair (Cat6a/Cat7). 10GBASE-SR = 10 Gbps, short-range fiber. 10GBASE-LR = 10 Gbps, long-range fiber. 40GBASE-SR4 = 40 Gbps, short-range fiber (4 lanes).
Common Ethernet Standards and Their Media
10BASE-T (10 Mbps): Cat3 minimum, 100m, obsolete. 100BASE-TX (Fast Ethernet, 100 Mbps): Cat5 minimum, 100m — still used in some environments. 1000BASE-T (Gigabit Ethernet, 1 Gbps): Cat5e minimum, 100m — the standard for most modern LANs. 1000BASE-SX: 1 Gbps, multimode fiber, up to 550m (OM3). 1000BASE-LX: 1 Gbps, single-mode or multimode fiber, 5km SMF.
10GBASE-T: 10 Gbps, Cat6a (100m) or Cat6 (55m) — brings 10GbE to copper. 10GBASE-SR: 10 Gbps, multimode fiber, 300m (OM3) — common in data centers. 10GBASE-LR: 10 Gbps, single-mode fiber, 10km. 25GBASE-T: 25 Gbps, Cat8 (30m). 40GBASE-SR4: 40 Gbps, MMF using 4 parallel lanes, 150m. 100GBASE-SR4: 100 Gbps, 4-lane MMF, 100m.
CSMA/CD, Duplex, and MAC Addresses
CSMA/CD (Carrier Sense Multiple Access with Collision Detection) is the original Ethernet access control method. Devices listen before transmitting; if a collision occurs, they back off for a random period and retransmit. CSMA/CD is only relevant in half-duplex environments (hubs). Full-duplex switched networks eliminate collisions — CSMA/CD is inactive.
Half-duplex: a device can send or receive but not simultaneously (walkie-talkie model). Full-duplex: simultaneous send and receive — requires a point-to-point switched connection. All modern switched ports default to full-duplex. Speed and duplex mismatches cause performance problems — a port set to auto-negotiate on one end and hard-coded on the other can result in a duplex mismatch.
MAC addresses are 48-bit (6-byte) hardware addresses expressed in hex (e.g., 00:1A:2B:3C:4D:5E). The first 3 bytes are the OUI (Organizationally Unique Identifier) — identifies the manufacturer. The last 3 bytes are assigned by the manufacturer. Broadcast MAC address = FF:FF:FF:FF:FF:FF. Multicast MACs start with 01:00:5E.