Why does an Ethernet cable have four pairs

cableethernetlayer1

I'm curious about why 10Base-T and then 100Base-T Ethernet networks used cables which had four pairs if they only needed two? Were there some cables that only had two pairs?

If we wanted to increase the speed of Ethernet further in the future, could adding more pairs of cables help?

Best Answer

10BASE-T saw first light as StarLAN that made use of the already existing twisted-pair category 3 telephone cabling (instead of the dedicated coax that 10BASE5/2 required). That multi-purpose cabling standard carries four pairs to each wall jack. StarLAN (10) and subsequently 10BASE-T had no use for more than two pairs, so they ignored the other two. 100BASE-TX borrowed FDDI's copper design ("CDDI") with also just two pairs, so it's the same situation.

The already existing cabling is also the reason for the use of straight-through cables as standard (with the crossover, MDI vs MDI-X logic on the device port side), and crossover cables only in special cases. Fiber uses crossovers throughout.

Cables with only 1-2 & 3-6 pairs are sub-standard, yet functional with 10BASE-T and 100BASE-TX. Of course, there are (or at least were) many installations and adapters that would split a four-pair cable into two independent 10/100 links (for cost, cabling restrictions, ...). That won't work with 1000BASE-T and faster though - the faster Ethernet variants split traffic into four full-duplex lanes to reduce the cable's frequency requirements to a quarter, so they require all four lanes.

For completeness, the 100BASE-T4 and 100BaseVG standards that initially competed with 100BASE-TX both used all four pairs of voice-grade category 3 cabling, non-intuitively both were inherently half duplex. In spite of the extra cost of upgrading to category 5 cable (but with lower port cost), 100BASE-TX quickly won the race and became ubiquitous.

If we wanted to increase the speed of ethernet further in future could adding more pairs of cables help?

It could, in theory, use more than the current four lanes. But nobody's going to redeploy their whole cable plant. By various standards (e.g. TIA-568), horizontal/tertiary cabling is commonly deployed using twisted-pair cabling (good for up to 10 Gbit/s, depending on category and length), but vertical/secondary cabling and upwards uses fiber anyway.

40GBASE-T and 25GBASE-T using category 8 cabling (30 m max) are already having a hard time competing with fiber and likely we won't get faster TP standards ever. Fiber is already at 400 Gbit/s and ready for much more using WDM or multi-lane fiber which is much more practical than with copper, so that's the future.

EDIT As has been pointed out in the comments, you could also add pairs for more speed using another cable. That is actually common practice called link aggregation (LAG).

However, LAG performance can differ substantially from a single, equally fast multi-lane link. Multiple lanes across a single cable are irrelevant to performance because data distribution across the lanes is very finely grained - usually on a multi-bit level, depending on the PCS line code.

An aggregated link distributes data coarsely on the frame level. You really have to avoid changing the frame order and considerably hurting overall performance, so traffic isn't distributed dynamically (by link utilization) but statically - by L2 addresses, L3 addresses, L4 ports, ..., depending on the switches and their configuration. The higher the layer, the better, usually.

At best, you distribute traffic on the L4 connection level - but still, no single flow can ever exceed the bandwidth of a single link. With L3-based distribution, that limit applies to any host-to-host connection. Much worse even, L2-based traffic distribution puts that limit on the sum of all flows between any two routers, hosts or mix. Accordingly, interconnecting 10G switches with aggregated 1G links is a bad idea mostly.

Aggregating multiple links is generally limited as well. The most common LAG protocol LACP allows a maximum of eight active links, and all switches I've seen limit the number to eight (or less) for static LAG as well. Ethernet's speeds usually increase tenfold between grades, so that's more than you can gain by LAG. Correspondingly, link aggregation is often just a stop-gap measure before upgrading the actual link speeds.