/14 vs /16 — Subnet Comparison

A /14 subnet is larger than a /16. Every additional bit in the prefix halves the address space — the 2-bit difference between these two means /14 has 22 = 4 times as many addresses.

Total IPs 262,144
Usable Hosts 262,142
Subnet Mask 255.252.0.0
Wildcard Mask 0.3.255.255
/16

65K IPs — standard VPC or site block

Full reference →
Total IPs 65,536
Usable Hosts 65,534
Subnet Mask 255.255.0.0
Wildcard Mask 0.0.255.255

Typical Uses

  • AWS / Azure VPC or VNet CIDR
  • Enterprise campus or data centre segment
  • Docker overlay network

Key Differences

more IPs in /14 than /16
4
/16 subnets fit inside one /14
2
bits of difference in prefix length

How 4 /16 Subnets Divide a /14

Example using 10.0.0.0/14 as the parent block.

# CIDR Network First Usable Last Usable Broadcast Hosts
1 10.0.0.0/16 10.0.0.0 10.0.0.1 10.0.255.254 10.0.255.255 65,534
2 10.1.0.0/16 10.1.0.0 10.1.0.1 10.1.255.254 10.1.255.255 65,534
3 10.2.0.0/16 10.2.0.0 10.2.0.1 10.2.255.254 10.2.255.255 65,534
4 10.3.0.0/16 10.3.0.0 10.3.0.1 10.3.255.254 10.3.255.255 65,534

FAQ

What is the difference between /14 and /16?

A /14 has 262,142 usable hosts and a /16 has 65,534. The subnet masks differ: /14 uses 255.252.0.0 while /16 uses 255.255.0.0. Every additional bit in the prefix halves the number of addresses — so the 2-bit gap means /14 is exactly 4× larger.

How many /16 subnets fit in a /14?

Exactly 4 /16 subnets fit perfectly inside one /14 with no wasted space. To split a /14 into /16s, just increment the last 2 bits of the network address for each new subnet.

Which should I choose?

Choose based on how many hosts you need. Use the hosts → prefix calculator on the homepage to find the right size for your requirements.