![]() |
VOOZH | about |
Supernetting is the opposite of subnetting. While subnetting splits a large network into smaller subnets, supernetting combines multiple smaller networks with similar prefixes into a larger network (supernet). It reduces routing table size, simplifies routing, and optimizes IP address usage, primarily through route summarization.
Example: Combining Four Class C Networks
Consider Networks:
200.1.0.0,
200.1.1.0,
200.1.2.0,
200.1.3.0
Original Routing Table:
| Network Id | Subnet Mask | Interface |
|---|---|---|
| 200.1.0.0 | 255.255.255.0 | A |
| 200.1.1.0 | 255.255.255.0 | B |
| 200.1.2.0 | 255.255.255.0 | C |
| 200.1.3.0 | 255.255.255.0 | D |
First, let's check whether three conditions are satisfied or not:
1. Contiguous Networks
200.1.0.0 – 200.1.0.255 is the first network.200.1.0.255 + 1 = 200.1.1.0) to get the next network.2. Equal Network Size
/24).3. First IP Aligns with Supernet Size
In the given example first IP is 200.1.0.0 and whole size of supernet is 4*28 = 210. If last 10 bits of first IP address are zero then IP will be divisible.
Last 10 bits of first IP address are zero (highlighted by green color). All conditions are satisfied, so these four networks can be combined into one supernet.