Question

Difficulty: EasyWindows Client Networking Configuration

A help desk technician is performing initial troubleshooting on a Windows 11 client workstation experiencing network issues. Match each Windows networking CLI utility or command to its correct diagnostic function.

  • ipconfig /allDisplays detailed TCP/IP configuration settings, including MAC address, DHCP server, and DNS server addresses.
  • pingTests network reachability to a remote host using ICMP Echo Request messages.
  • nslookupQueries DNS infrastructure to verify domain name resolution and inspect DNS resource records.
  • netsh wlan show profilesLists saved wireless network connection profiles configured on the Windows client.

Answer

Matching pairs:
- ipconfig /all matches: Displays detailed TCP/IP configuration settings, including MAC address, DHCP server, and DNS server addresses.
- ping matches: Tests network reachability to a remote host using ICMP Echo Request messages.
- nslookup matches: Queries DNS infrastructure to verify domain name resolution and inspect DNS resource records.
- netsh wlan show profiles matches: Lists saved wireless network connection profiles configured on the Windows client.
Each command corresponds directly to its standard function on a Windows client: `ipconfig /all` enumerates complete TCP/IP and adapter properties; `ping` verifies ICMP reachability; `nslookup` queries DNS infrastructure; and `netsh wlan show profiles` inspects saved wireless network profiles.

Step-by-Step Solution

1
Identify the purpose of ipconfig /all.
Recognize that ipconfig /all outputs comprehensive network interface details including MAC addresses and active network services.
Used when full adapter information beyond basic IP/subnet is required.
2
Identify the purpose of ping.
Associate ping with testing basic point-to-point IP communication via ICMP.
Verifies network-layer reachability between the client and a specified node.
3
Identify the purpose of nslookup.
Associate nslookup with inspecting name resolution.
Directly queries configured or specified DNS servers for record verification.
4
Identify the purpose of netsh wlan show profiles.
Associate netsh wlan commands with wireless interface management.
Displays configured wireless network profiles stored in Windows.

Key Concept

Windows Client Network Diagnostic CLI Utilities
Rate this question