Match each command-line troubleshooting utility syntax with its precise diagnostic objective during complex network failure isolation.
- netstat -anoDisplays active TCP connections and listening ports along with numerical IP addresses and associated process IDs to identify socket bindings.
- pathping -n 192.168.1.254Evaluates hop-by-hop latency and packet loss statistics over time without performing host name resolution for intermediate routers.
- dig +trace example.comPerforms iterative DNS queries starting from root servers down to authoritative name servers to isolate DNS delegation path failures.
- arp -aInspects the local system hardware address resolution cache to verify Layer 2 MAC-to-IPv4 address bindings for the default gateway.
Cevap
Matching summary: `netstat -ano` correlates active network sockets to process IDs; `pathping -n 192.168.1.254` measures path statistics over time while suppressing intermediate host name lookups; `dig +trace example.com` tracks iterative DNS delegation from root to authoritative servers; and `arp -a` views local Layer 2 MAC-to-IP address resolution bindings.
Each command-line utility is correctly paired to its specific diagnostic layer and functional flag set: `netstat -ano` correlates network ports and sockets to process IDs; `pathping -n` computes packet loss across network hops over time without waiting for reverse DNS lookups; `dig +trace` follows the hierarchical DNS query path from root name servers; and `arp -a` displays the local host's hardware address resolution table.
Adım Adım Çözüm
Anahtar Kavram
Command-Line Diagnostic Utilities, Syntax Switches, and OSI Layer Operational Scopes