A network administrator is providing step-by-step guidance to a tier-1 help desk technician troubleshooting various Windows 11 client connectivity issues. Match each client networking configuration or diagnostic requirement on the left with the correct Windows command-line utility or switch sequence on the right.
- Purging stale host-name-to-IP-address resolution entries stored in the local client memory after a server IP migration.ipconfig /flushdns
- Measuring packet loss and latency at each intermediate router hop over a sustained time interval to pinpoint WAN congestion.pathping
- Re-registering and refreshing all NetBIOS name registrations for the local client with a designated WINS server.nbtstat -RR
- Forfeiting the existing IPv4 lease parameters and immediately requesting a updated configuration from the local DHCP server.ipconfig /release followed by ipconfig /renew
Answer
The correct matching pairs connect each Windows network troubleshooting objective to its exact command-line tool: purging stale local DNS records pairs with 'ipconfig /flushdns'; measuring per-hop latency and packet loss over time pairs with 'pathping'; re-registering NetBIOS names with WINS pairs with 'nbtstat -RR'; and releasing and requesting a new IPv4 lease pairs with 'ipconfig /release followed by ipconfig /renew'.
Matching each network utility to its precise functional capability ensures effective client-side network management: 'ipconfig /flushdns' clears local cached DNS lookup results; 'pathping' conducts statistical analysis of packet loss at intermediate routers; 'nbtstat -RR' forces NetBIOS name renewal with WINS servers; and the 'ipconfig /release' and '/renew' sequence manages DHCP lease lifecycles.
Step-by-Step Solution
Key Concept
Windows Client Network Troubleshooting Command Utilities and Switches