Match each command-line network utility invocation to its primary operational purpose during a network diagnostic workflow.
- ipconfig /flushdnsClears local Resolver Cache memory to remove outdated host-to-IP mappings.
- tracert -d host.example.comTraces the layer 3 path to a destination while suppressing hostname lookups to speed up output.
- netstat -anoLists active network sessions, open ports, numerical IP addresses, and associated process IDs.
- arp -aDisplays the local hardware address resolution table mapping IP addresses to MAC addresses.
Answer
The command 'ipconfig /flushdns' pairs with clearing the local DNS resolver cache; 'tracert -d host.example.com' pairs with tracing path hops without resolving hostnames; 'netstat -ano' pairs with displaying active network sessions, numerical ports, and process IDs; and 'arp -a' pairs with displaying the IP-to-MAC address cache table.
Each command-line utility serves a distinct diagnostic role: 'ipconfig /flushdns' clears cached DNS resolver entries; 'tracert -d' measures hop-by-hop reachability while suppressing slow reverse DNS lookups; 'netstat -ano' details active TCP/UDP connections with numerical endpoints and process IDs; and 'arp -a' displays local subnet IP-to-MAC address mappings.
Step-by-Step Solution
Key Concept
Selecting and interpreting command-line utilities and flags for network diagnostics