Terminate, label and document a patch run
Task
Terminate a cable to the T568B standard at both ends, test it, then produce the labelling and documentation that makes it findable in two years. The termination is a skill; the documentation is what separates a network you can troubleshoot from one you cannot.
Steps
- Write out the T568B pin order from memory: white-orange, orange, white-green, blue, white-blue, green, white-brown, brown. Then write T568A and identify what swaps — the orange and green pairs, and nothing else.
- Strip about 25 mm of jacket, untwist as little as possible, order the conductors, trim them flat and even, and seat them fully into the plug before crimping. The two mistakes that cost you: untwisting more than 13 mm, which raises crosstalk, and conductors not reaching the end of the plug.
- Terminate the far end identically. Same standard both ends makes a straight- through cable; T568A at one end and T568B at the other makes a crossover, which modern auto-MDI-X equipment no longer needs.
- Test it. A basic tester steps through pins 1 to 8 and lights them in order. All eight in sequence means continuity and correct pinout. Out of order means reversed or crossed pairs; a missing light means an open.
- Label both ends with the same identifier and record the run: source panel and port, destination room and outlet, cable type, length, date and installer. One line in a spreadsheet, and it is the line you will be grateful for.
Verify
python3 -c "
b = ['wh-orange','orange','wh-green','blue','wh-blue','green','wh-brown','brown']
a = ['wh-green','green','wh-orange','blue','wh-blue','orange','wh-brown','brown']
for i,(x,y) in enumerate(zip(b,a), 1):
mark = ' <- swapped' if x != y else ''
print(f'pin {i} T568B {x:<10} T568A {y:<10}{mark}')
print()
print('pins 1,2,3,6 carry data at 10/100; all eight are used at 1 Gbps and above')
"
Your tester must light all eight pins in sequence. The script prints the two standards side by side so you can check the pin order you wrote from memory — and confirms that only four positions differ.
Notes
A basic continuity tester will pass a split pair, and that is the trap worth knowing. In a split pair every pin connects to the correct pin at the far end, so continuity and pin map are perfect; the fault is that two conductors from different twisted pairs have been used as a pair. Crosstalk goes through the roof and the link works at 100 Mbps and fails at gigabit.
Detecting that needs a tester that measures crosstalk — a qualifier or a certifier, not a verifier. That tier distinction is examinable and it is exactly this fault that motivates it.
On labelling: the identifier must be on both ends and in the record. A label on one end only turns a two-minute trace into an afternoon with a toner.