Difficulty: Medium
Correct Answer: 192.168.10.30
Explanation:
Introduction / Context:
Subnetting questions often test your ability to enumerate ranges and pick boundary addresses accurately. Here you are given a Class C–like network with a /28 mask and a constraint that the zero subnet (the first numerically) is not valid. You must identify the first valid subnet's range and then choose the last usable host address within that range for the S0 interface.
Given Data / Assumptions:
Concept / Approach:
/28 corresponds to a mask of 255.255.255.240. The block size is 16 in the last octet (since 256 - 240 = 16). Subnets increment by 16: .0, .16, .32, .48, … Each /28 provides 16 addresses: 1 network, 14 usable hosts, 1 broadcast. If the zero subnet .0/28 is disallowed, the first valid subnet is .16/28 whose usable range is .17 through .30, with .31 as broadcast.
Step-by-Step Solution:
Verification / Alternative check:
Confirm broadcast of the .16/28 subnet is .31 by formula: last address in the block (16 + 15 = 31). Therefore the last usable host is one less than broadcast, .30. A quick ping sweep or lab test will validate reachability assignments within the .17–.30 span.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
192.168.10.30
Discussion & Comments