Subnet Splitter

Split a network into equal subnets, or size each one by the hosts it has to hold.

The Subnet Splitter runs entirely in your browser. Internal addressing plans are calculated on your device and never leave it.

Open the CIDR calculator

About Subnet Splitter

Carving a network into smaller ones is easy to describe and fiddly to do by hand, because every child block has to start on a boundary its own size allows. This tool does it three ways. Give it a new prefix length and it lists the equal blocks that come out. Give it a number of subnets and it rounds up to the next power of two and does the same. Or list what each department actually needs and it lays out variable length subnets largest first, which is how VLSM avoids stranding address space. Every block comes with its mask, host range, broadcast address and usable count, ready to paste into an IPAM or a change ticket.

Features

How to use the Subnet Splitter

  1. Enter the block you are dividing, such as 10.0.0.0/16
  2. Pick a new prefix, a number of subnets, or list the hosts each subnet needs
  3. Read the resulting blocks with their ranges and usable counts
  4. Copy the CIDR list or download the table as CSV

Example

Input

192.168.1.0/24 split into /26

Output

192.168.1.0/26, 192.168.1.64/26, 192.168.1.128/26, 192.168.1.192/26

Four equal blocks of 62 usable hosts each, on the boundaries a /26 is allowed to start at.

Common errors & troubleshooting

Frequently asked questions

How many subnets do I get from splitting a /24 into /26s?
Four, each with 64 addresses and 62 usable hosts. Every extra bit of prefix doubles the number of subnets and halves their size, so /25 gives two, /26 four, /27 eight and so on.
What is VLSM and when do I need it?
Variable length subnet masking gives each subnet a mask sized to its own host count rather than one mask for the whole network. It matters when your subnets differ in size — a 50-user office and a two-address router link should not both take a /24.
Why must a subnet start on a boundary?
Because the mask works by bits, not arithmetic. A /26 covers 64 addresses and its network address has to be a multiple of 64, so 192.168.1.64 is a valid start and 192.168.1.70 is not.
Can I really use a /31 for a router link?
Yes, and it is standard practice. RFC 3021 allows a /31 for point-to-point links, where both addresses are usable because there is nobody to broadcast to. It saves two addresses per link over a /30.
Does this handle IPv6 prefixes?
Not yet — the calculations here are IPv4. IPv6 subnetting rarely needs the same host-count arithmetic anyway, since the convention is to hand every segment a /64 regardless of how many devices sit on it.

Related tools

All ArrayKit tools