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:
Borrowed bits = 3 → possible subnets = 8.Enable first and last subnets by using the command to allow subnet-zero.Configuration line: Router(config)# ip subnet-zero.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