Difficulty: Easy
Correct Answer: Router(config)# ip subnet-zero
Explanation:
Introduction / Context:
Older IOS releases required an explicit command to allow using the first and last subnets (so-called “subnet-zero”). Modern IOS enables it by default, but many exams still test the concept.
Given Data / Assumptions:
Concept / Approach:
Total subnets with 3 borrowed bits is 2^3 = 8. Historically, some implementations avoided using the first and last subnets. The IOS command ip subnet-zero permits their use, enabling the full count.
Step-by-Step Solution:
Verification / Alternative check:
On modern IOS, verify with show running-config or confirm addressing acceptance when configuring interfaces.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing classless routing with subnet-zero; assuming all IOS versions always use subnet-zero without checking.
Final Answer:
Router(config)# ip subnet-zero
Discussion & Comments