Soru

Zorluk: OrtaUtilizing Command-Line Network Troubleshooting Utilities

A network technician is systematically troubleshooting a workstation that is unable to access an internal web portal (`app1.corp.internal`). Order the command-line network utilities in the correct logical sequence to isolate this issue, following a bottom-up methodology from local host configuration to remote transport port verification.

  1. 1Run `ipconfig /all` to verify local host IP address assignment, subnet mask, and default gateway settings.
  2. 2Run `ping 192.168.1.1` to test Layer 3 ICMP reachability to the local default gateway.
  3. 3Run `nslookup app1.corp.internal` to confirm DNS name resolution maps the FQDN to the expected destination IP (10.10.50.2010.10.50.20).
  4. 4Run `tracert 10.10.50.20` to identify intermediate router hops and locate upstream packet loss or drop points.
  5. 5Run `Test-NetConnection 10.10.50.20 -Port 443` to evaluate TCP socket state and remote application port availability.

Cevap

The correct troubleshooting sequence is: 1) `ipconfig /all` to verify local host configuration, 2) `ping` the default gateway to confirm local subnet communication, 3) `nslookup` the FQDN to confirm proper DNS resolution, 4) `tracert` the destination IP to pinpoint routing path failures, and 5) `Test-NetConnection -Port 443` to verify remote transport port availability.
A systematic bottom-up OSI troubleshooting workflow begins at Layer 1/2/3 local host configuration (`ipconfig`), moves to local network reachability (`ping` gateway), confirms DNS resolution (`nslookup`), traces path routing to the destination IP (`tracert`), and concludes with transport port verification (`Test-NetConnection`).

Adım Adım Çözüm

1
Verify local interface configuration
Confirmed IP address, subnet mask, and gateway details using `ipconfig /all`.
Troubleshooting must begin by verifying that the local node has valid network properties assigned.
2
Verify local gateway reachability
Confirmed ICMP echo reply from gateway using `ping 192.168.1.1`.
Testing the local default gateway verifies link-layer connectivity and local Layer 3 functionality.
3
Verify name resolution
Obtained resolved IP address (10.10.50.2010.10.50.20) using `nslookup app1.corp.internal`.
Name resolution must be validated to ensure subsequent path diagnostic tools target the correct IP address.
4
Analyze intermediate routing path
Evaluated hop-by-hop latency and packet reachability using `tracert 10.10.50.20`.
Tracing the route isolates upstream network layer failures along the path to the remote host.
5
Test specific transport service port
Confirmed TCP handshake on port 443 using `Test-NetConnection 10.10.50.20 -Port 443`.
Transport port checks verify that firewall policies permit traffic and the destination daemon is listening.

Anahtar Kavram

Bottom-Up Command-Line Network Troubleshooting Sequence
Bu soruyu puanla