What is Supernetting and why is it used?
Supernetting is the process of combining multiple smaller networks into one single larger summary route. The main reason engineers use it is to shrink routing tables — a smaller routing table means routers use less memory, make faster forwarding decisions, and generate less traffic when sharing routing information. It is especially common in large ISP and enterprise networks.
What is the difference between Total Usable Host and Total Available Host?
Total Usable Host is the number of addresses assignable to devices in the summary block — calculated as 2(32−prefix) − 2, subtracting the network and broadcast address. Total Available Host is the full block size — 2(32−prefix) — counting all addresses including those two reserved ones. For a /22 summary: Total Usable Host = 1,022, Total Available Host = 1,024.
What is the difference between Supernetting and Subnetting?
They are opposite operations. Subnetting starts with one large network and breaks it into smaller pieces — for example splitting a /24 into four /26 subnets. Supernetting does the reverse — it takes multiple smaller networks and combines them into one larger summary — for example merging four /24 networks into a single /22. Subnetting divides; supernetting combines.
What does contiguous mean and why does it matter?
Contiguous means the networks must sit right next to each other in the address space with no gaps. If there is a gap, the summary route would have to stretch further than intended to cover both sides — pulling in addresses that do not belong to you. The calculator automatically checks for this and will show an error if your networks are not contiguous.
Why do I need to summarize a power of 2 number of networks?
All IP address blocks work in powers of 2 — every step up in prefix length doubles the block size. Clean summaries can only be made from groups of 2, 4, 8, 16, or 32 networks. If you try to summarize 3 networks, there is no single prefix that covers exactly 3 — the nearest option covers 4, so the summary will always include one extra block you did not intend.
What is over-summarization and how do I avoid it?
Over-summarization happens when your summary route accidentally covers more addresses than you own or intend to advertise. It occurs when your group does not start at the correct boundary. To avoid it, make sure the first network in your group starts at an address evenly divisible by the total block size you are summarizing.
What format do I use to enter networks?
Enter each network in standard CIDR format — the network address followed by a forward slash and the prefix length, for example 192.168.0.0/24. Put each network on its own line. You must enter at least two networks. You do not need to sort them — the calculator arranges them automatically.
Can I summarize networks with different prefix lengths?
Yes, the calculator accepts networks with different prefix lengths. However, getting a clean and accurate summary becomes much harder when block sizes differ because boundaries rarely align perfectly. In practice, most real-world summarization uses networks of the same size — all /24s or all /25s — because they naturally align at the correct boundaries.
What is the Individual Networks table in the results?
After the summary route is calculated, the Individual Networks table shows a breakdown of every network you entered — its own network address, usable host range, broadcast, netmask, and wildcard. This is useful for double-checking that all input networks are correctly included inside the summary, and for keeping a record of the individual routes the summary is replacing.