A network administrator on a Linux workstation is troubleshooting an inability to reach a remote HTTPS service hosted at 10.20.30.50 on custom port 8443. Following a structured bottom-up OSI troubleshooting methodology, in what sequence should the administrator execute the following command-line diagnostics to systematically isolate the failure?
- 1Execute `ip addr show` to verify local host IP address assignment, netmask, and interface link state.
- 2Execute `ping -c 3 192.168.1.1` to test ICMP reachability to the local default gateway.
- 3Execute `traceroute -n 10.20.30.50` to identify the intermediate router hop where packet forwarding fails along the path.
- 4Execute `nc -zv 10.20.30.50 8443` to probe TCP port accessibility and verify transport layer listener availability.
Answer
The correct diagnostic sequence begins with verifying host interface configuration (`ip addr show`), testing local gateway reachability (`ping -c 3 192.168.1.1`), isolating intermediate path routing (`traceroute -n 10.20.30.50`), and finally checking specific TCP port socket accessibility (`nc -zv 10.20.30.50 8443`).
Adhering to a bottom-up troubleshooting methodology requires starting with local host interface verification (`ip addr show`), followed by testing default gateway reachability (`ping`), isolating multi-hop routing paths (`traceroute`), and concluding with transport layer port testing (`nc`).
Step-by-Step Solution
Key Concept
Bottom-up CLI Network Troubleshooting Methodology
Estimated Time:2m 0s