Use public and private ranges, special addresses, CIDR, VLSM, and IPv6 addressing logic in design and support questions.
Subnetting is one of the highest-leverage Network+ topics because it shows up in design, routing, DHCP scope planning, and troubleshooting. CompTIA is not just checking whether you can recite a prefix length. It is checking whether you can read an address plan, recognize which hosts belong together, and spot when the mask, range, or gateway assumption is what is breaking the network.
APIPA: Automatic Private IP Addressing in the
169.254.0.0/16range when a host cannot reach DHCP.VLSM: Variable-length subnet masking, using different prefix lengths inside the same larger address space so the design fits the host counts more efficiently.
The real exam move is usually one of these:
| Question type | What to decide first |
|---|---|
| host cannot reach anything | valid IP, valid mask, valid gateway |
| host reaches local devices but not remote ones | likely gateway or routing, not DNS |
| two devices should talk directly | same subnet or routed path required |
| design asks for efficient address use | host count first, then prefix |
| IPv6 question mentions router advertisements | SLAAC and prefix behavior matter |
| Range type | Examples | Why it matters |
|---|---|---|
| private | 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16 |
internal addressing that normally needs routing or NAT at the edge |
| loopback | 127.0.0.0/8 |
host self-test, not real network reachability |
| link-local / APIPA | 169.254.0.0/16 |
often signals DHCP failure on IPv4 |
| public | everything not reserved/private | routable on the internet when allowed and advertised |
Worked example:
1Need: about 50 hosts
2/27 gives 32 total addresses -> too small
3/26 gives 64 total addresses -> 62 usable hosts
4
5Example subnet: 192.168.10.64/26
6Network: 192.168.10.64
7Usable: 192.168.10.65 - 192.168.10.126
8Broadcast: 192.168.10.127
9Gateway: choose one usable address, for example 192.168.10.65
What to notice:
Network+ does not expect deep IPv6 theory. It expects operational clarity:
Continue with 2. Network Implementation if your subnetting logic is solid, or revisit 1.4 Ports, Protocols, Services & Application Flows if address and service behavior are still blurring together.