Merge subnets into one summarized route quickly. Review prefix, binary mask, broadcast, and address span. Download clean results for audits, planning, and documentation work.
| Input Blocks | Resulting Supernet | Mask | Address Range | Total Addresses |
|---|---|---|---|---|
| 10.10.0.0/24, 10.10.1.0/24, 10.10.2.0/24, 10.10.3.0/24 | 10.10.0.0/22 | 255.255.252.0 | 10.10.0.0 - 10.10.3.255 | 1,024 |
| 172.16.8.0/24, 172.16.9.0/24 | 172.16.8.0/23 | 255.255.254.0 | 172.16.8.0 - 172.16.9.255 | 512 |
| 192.168.4.0/24, 192.168.6.0/24 | 192.168.4.0/22 | 255.255.252.0 | 192.168.4.0 - 192.168.7.255 | 1,024 |
1. Convert each IPv4 address into a 32-bit integer.
2. Normalize every entry to its network base using network = IP AND subnet mask.
3. Compute each block end using broadcast = network OR wildcard mask.
4. Find the minimum start and maximum end across all input blocks.
5. Identify the highest differing bit between those two values.
6. The final supernet prefix is the count of common leading bits.
7. Total addresses use 2^(32 - prefix).
8. Wildcard mask uses 255.255.255.255 - subnet mask.
Supernetting combines multiple IPv4 networks into one larger summarized route. It is also called route aggregation or CIDR summarization. A well chosen supernet reduces routing table entries. That makes network design cleaner. It can also improve router lookup efficiency. This calculator helps you enter several CIDR blocks and find the smallest covering network. It also shows the mask, wildcard mask, broadcast address, host range, and extra address space included by the summary.
Manual supernet math takes time. You must compare binary prefixes, locate the first changed bit, and rebuild the new network mask. A calculator speeds that process. It also reduces mistakes during change windows, ISP planning, VPN design, firewall object creation, and cloud network migrations. Network teams often summarize branches, VLAN pools, lab ranges, and service blocks. A precise result helps document address strategy and supports cleaner route advertisements between sites.
The calculator normalizes each entered subnet first. Then it expands every block into a start and end address range. After that, it finds the smallest single CIDR that contains them all. You can quickly see whether the summary is exact or whether it introduces unused addresses. That distinction matters. Exact summaries are ideal for stable routing policies. Loose summaries are still useful, but they may advertise more space than the original blocks actually use.
Check that the summarized range will not hide more specific operational intent. Review overlapping routes, security rules, and NAT policies. Confirm that upstream devices should learn the broader advertisement. Keep documentation updated. Record the original blocks, resulting prefix length, subnet mask, and total address count. When you validate those details, supernetting becomes a practical way to simplify routing, improve readability, and support scalable IP address management across growing environments.
Supernetting is especially useful when branches are sequentially allocated. Consecutive /24 blocks often compress into a /23 or /22. That lowers route advertisements and simplifies troubleshooting. The calculator also exposes gaps between entered networks. Those gaps explain why some summaries include spare addresses beyond assignments today.
A supernet is a larger CIDR block that summarizes several smaller IPv4 subnets. It reduces route entries and simplifies advertisements between routers, firewalls, VPN hubs, and upstream providers.
No. It will still calculate the smallest single covering CIDR. If the inputs are not perfectly aligned, the result may include extra addresses. The notes section explains that condition.
Yes. If the bare IP option is enabled, the tool treats any plain IPv4 address as a /32 host route. You can disable that behavior if you want strict CIDR-only validation.
Exact aggregation means the final summarized route covers only the entered address space. No additional addresses are included. This usually happens when the input blocks are contiguous and align to a power-of-two boundary.
Extra addresses appear when the smallest covering CIDR must expand to the next valid binary boundary. Gaps between entered networks or uneven block sizes commonly cause this result.
No. This version is designed for IPv4 supernetting only. It uses 32-bit address math, dotted decimal masks, wildcard masks, and IPv4 broadcast calculations.
The wildcard mask is the inverse of the subnet mask. It is useful in routing filters, access control rules, and some network policy definitions that match address ranges.
Route summarization shrinks routing tables, improves readability, and reduces update noise. It also helps teams document address plans and create cleaner advertisements across large distributed networks.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.