Supernetting in Network Layer (original) (raw)

Last Updated : 1 Oct, 2025

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.

Benefits of Supernetting:

Important Points for Supernetting

**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

**2. Equal Network Size

**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.

Supernet example

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.

**Advantages of Supernetting