Difficulty: Easy
Correct Answer: Resolves computer names to IP addresses
Explanation:
Introduction / Context:
Before widespread DNS-only environments, Windows networks frequently relied on NetBIOS names (for example, \SERVER). Windows Internet Name Service (WINS) provided a server-based, query/registration mechanism to map those NetBIOS names to IP addresses, reducing broadcast dependency and improving name-resolution reliability across routed networks.
Given Data / Assumptions:
Concept / Approach:
WINS provides a centralized database for NetBIOS-name → IP-address mappings. Clients dynamically register their names and addresses with WINS, and other clients query WINS to resolve names. This reduces the need for NetBIOS broadcast name queries, especially across subnets where broadcasts would not traverse routers. DHCP handles IP address allocation; WINS is about name resolution, not addressing.
Step-by-Step Solution:
Verification / Alternative check:
Packet captures show NetBIOS Name Service (NBNS) unicast queries to WINS servers and registration packets on startup, confirming its resolver role rather than address assignment.
Why Other Options Are Wrong:
Dynamically allocates IPs: That is DHCP, not WINS.
Runs only on NT Workstation: WINS is a server service; historically installed on Windows NT Server.
Increases broadcast traffic: WINS reduces broadcast traffic by enabling unicast name resolution.
None of the above: Incorrect because one option is correct.
Common Pitfalls:
Conflating WINS with DNS or DHCP; assuming NetBIOS names are resolved via DNS without additional configuration.
Final Answer:
Resolves computer names to IP addresses
Discussion & Comments