Difficulty: Easy
Correct Answer: /30
Explanation:
Introduction / Context:
When you design an IPv4 network using Variable Length Subnet Masking (VLSM), you want to allocate just enough addresses for each segment. Point-to-point WAN links connect exactly two endpoints, so they need the smallest subnet that still supports two usable host addresses and standard routing behavior. Choosing the right mask reduces address waste and simplifies documentation.
Given Data / Assumptions:
Concept / Approach:
Each IPv4 subnet historically reserves two addresses: the network ID and the directed broadcast. A /30 network (mask 255.255.255.252) has 4 total addresses: 1 network, 2 hosts, 1 broadcast. This perfectly fits a two-endpoint link. While /31 (255.255.255.254) can be used on many modern routers for point-to-point links, traditional interoperability and some exam objectives assume /30 for two usable hosts plus broadcast semantics.
Step-by-Step Solution:
Verification / Alternative check:
Calculate usable hosts by formula: usable_hosts = 2^(32 - prefix) - 2. For /30, usable_hosts = 2^(2) - 2 = 2. This matches the requirement for a two-node link. Field deployments confirm /30s are standard on serial links across vendors.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
/30
Discussion & Comments