Subnet Splitter

Split any CIDR range into equal-sized subnets. Specify the base network and either a target prefix or the number of subnets you need.

Split Configuration

Quick splits:

10.0.0.0/24 split into 4 × /26 subnets

4 subnets62 usable hosts each
#CIDRNetworkBroadcastMaskHost RangeUsableTotal
110.0.0.0/2610.0.0.010.0.0.63255.255.255.19210.0.0.1 – 10.0.0.626264
210.0.0.64/2610.0.0.6410.0.0.127255.255.255.19210.0.0.65 – 10.0.0.1266264
310.0.0.128/2610.0.0.12810.0.0.191255.255.255.19210.0.0.129 – 10.0.0.1906264
410.0.0.192/2610.0.0.19210.0.0.255255.255.255.19210.0.0.193 – 10.0.0.2546264

How Subnet Splitting Works

Subnet splitting is the process of dividing a larger CIDR block into multiple smaller, equal-sized subnets. When you split a network, you borrow bits from the host portion to create additional network bits. Each borrowed bit doubles the number of subnets you can create. For example, borrowing 2 host bits divides a /24 into 4 × /26 subnets (2² = 4), borrowing 3 bits produces 8 × /27 subnets (2³ = 8), and borrowing 4 bits produces 16 × /28 subnets (2⁴ = 16). The relationship is exponential: each additional bit doubles the subnet count but halves the number of hosts per subnet.

Subnet splitting is one of the most common tasks in network design. When planning an IP addressing scheme, you typically start with a larger allocation — such as a /16 from your address planning authority or a /24 from your IT department — and divide it into smaller segments for different departments, VLANs, or geographic locations. Understanding how to split subnets efficiently ensures that you minimize wasted address space while leaving room for growth. For cloud architects, this is particularly important when designing VPC subnets across multiple availability zones, where you need predictable, non-overlapping CIDR blocks.

Our Subnet Splitter takes any valid IPv4 CIDR and divides it into equal-sized subnets based on your requirements. You can specify either the target prefix length (the size of each resulting subnet) or the number of subnets you need — the tool calculates the other automatically and shows you the complete split table. Each subnet row includes the network address, broadcast address, subnet mask, usable host range, and total host count. All subnets are guaranteed to be contiguous and non-overlapping, forming a complete partition of the original CIDR block. Use this tool for VPC subnet planning, IP address management (IPAM), DHCP scope design, and any scenario where you need to carve a large network into predictable, equal-sized pieces.