Match each Windows command-line networking tool to its primary configuration or diagnostic function.
- ipconfig /flushdnsClears and resets the contents of the client DNS resolver cache.
- pingTests network-level reachability to a remote host using ICMP echo requests.
- nslookupQueries DNS servers directly to verify hostname-to-IP resolution records.
- netshModifies network interface parameters and local Windows Firewall rules.
Answer
ipconfig /flushdns matches with clearing the DNS resolver cache; ping matches with testing network reachability using ICMP; nslookup matches with querying DNS servers directly; netsh matches with modifying interface and firewall settings.
Each utility is paired correctly according to native Windows CLI behavior: ipconfig /flushdns purges local DNS cache entries, ping verifies IP reachability via ICMP, nslookup inspects DNS server resource records directly, and netsh modifies interface options and security contexts.
Step-by-Step Solution
Key Concept
Windows Command-Line Networking Diagnostics
Estimated Time:45s