A network administrator is systematically troubleshooting an end user's workstation that cannot access an internal web application located at `https://app.corp.local`. Place the command-line utility operations in the logical sequential order recommended for isolation, starting from basic local network interface validation up to upper-layer protocol testing.
- 1Run `ipconfig /all` to verify local IP configuration, default gateway address, and assigned DNS servers.
- 2Run `ping 127.0.0.1` and then ping the local default gateway address to verify local stack integrity and LAN connectivity.
- 3Run `nslookup app.corp.local` to determine if the local system correctly resolves the domain name to an IP address.
- 4Run `tracert 10.20.30.50` (using the resolved server IP) to trace the path and pinpoint any intermediate router drops.
- 5Run `netstat -an` or attempt a socket connection test (such as `curl -v https://10.20.30.50`) to verify transport layer port accessibility on TCP 443.
Answer
The correct order follows a structured bottom-up / progressive isolation approach: 1. Verify local IP settings (`ipconfig /all`), 2. Test ICMP loopback and default gateway reachability (`ping`), 3. Validate DNS name resolution (`nslookup`), 4. Identify network path failure points (`tracert`), 5. Verify transport layer port and service responsiveness (`netstat`/socket test).
The logical troubleshooting workflow progresses systematically from host interface verification (`ipconfig /all`), to local gateway reachability (`ping`), to application layer resolution (`nslookup`), to path routing analysis (`tracert`), and finally to service port level inspection (`netstat`).
Step-by-Step Solution
Key Concept
Structured Command-Line Diagnostic Sequence for End-to-End Connectivity