Difficulty: Medium
Correct Answer: 2,113,662
Explanation:
Introduction:
Older, classful IPv4 splits addresses into Classes A, B, and C based on the first octet. A common exam calculation asks for the total number of distinct network IDs available across these three classes, applying standard historical conventions (excluding loopback and the zero network).
Given Data / Assumptions:
Concept / Approach:
Compute the number of network IDs in each class and sum them. For classful addressing, the count is strictly positional based on fixed leading bits in the first octet (A: 0xxxxxxx excluding 0 and 127; B: 10xxxxxx; C: 110xxxxx).
Step-by-Step Solution:
Verification / Alternative check:
Binary prefixes (A: 0, B: 10, C: 110) yield the same totals when expanded over the subsequent octets dedicated to network ID within each class.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing host capacity with the number of networks; excluding additional ranges beyond loopback and zero; or including Class D/E, which are not unicast network-ID pools.
Final Answer:
2,113,662 classful network IDs in A + B + C.
Discussion & Comments