/15 subnet
A /15 has a subnet mask of 255.254.0.0 and 131,070 usable hosts.
The numbers
| Prefix length | /15 |
| Subnet mask | 255.254.0.0 |
| Wildcard mask | 0.1.255.255 |
| Network bits | 15 |
| Host bits | 17 |
| Total addresses | 131,072 |
| Usable hosts | 131,070 |
| /24 networks contained | 512 |
Where a /15 is used
Two adjacent /16s summarised as one route.
Why the usable count is what it is
A /15 leaves 17 bits for hosts, giving 217 = 131,072 addresses. Two of those cannot be assigned to a machine: the one with all host bits set to zero is the network address, which names the subnet itself, and the one with all host bits set to one is the broadcast address. That leaves 131,070.
Binary layout
mask 11111111.11111110.00000000.00000000
^^^^^^^^^^^^^^^
15 network bits, 17 host bits
Splitting and combining
| Prefix | Usable hosts | Relationship | |
|---|---|---|---|
| Twice the size | /14 | 262,142 | Two /15 networks combine into one /14 |
| This network | /15 | 131,070 | — |
| Half the size | /16 | 65,534 | One /15 splits into two /16 networks |
| A quarter | /17 | 32,766 | Four /17 networks fit in a /15 |
Frequently asked questions
How many hosts are in a /15?
131,072 addresses in total, of which 131,070 are usable. The first is the network address and the last is the broadcast address, so two are always lost.
What is the subnet mask for /15?
255.254.0.0. The prefix length is the count of leading 1 bits in the mask, so /15 is 15 ones followed by 17 zeros.
What is the wildcard mask for /15?
0.1.255.255 — the bitwise inverse of the subnet mask. Cisco access lists and OSPF network statements take the wildcard rather than the mask; a zero bit must match and a one bit is ignored.
How does a /15 compare to a /24?
A /15 is 512 times larger than a /24 — it contains 512 of them.