Get AI summaries of any video or article — Sign up free
forcing my kids to make Ethernet cables // FREE CCNA // EP 11 thumbnail

forcing my kids to make Ethernet cables // FREE CCNA // EP 11

NetworkChuck·
5 min read

Based on NetworkChuck's video on YouTube. If you like this content, support the original creators by watching, liking and subscribing to their content.

TL;DR

DIY Ethernet cabling is most useful for custom lengths and repairs, and it becomes a practical troubleshooting skill.

Briefing

Making an Ethernet cable is framed as both a practical skill and a CCNA rite of passage: the core takeaway is that most home and business networking problems can be avoided—or at least diagnosed—when someone understands how RJ45 pinouts map to transmit/receive pairs and how cable wiring choices affect real-world behavior. The walkthrough starts with the “why” behind DIY cabling: store-bought cables are convenient, but custom lengths and repairs are often cheaper and more flexible when cables are built to spec.

The supplies list is straightforward—Cat5e UTP cable, an RJ45 crimper, RJ45 connectors, and optionally a cable tester—then the process begins with removing the jacket. The method emphasizes scoring the outer sheath (not cutting into the copper), pulling it back, and exposing the four twisted pairs (eight conductors). From there, the video shifts into the engineering logic of Ethernet: the jacket helps, but the real anti-noise strategy is twisting wires into pairs to reduce electromagnetic interference (EMI) and crosstalk. Because the cable is unshielded twisted pair (UTP), it relies on that twisting plus the outer jacket; shielded twisted pair (STP) adds an extra shielding layer for harsher EMI environments.

The explanation then ties cable construction to how Ethernet endpoints communicate. Copper conductors carry electrical signals that represent data by changing voltage levels. On a basic fast Ethernet model, one pair is used for transmit (TX) and another for receive (RX), and the RJ45 connector’s pinout matters because devices are programmed to send on specific pins and listen on others. A straight-through cable works when connecting dissimilar device types—typically an endpoint (like a PC or Raspberry Pi) to a switch—because the switch’s transmit/receive pin mapping matches the endpoint’s expectations.

That mapping becomes the reason crossover cables exist. When two similar endpoints are connected directly (e.g., Raspberry Pi to Raspberry Pi), a straight-through wiring can cause both ends to transmit on the same pins and listen on the same pins, resulting in a “talking to the ears” failure. A crossover cable fixes this by swapping the relevant pairs so each device transmits to the other device’s receive pins.

The video then updates the story for gigabit Ethernet (1000BASE-T) using Cat5e: with 1000BASE-T, each pair can send and receive simultaneously, so the strict need for crossover largely disappears in practice. Auto MDI-X on switches detects whether pins should be swapped and adjusts automatically. Still, the construction details remain crucial: the straight-through Cat5e pinout uses the 568B standard, with a specific order of white/orange, orange, white/green, blue, white/blue, green, white/brown, brown. The tutorial culminates in a hands-on build and a tester-based verification step, where a properly wired straight-through cable should show matching pin numbers on both ends.

Finally, the session reinforces CCNA-style exam relevance: it quizzes viewers on 568B ordering, which pins handle TX vs RX (pins 1–2 and 3–6 in the fast Ethernet framing), and what can cause late collisions—highlighting that exceeding the 100-meter limit is a known trigger, alongside duplex mismatches. The overall message is that Ethernet cabling isn’t just “making ends fit”—it’s understanding pinouts, signaling, noise control, and distance limits so networks behave predictably.

Cornell Notes

Ethernet cabling is presented as a practical skill with direct CCNA relevance: build the cable correctly by matching RJ45 pinouts, understand why twisted pairs reduce EMI and crosstalk, and verify the result with a cable tester. The tutorial explains how endpoints and switches use specific RJ45 pins for transmit and receive, which is why straight-through wiring works for endpoint-to-switch connections. It also shows why crossover wiring was historically needed for like-to-like connections (endpoint-to-endpoint), but notes that 1000BASE-T and switch Auto MDI-X largely eliminate the need for crossover in modern setups. The build process emphasizes scoring the jacket, untwisting pairs, using the 568B straight-through order, crimping with strain relief, and confirming pin-to-pin continuity with the tester.

Why does twisting wires into pairs matter for Ethernet reliability?

Twisting conductors into pairs is a core defense against electromagnetic interference (EMI) and crosstalk. EMI comes from devices that emit noise via swiftly changing electrical currents. If wires ran parallel without twisting, signals would couple more easily and create crosstalk. With twisted pairs, the interference affects the pair more uniformly, reducing the impact on data transmission. The tutorial contrasts UTP (unshielded twisted pair), which relies on twisting plus the jacket, with STP (shielded twisted pair), which adds an extra shielding layer for environments with heavier EMI.

