Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
IP routing depends on unique network identifiers so that routers can determine which interface to use for forwarding. Overlapping or duplicate subnet addresses cause ambiguous routes and traffic black holes. This principle applies equally to private and public addressing, and regardless of the routing protocol in use.
Given Data / Assumptions:
Concept / Approach:
Each routed segment must have a unique prefix (network/subnet address). Routers build forwarding entries keyed by these unique prefixes. If two segments share the same subnet address, a router cannot uniquely map destinations to the correct interface, resulting in misdelivery or dropped packets. This rule holds whether you use static routes, RIP, OSPF, EIGRP, or BGP, and whether the addresses are from private (RFC 1918) or public ranges.
Step-by-Step Solution:
Verification / Alternative check:
Labs demonstrate that overlapping subnets prevent correct ARP or route selection on multi-interface routers; renumbering to unique subnets immediately resolves the issue, validating the uniqueness requirement.
Why Other Options Are Wrong:
Common Pitfalls:
Accidentally reusing subnets across VPNs without NAT; split-horizon problems masked by NAT; forgetting to update DHCP scopes after renumbering.
Final Answer:
Correct
Discussion & Comments