An enterprise network architect is designing a Variable Length Subnet Mask (VLSM) address allocation plan starting at the base private IPv4 block . Three internal subnets must be allocated sequentially in contiguous order from the lowest available boundary:
- Subnet A (WLAN Clients): Requires at least usable host IP addresses
- Subnet B (VoIP Phones): Requires at least usable host IP addresses
- Subnet C (Management): Requires at least usable host IP addresses
If Subnet A is allocated first, followed immediately by Subnet B, and then Subnet C, what is the valid usable host IPv4 address range for Subnet C?
- 10.200.22.1 to 10.200.22.62Answer
- B10.200.22.0 to 10.200.22.63
- C10.200.20.1 to 10.200.20.62
- D10.200.21.1 to 10.200.21.62
Answer
The valid usable host IPv4 address range for Subnet C is 10.200.22.1 to 10.200.22.62.
To calculate VLSM subnets sequentially from the base block 10.200.16.0/20:
1. Subnet A requires 1,000 usable host IPs. The smallest power of 2 minus 2 that satisfies this is 2^10 - 2 = 1,022 (10 host bits, /22 prefix). Allocated block: 10.200.16.0 to 10.200.19.255.
2. Subnet B starts at 10.200.20.0 and requires 450 usable host IPs. 2^9 - 2 = 510 (9 host bits, /23 prefix). Allocated block: 10.200.20.0 to 10.200.21.255.
3. Subnet C starts at 10.200.22.0 and requires 60 usable host IPs. 2^6 - 2 = 62 (6 host bits, /26 prefix). Network ID is 10.200.22.0 and broadcast is 10.200.22.63.
Thus, the usable host range for Subnet C is 10.200.22.1 through 10.200.22.62.
1. Subnet A requires 1,000 usable host IPs. The smallest power of 2 minus 2 that satisfies this is 2^10 - 2 = 1,022 (10 host bits, /22 prefix). Allocated block: 10.200.16.0 to 10.200.19.255.
2. Subnet B starts at 10.200.20.0 and requires 450 usable host IPs. 2^9 - 2 = 510 (9 host bits, /23 prefix). Allocated block: 10.200.20.0 to 10.200.21.255.
3. Subnet C starts at 10.200.22.0 and requires 60 usable host IPs. 2^6 - 2 = 62 (6 host bits, /26 prefix). Network ID is 10.200.22.0 and broadcast is 10.200.22.63.
Thus, the usable host range for Subnet C is 10.200.22.1 through 10.200.22.62.
Step-by-Step Solution
Key Concept
Variable Length Subnet Masking (VLSM) host requirement sizing and sequential subnet boundary calculation.