Difficulty: Easy
Correct Answer: IPCONFIG/ALL
Explanation:
Introduction:
Verifying TCP/IP configuration on Windows is a routine administrative task. Command-line tools provide authoritative, detailed views beyond what basic dialogs display. The question asks which method definitively shows the active configuration and related parameters on the host.
Given Data / Assumptions:
Concept / Approach:
The IPCONFIG tool (run as ipconfig /all
) enumerates all interfaces and shows IP address, mask, gateway, DNS, WINS (legacy), MAC, DHCP status, DHCP server, lease times, and more. It is widely used for both static and DHCP configurations.
Step-by-Step Solution:
ipconfig /all
as the comprehensive Windows CLI utility.3) Prefer a CLI snapshot over partial GUI views when certainty is required.
Verification / Alternative check:
Administrators routinely request “send ipconfig /all output” during troubleshooting because it is authoritative and standardized across Windows versions.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing Windows with Unix/Linux tools (e.g., ifconfig
, ip
); relying on cached GUI panes that do not reflect the current state.
Final Answer:
IPCONFIG/ALL.
Discussion & Comments