What is the practical difference between a straight-through cable and a crossover cable?

A straight-through cable keeps the same pin positions on both ends (e.g., 1-to-1, 2-to-2, 3-to-3, 6-to-6 in the fast Ethernet framing). That matches how endpoints and switches are programmed: endpoints transmit on pins 1–2 and receive on pins 3–6, while switches use the complementary mapping so the traffic lands on the correct receive pins. A crossover cable swaps the relevant pairs so two similar devices (like two Raspberry Pis or two PCs) talk to each other’s receive pins instead of both transmitting to the same pins.

How does 1000BASE-T (gigabit) change the need for crossover cables?

With 1000BASE-T, each twisted pair can send and receive simultaneously, so the strict transmit/receive pin separation used in older fast Ethernet behavior becomes less limiting. In addition, switches support Auto MDI-X, which detects whether the connected device expects transmit/receive on different pin sets and automatically adjusts. As a result, crossover cables are often unnecessary when connecting modern gigabit-capable devices, even though crossover concepts still matter for understanding pin mapping.

What is the 568B pinout order used for the straight-through Cat5e cable in the build?

The straight-through Cat5e cable uses the 568B order: white orange, orange, white green, blue, white blue, green, white brown, brown. The tutorial stresses that the order is critical—wires must be aligned and trimmed consistently before insertion into the RJ45 connector so the conductors land in the correct pin positions.

How does a cable tester confirm a correctly built Ethernet cable?

A tester sends a signal on each conductor and lights indicators for pin positions 1 through 8. For a straight-through cable, the expectation is that pin numbers match on both ends (e.g., if pin 1 lights on one side, pin 1 should light on the other side as well). If the tester shows mismatched numbering, the cable likely has a pinout error and needs to be cut and rebuilt.

What can cause late collisions on an Ethernet LAN?

The quiz highlights that exceeding the 100-meter cable length limit can cause late collisions. Late collisions are associated with timing problems when signals take too long to propagate, pushing collisions outside the normal window. The tutorial also points to duplex mismatch as another cause, where one side operates half-duplex while the other uses full-duplex, leading to communication errors.

Review Questions

  1. What exact 8-wire order defines the 568B pinout, and why does getting the order wrong prevent the cable from working?
  2. In the fast Ethernet framing, which RJ45 pins correspond to transmit vs receive, and how does that mapping differ between endpoints and switches?
  3. Why does going beyond 100 meters increase the risk of late collisions, and what other configuration issue can also trigger late collisions?

Key Points

  1. 1

    DIY Ethernet cabling is most useful for custom lengths and repairs, and it becomes a practical troubleshooting skill.

  2. 2

    Cat5e UTP relies on twisted pairs to reduce EMI and crosstalk; STP adds shielding for higher-noise environments.

  3. 3

    RJ45 pinouts matter because endpoints and switches are programmed to transmit and receive on specific pins.

  4. 4

    Straight-through wiring is designed for endpoint-to-switch connections; crossover wiring swaps pairs for like-to-like endpoint connections.

  5. 5

    1000BASE-T and switch Auto MDI-X largely remove the real-world need for crossover cables in modern gigabit networks.

  6. 6

    Ethernet cables should not exceed 100 meters; longer runs increase the likelihood of late collisions.

  7. 7

    A cable tester verifies correctness by checking that pin numbers match end-to-end for a straight-through build.

Highlights

Twisted pairs aren’t cosmetic—they’re the main mechanism that reduces EMI and crosstalk in UTP Ethernet.
Straight-through vs crossover isn’t a naming convention; it’s a direct consequence of which RJ45 pins endpoints and switches use for TX and RX.
Gigabit Ethernet (1000BASE-T) changes the game: simultaneous send/receive on pairs plus Auto MDI-X means crossover is often unnecessary.
The 568B straight-through order (white orange, orange, white green, blue, white blue, green, white brown, brown) is the make-or-break detail for a working cable.
Late collisions are tied to timing and distance; exceeding 100 meters is a known trigger.

Topics

  • Ethernet Cabling
  • RJ45 Pinouts
  • UTP vs STP
  • 1000BASE-T
  • Auto MDI-X

Mentioned

  • CCNA
  • UTP
  • STP
  • EMI
  • RJ45
  • TX
  • RX
  • NIC
  • MDI-X
  • Auto MDI-X
  • 1000BASE-T
  • 10BASE-T
  • 100BASE-TX
  • CCNP
  • LAN