CIDR to IP Range Calculator

Convert CIDR notation to its corresponding IP address range, including network address, broadcast address, and usable host range.

Understanding CIDR to IP Range Conversion

CIDR notation compactly represents an IP address and its associated network mask. Converting CIDR to an IP range helps network administrators understand the complete address space available in a subnet.

CIDR Conversion Components

Component Description Example (192.168.1.0/24)
Network Address First address in the range 192.168.1.0
Broadcast Address Last address in the range 192.168.1.255
Usable Host Range Addresses assignable to devices 192.168.1.1 - 192.168.1.254
Subnet Mask Defines network portion 255.255.255.0
Wildcard Mask Inverse of subnet mask 0.0.0.255

Common CIDR Block Sizes

CIDR Subnet Mask Usable Hosts Typical Use
/30 255.255.255.252 2 Point-to-point links
/29 255.255.255.248 6 Small networks
/28 255.255.255.240 14 Small offices
/24 255.255.255.0 254 Small LANs
/23 255.255.254.0 510 Medium networks
/22 255.255.252.0 1,022 Large networks
/16 255.255.0.0 65,534 Enterprise networks

Frequently Asked Questions

How do I calculate the IP range from a CIDR?

To calculate the IP range from a CIDR notation:

  1. Determine the network address (first address in the range)
  2. Calculate the broadcast address (last address in the range)
  3. The usable host range is all addresses between network and broadcast
  4. For a CIDR like 192.168.1.0/24:
    • Network: 192.168.1.0
    • Broadcast: 192.168.1.255
    • Usable: 192.168.1.1 - 192.168.1.254

What's the difference between /32 and /31 CIDR blocks?

/32 represents a single host address (no usable hosts), while /31 is a special case used for point-to-point links that has no network or broadcast addresses (both addresses are usable).

How do I calculate the subnet mask from CIDR notation?

The subnet mask can be derived by setting the first N bits (where N is the CIDR number) to 1 and the remaining to 0. For example:

  • /24 = 255.255.255.0 (24 ones followed by 8 zeros)
  • /20 = 255.255.240.0 (20 ones followed by 12 zeros)

What is a wildcard mask?

A wildcard mask is the inverse of a subnet mask, used in access control lists (ACLs) and routing protocols. It identifies which bits in an IP address should be matched (0) and which can vary (1).

How many usable IPs are in a /28 network?

A /28 network has 16 total addresses (2^(32-28)), with 14 usable hosts (subtracting network and broadcast addresses).

Can I use the first and last addresses in a subnet?

Typically no - the first address is the network identifier and the last is the broadcast address. However, in /31 networks (point-to-point links), both addresses are usable.

How do I determine if two IPs are in the same subnet?

Compare the network portions of the IPs using the subnet mask. If the network addresses match, they're in the same subnet.

What's the largest CIDR block I can use?

The smallest CIDR is /0 (all IPs) and the largest is /32 (single host). Practical limits depend on your network requirements.

CIDR Calculation Examples

CIDR IP Range Usable Hosts
10.0.0.0/8 10.0.0.0 - 10.255.255.255 16,777,214
172.16.0.0/12 172.16.0.0 - 172.31.255.255 1,048,574
192.168.0.0/16 192.168.0.0 - 192.168.255.255 65,534
192.168.1.0/24 192.168.1.0 - 192.168.1.255 254
192.168.1.0/30 192.168.1.0 - 192.168.1.3 2