A network administrator is troubleshooting an issue where a workstation cannot access a critical web database service hosted at `db01.corp.internal` on TCP port 8443 in a remote subnet. Following standard network troubleshooting methodology to systematically isolate the issue from the local network layer up through path routing, domain name resolution, and transport socket state, in what logical sequence should the administrator execute the command-line network utilities?
- 1Execute `ipconfig /all` to verify local host IP address, subnet mask, default gateway, and DNS server configuration.
- 2Execute `ping 192.168.1.1` (the default gateway address) to test ICMP reachability across the local segment.
- 3Execute `tracert -d 10.250.32.50` to map Layer 3 hop-by-hop path reachability to the destination IP address without resolving hostnames.
- 4Execute `nslookup db01.corp.internal 10.1.1.5` to test direct name resolution against the authoritative internal DNS server.
- 5Execute `netstat -ano | findstr :8443` to inspect TCP socket states and verify session establishment on the target application port.
Cevap
The correct logical execution sequence begins with local adapter configuration verification (`ipconfig /all`), followed by local gateway ICMP reachability (`ping 192.168.1.1`), then path routing analysis via destination IP (`tracert -d 10.250.32.50`), explicit DNS query resolution (`nslookup db01.corp.internal 10.1.1.5`), and concludes with transport layer socket state inspection (`netstat -ano | findstr :8443`).
Structured network troubleshooting mandates moving logically from the local host configuration outward through the network infrastructure up to higher-layer application services. Step 1 validates local interface settings (`ipconfig /all`). Step 2 tests local LAN/gateway reachability (`ping gateway`). Step 3 traces the Layer 3 path using an IP address to bypass DNS dependencies (`tracert -d IP`). Step 4 confirms domain name mapping via DNS (`nslookup FQDN DNS_IP`). Step 5 evaluates specific Layer 4 TCP port handshake and connection states (`netstat -ano`).
Adım Adım Çözüm
Anahtar Kavram
Bottom-Up and Layered CLI Diagnostic Workflow for Network Troubleshooting