/14 subnet
A /14 has a subnet mask of 255.252.0.0 and 262,142 usable hosts.
The numbers
| Prefix length | /14 |
| Subnet mask | 255.252.0.0 |
| Wildcard mask | 0.3.255.255 |
| Network bits | 14 |
| Host bits | 18 |
| Total addresses | 262,144 |
| Usable hosts | 262,142 |
| /24 networks contained | 1,024 |
Where a /14 is used
Occasionally an ISP allocation.
Why the usable count is what it is
A /14 leaves 18 bits for hosts, giving 218 = 262,144 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 262,142.
Binary layout
mask 11111111.11111100.00000000.00000000
^^^^^^^^^^^^^^
14 network bits, 18 host bits
Splitting and combining
| Prefix | Usable hosts | Relationship | |
|---|---|---|---|
| Twice the size | /13 | 524,286 | Two /14 networks combine into one /13 |
| This network | /14 | 262,142 | — |
| Half the size | /15 | 131,070 | One /14 splits into two /15 networks |
| A quarter | /16 | 65,534 | Four /16 networks fit in a /14 |
Frequently asked questions
How many hosts are in a /14?
262,144 addresses in total, of which 262,142 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 /14?
255.252.0.0. The prefix length is the count of leading 1 bits in the mask, so /14 is 14 ones followed by 18 zeros.
What is the wildcard mask for /14?
0.3.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 /14 compare to a /24?
A /14 is 1,024 times larger than a /24 — it contains 1,024 of them.