Introduction
Ethernet is the dominant wired LAN technology, standardized under IEEE 802.3. Over decades it has evolved from shared coaxial cable segments running at 10 Mbps to switched fiber and copper links running at multiple gigabits or more per second. Understanding common Ethernet standard names and their speeds helps in reading cabling specs, choosing hardware, and diagnosing network performance issues.
Cricket analogy: Just as cricket bats evolved from heavy willow clubs to lighter, more powerful blades over decades, Ethernet evolved from shared 10 Mbps coax cable to switched gigabit fiber and copper links.
Explanation
Ethernet standard names generally follow a pattern of <speed><signaling type>-<medium>. Common examples include: 10BASE-T (10 Mbps over twisted-pair copper, an early standard), 100BASE-TX (100 Mbps over twisted-pair copper, commonly called Fast Ethernet), 1000BASE-T (1 Gbps over twisted-pair copper, commonly called Gigabit Ethernet), and higher-speed standards such as 10GBASE-T (10 Gbps) and various fiber-based standards (e.g., 1000BASE-SX/LX for Gigabit over fiber) used in backbone and data center links. 'BASE' indicates baseband signaling (the cable carries a single digital signal, not multiple modulated channels), and the suffix (T, TX, SX, LX, etc.) indicates the cabling medium and signaling detail.
Cricket analogy: Just as a bat's specification like 'SH grade 1' names its size and grade, Ethernet names like 1000BASE-T encode speed, signaling, and medium, telling installers exactly what copper cable to run.
Early Ethernet, especially on shared coaxial cable or hub-based topologies, was a half-duplex, shared medium where only one device could transmit at a time. This is why CSMA/CD (Carrier Sense Multiple Access with Collision Detection) was originally essential: a transmitting device would sense the wire while sending and, if it detected a collision (another device transmitting simultaneously), would stop, send a jam signal, and retry after a random backoff. Modern networks, however, are built almost entirely on switches rather than hubs, and most links run full-duplex, meaning each device has a dedicated point-to-point connection to a switch port and can send and receive simultaneously without any possibility of a collision.
Cricket analogy: Old-style club cricket with one shared pitch meant only one team could bat at a time, like early half-duplex Ethernet where only one device could transmit, backing off after a collision like a no-ball retry.
Example
# Rough mapping of common Ethernet standards to speed
ethernet_standards = {
"10BASE-T": "10 Mbps over copper twisted-pair",
"100BASE-TX": "100 Mbps over copper twisted-pair (Fast Ethernet)",
"1000BASE-T": "1 Gbps over copper twisted-pair (Gigabit Ethernet)",
"10GBASE-T": "10 Gbps over copper twisted-pair",
"1000BASE-SX": "1 Gbps over multimode fiber (short range)",
}
for name, desc in ethernet_standards.items():
print(f"{name}: {desc}")Analysis
Because virtually all modern Ethernet deployments use switches with dedicated full-duplex links rather than shared hubs, actual collisions on a modern switched Ethernet network are essentially nonexistent under normal operation — each switch port and connected device forms its own isolated collision domain of exactly two participants (the switch port and the device), and full-duplex operation means both directions can carry traffic simultaneously without contention. CSMA/CD logic is still technically part of the 802.3 standard for backward compatibility and half-duplex legacy scenarios, but it plays essentially no functional role on contemporary full-duplex switched networks; it is largely of historical and conceptual importance today, useful mainly for understanding why early shared Ethernet and Wi-Fi's CSMA/CA diverged in design.
Cricket analogy: Modern stadiums give each team its own dedicated practice net rather than sharing one pitch, just as switched full-duplex Ethernet gives each device its own dedicated link, making collisions essentially impossible.
Key Takeaways
- 10BASE-T = 10 Mbps, 100BASE-TX = 100 Mbps (Fast Ethernet), 1000BASE-T = 1 Gbps (Gigabit Ethernet), all over twisted-pair copper.
- The 'BASE' in Ethernet names means baseband signaling; the trailing letters indicate cabling medium/type.
- CSMA/CD was essential on shared half-duplex Ethernet (hubs, coax) to handle collisions.
- Switched, full-duplex modern Ethernet effectively eliminates collisions, making CSMA/CD largely obsolete in practice.
Practice what you learned
1. What speed does the 1000BASE-T Ethernet standard provide?
2. Which Ethernet standard is commonly known as 'Fast Ethernet'?
3. Why is CSMA/CD largely obsolete on modern Ethernet networks?
4. What does the 'BASE' in a name like 100BASE-TX indicate?
Was this page helpful?
You May Also Like
Data Link Layer Basics
How raw bits are organized into frames for reliable node-to-node delivery on the same network segment.
MAC Addressing and Switching
How 48-bit MAC addresses identify devices and how switches learn and use them to forward frames.
VLANs
How VLANs use 802.1Q tagging to logically split one physical switch into multiple isolated broadcast domains.