Last reviewed: May 2026
Every other subnet calculator tells you what a subnet is. This one tells you where the next one goes. Paste a parent block and the subnets already allocated inside it, and get every free block, where a new subnet of a given size fits, and how much space is left.
Open the full subnet calculator →Finding free space by hand is error-prone because allocations are rarely in order and often overlap. The algorithm here is the same one an IPAM system uses:
Step 5 matters: the range 10.0.4.0 – 10.0.7.255 is exactly one /22, but 10.0.4.0 – 10.0.9.255 is not a single subnet at all — it is a /22 plus a /23. The finder always returns valid, correctly aligned CIDR blocks you can paste straight into Terraform or your IPAM.
A block can be only 40 % utilised and still have nowhere to put a /20. If allocations are scattered, the free space is chopped into small pieces and the largest usable block may be far smaller than the total free count suggests. That is why this tool reports largest free block next to total free addresses — the two together tell you whether you need to re-plan before you run out.
List every subnet already allocated inside the parent block, sort them by starting address, merge any that overlap or touch, then read off the gaps between them. Each gap is then broken into the largest CIDR-aligned blocks that fit. This tool does all of that automatically — paste the parent block and your allocations and it returns every free block.
A new /24 can start at any free address that is a multiple of 256 and has 256 consecutive free addresses after it. Enter your VPC CIDR and existing subnets, then set the wanted size to /24 — the finder lists every valid starting address, with the first-fit option highlighted.
Utilisation is the share of a parent block's addresses that have already been allocated to subnets. Tracking it prevents you from exhausting a VPC or site range unexpectedly. High utilisation combined with a small largest-free-block means the space is fragmented and may need re-planning even though addresses remain.