/10 subnet
A /10 has a subnet mask of 255.192.0.0 and 4,194,302 usable hosts.
The numbers
| Prefix length | /10 |
| Subnet mask | 255.192.0.0 |
| Wildcard mask | 0.63.255.255 |
| Network bits | 10 |
| Host bits | 22 |
| Total addresses | 4,194,304 |
| Usable hosts | 4,194,302 |
| /24 networks contained | 16,384 |
Where a /10 is used
The size of the carrier-grade NAT block 100.64.0.0/10, which is what your address is in if a mobile network hands you something starting 100.64 to 100.127.
Why the usable count is what it is
A /10 leaves 22 bits for hosts, giving 222 = 4,194,304 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 4,194,302.
Binary layout
mask 11111111.11000000.00000000.00000000
^^^^^^^^^^
10 network bits, 22 host bits
Splitting and combining
| Prefix | Usable hosts | Relationship | |
|---|---|---|---|
| Twice the size | /9 | 8,388,606 | Two /10 networks combine into one /9 |
| This network | /10 | 4,194,302 | — |
| Half the size | /11 | 2,097,150 | One /10 splits into two /11 networks |
| A quarter | /12 | 1,048,574 | Four /12 networks fit in a /10 |
Frequently asked questions
How many hosts are in a /10?
4,194,304 addresses in total, of which 4,194,302 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 /10?
255.192.0.0. The prefix length is the count of leading 1 bits in the mask, so /10 is 10 ones followed by 22 zeros.
What is the wildcard mask for /10?
0.63.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 /10 compare to a /24?
A /10 is 16,384 times larger than a /24 — it contains 16,384 of them.