Enter an IPv4 address and a CIDR prefix to see exactly how the subnet mask splits it into a network portion and a host portion — updated live as you type or drag.
Subnetting matters because it lets one large address block be broken into smaller, independently routable pieces. A company with a /16 allocation (65,536 addresses) can hand a /24 (256 addresses) to each office instead of wasting the whole block on a single location.
Defined by RFC 1918 and others. You'll run into these constantly in the calculator above.
| Range | CIDR | Typical use |
|---|---|---|
| 10.0.0.0 – 10.255.255.255 | 10.0.0.0/8 | Large private networks (common in enterprises and clouds) |
| 172.16.0.0 – 172.31.255.255 | 172.16.0.0/12 | Private networks (Docker's default bridge network) |
| 192.168.0.0 – 192.168.255.255 | 192.168.0.0/16 | Private networks (most home routers) |
| 127.0.0.0 – 127.255.255.255 | 127.0.0.0/8 | Loopback (127.0.0.1 = localhost) |
| 169.254.0.0 – 169.254.255.255 | 169.254.0.0/16 | Link-local (APIPA), self-assigned when DHCP fails |
| 224.0.0.0 – 239.255.255.255 | 224.0.0.0/4 | Multicast (one-to-many delivery) |