| CIDR | Subnet Mask | Hosts |
|---|---|---|
| /8 | 255.0.0.0 | 16,777,214 |
| /16 | 255.255.0.0 | 65,534 |
| /24 | 255.255.255.0 | 254 |
| /25 | 255.255.255.128 | 126 |
| /26 | 255.255.255.192 | 62 |
| /27 | 255.255.255.224 | 30 |
| /28 | 255.255.255.240 | 14 |
| /29 | 255.255.255.248 | 6 |
| /30 | 255.255.255.252 | 2 |
Subnet information will appear here
Enter a CIDR address and click Calculate192.168.1.0/24/allEvery coffee helps keep the servers running. Every book sale funds the next tool I'm dreaming up. You're not just supporting a site — you're helping me build what developers actually need.
Subnetting is the practice of dividing a network into smaller, more manageable sub-networks (subnets). This improves network performance, security, and simplifies administration. Each subnet has its own network address, broadcast address, and range of usable host addresses.
CIDR (Classless Inter-Domain Routing) notation combines an IP address with its subnet mask in a compact format: 192.168.1.0/24. The number after the slash indicates how many bits are used for the network portion (prefix length).
The first address in a subnet, where all host bits are 0. It identifies the network itself and cannot be assigned to a host.
The last address in a subnet, where all host bits are 1. Packets sent here reach all hosts on the subnet.
| Range | CIDR | Addresses | Typical Use |
|---|---|---|---|
| 10.0.0.0 - 10.255.255.255 | 10.0.0.0/8 | 16,777,216 | Large enterprises, data centers |
| 172.16.0.0 - 172.31.255.255 | 172.16.0.0/12 | 1,048,576 | Medium organizations |
| 192.168.0.0 - 192.168.255.255 | 192.168.0.0/16 | 65,536 | Home networks, small offices |