Difficulty: Medium
Correct Answer: The wildcard mask is incorrect.
Explanation:
Introduction / Context:This question evaluates understanding of OSPF configuration syntax and the distinction between subnet masks and wildcard masks. OSPF requires a wildcard mask, not a standard subnet mask, when configuring networks under the routing process.
Given Data / Assumptions:
Concept / Approach:The “network” command in OSPF uses a wildcard mask, which is the inverse of a subnet mask. For network 10.0.0.0/8, the subnet mask is 255.0.0.0 but the wildcard mask should be 0.255.255.255.
Step-by-Step Solution:
Entered mask = 255.0.0.0 (interpreted as wildcard).OSPF expects 0.255.255.255 for network 10.0.0.0/8.Because of incorrect wildcard, OSPF fails to match any interfaces.Correct configuration: network 10.0.0.0 0.255.255.255 area 0.Verification / Alternative check:Run show ip ospf interface to see if interfaces are participating. With wrong wildcard mask, no interfaces will appear under OSPF.
Why Other Options Are Wrong:
Common Pitfalls:Confusing wildcard mask with subnet mask; forgetting that OSPF requires inverse masks.
Final Answer:The wildcard mask is incorrect.
Discussion & Comments