๐ŸŒ Network Tools

CIDR to IP Range Generator

Convert any CIDR notation to its full IP range, network address, broadcast address, subnet mask, wildcard mask, and total host count. Single or bulk conversion โ€” instant and free.

Full range calculation
Binary view
Bulk CIDR converter
Subnet reference table
๐Ÿ”ข Enter CIDR Notation
โš ๏ธ Invalid CIDR notation. Use format: 192.168.0.0/24
Quick Examples
CIDR Subnet Mask Total IPs Usable Hosts
๐Ÿ“Š Calculation Results
๐ŸŒ

Enter a CIDR and click Calculate
to see the full IP range breakdown

๐Ÿ“– Common CIDR Blocks

  • /32 โ€” Single IP (1 host)
  • /30 โ€” 4 IPs, 2 usable hosts
  • /28 โ€” 16 IPs, 14 usable hosts
  • /24 โ€” 256 IPs, 254 usable hosts
  • /16 โ€” 65,536 IPs, 65,534 hosts
  • /8 โ€” 16.7M IPs, 16.7M hosts
  • /0 โ€” All IPv4 addresses

๐Ÿ”’ Private IP Ranges

  • 10.0.0.0/8 โ€” Class A private
  • 172.16.0.0/12 โ€” Class B private
  • 192.168.0.0/16 โ€” Class C private
  • 127.0.0.0/8 โ€” Loopback
  • 169.254.0.0/16 โ€” Link-local
  • 0.0.0.0/0 โ€” Default route (all IPs)

Frequently Asked Questions

What is CIDR notation? +
CIDR (Classless Inter-Domain Routing) notation is a compact way to represent an IP address and its associated network mask. Written as an IP address followed by a slash and prefix length โ€” for example 192.168.1.0/24. The /24 means the first 24 bits are the network portion, leaving 8 bits for host addresses โ€” giving 256 total addresses and 254 usable hosts.
How do I calculate an IP range from CIDR? +
To calculate an IP range from CIDR: (1) Convert the IP to binary. (2) Apply the subnet mask based on the prefix length. (3) The network address is the IP with all host bits set to 0. (4) The broadcast address is the IP with all host bits set to 1. (5) Usable hosts are all addresses between network and broadcast. This tool does all of this automatically.
What is the difference between /24 and /16? +
A /24 CIDR block has 256 total addresses (254 usable hosts) with subnet mask 255.255.255.0. A /16 CIDR block has 65,536 total addresses (65,534 usable hosts) with subnet mask 255.255.0.0. The smaller the prefix number, the larger the network and the more IP addresses it contains.
What is a subnet mask? +
A subnet mask is a 32-bit number that divides an IP address into a network portion and a host portion. For /24, the mask is 255.255.255.0 โ€” meaning the first 3 octets identify the network and the last octet identifies the host. Subnet masks are used by routers to determine which part of an IP address refers to the network.
What is a wildcard mask? +
A wildcard mask is the inverse of the subnet mask. Where the subnet mask has 1s in the network portion, the wildcard has 0s, and vice versa. For /24, the subnet mask is 255.255.255.0 and the wildcard mask is 0.0.0.255. Wildcard masks are commonly used in Cisco ACLs and OSPF configurations.