Tested tool guide
Tested browser tools
Checked August 15, 2026
What CIDR Calculator does, with a checked example
CIDR notation packs a network address and prefix length into one string, like 192.168.1.0/24, and this calculator expands that shorthand into the numbers you actually need: the dotted-decimal subnet mask, the network and broadcast addresses, the first and last usable host, and the total address count for the block. Enter either a CIDR string or an address paired with a mask and it converts between the two. The detail people trip over most: type a host address that isn't already the start of its block and the tool rounds down to the enclosing network rather than treating your address as special.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
Network address: 10.20.30.32, Broadcast address: 10.20.30.63, Subnet mask: 255.255.255.224, Usable host range: 10.20.30.33 - 10.20.30.62, Total addresses: 32, Usable hosts: 30
A /27 leaves 5 host bits, so each block spans 32 addresses starting on multiples of 32; 40 falls between 32 and 63, so the tool reports that block's network (.32) and broadcast (.63), leaving 30 usable addresses in between.