Prove a port with a loopback and distinguish it from the loopback address
Task
Test a network port with a physical loopback or its nearest available substitute, and establish precisely what that result proves compared with a loopback address ping -- two tests with similar names and different scopes.
Steps
- Ping the loopback address and record the result in
lab/loop/address.txt, then write inlab/loop/address-proves.mdexactly what that proved and what it did not touch. - Where a loopback plug is available, fit it and run the adapter's own diagnostic, recording the result in
lab/loop/plug.txt. WHERE IT IS NOT: connect the adapter to a known-good switch port with a known-good cable and record the link state instead, noting the substitution inlab/loop/substitute.md. - Write
lab/loop/compare.csvwith headertest,layer,proves,does_not_provecomparing the address ping, the plug or substitute, and a ping to another host. - Write
lab/loop/tools.csvwith headertool,question,what_a_pass_missesfor the wire-map tester, the certifier, the reflectometer, the toner and the loopback plug. - Write
lab/loop/scenario.mddescribing a machine that passes the address ping and fails everything else, and what that narrows the fault to.
Verify
grep -c . lab/loop/address.txt
grep -c . lab/loop/address-proves.md
ls lab/loop/plug.txt lab/loop/substitute.md 2>/dev/null | wc -l
awk -F, 'NR>1 && NF>=4 {n++} END {print n" test(s) compared"}' lab/loop/compare.csv
awk -F, 'NR>1 && NF>=3 {n++} END {print n" tool(s) with a stated blind spot"}' lab/loop/tools.csv
grep -c . lab/loop/scenario.md
An address ping with its scope stated, either a plug result or a documented substitute, three tests compared, five tools each with a stated blind spot, and the scenario. A tools table with an empty blind-spot column has recorded what each tool does and missed the point of the lesson.
Notes
The address ping tests software and never reaches the adapter. Reporting 'the loopback test passed' without saying which loopback is how a failed adapter gets cleared.
This is an independent study companion for CompTIA A+ Core 1 220-1201 and is not produced by or endorsed by CompTIA.