Difficulty: Easy
Correct Answer: LMHOSTS
Explanation:
Introduction / Context:
NetBIOS name resolution predates widespread DNS use in Windows environments and is still relevant in legacy or isolated networks. Two similar-sounding files can cause confusion: HOSTS and LMHOSTS. This item distinguishes their roles.
Given Data / Assumptions:
Concept / Approach:
LMHOSTS provides static mappings of NetBIOS names to IP addresses. HOSTS maps DNS hostnames to IP addresses. ARP is a runtime cache/protocol, not a config file. FQDN is a naming format, not a file.
Step-by-Step Solution:
Identify that the naming system is NetBIOS, not DNS.Recall the specific static mapping file: LMHOSTS.Confirm other options do not satisfy NetBIOS static mapping.
Verification / Alternative check:
Windows documentation shows lmhosts.sam as the sample, with entries like “IPaddr NETBIOSNAME”. HOSTS is used for DNS queries only.
Why Other Options Are Wrong:
HOSTS: For DNS hostnames, not NetBIOS.
Common Pitfalls:
Assuming HOSTS also covers NetBIOS; it does not. NetBIOS name resolution uses LMHOSTS, WINS, or broadcast.
Final Answer:
LMHOSTS
Discussion & Comments