Supernetting
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://ipfyi.com/iframe/glossary/supernetting/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://ipfyi.com/glossary/supernetting/
Add a dynamic SVG badge to your README or docs.
[](https://ipfyi.com/glossary/supernetting/)
Use the native HTML custom element.
Definisi
Proses menggabungkan beberapa subnet bersebelahan menjadi satu prefiks jaringan yang lebih besar, juga dikenal sebagai agregasi atau summarisasi rute. Supernetting mengurangi ukuran tabel routing dan meningkatkan efisiensi routing.
Aggregating Routes with Supernetting
Supernetting — also called route summarization or CIDRClassless Inter-Domain Routing. A method of allocating IP addresses using variable-length subnet masking (e.g., 10.0.0.0/8) instead of fixed classful boundaries, enabling more efficient use of the IPv4 address space. aggregation — is the opposite of subnetting: instead of dividing a large block into smaller ones, you combine multiple contiguous smaller blocks into a single, shorter-prefix advertisement. For example, four contiguous /24 networks (192.168.0.0 through 192.168.3.0) can be summarized as a single 192.168.0.0/22 route advertisement, reducing the number of entries in routing tablesA data structure stored in a router that lists known network destinations and the next hop or interface for reaching each one. Routing tables are populated by static configuration or dynamic routing protocols like BGP and OSPF. across the internet.
Benefits for BGP and IGPs
In BGPBorder Gateway Protocol. The routing protocol that exchanges reachability information between autonomous systems, effectively determining how data traverses the internet. Often called the "postal service of the internet.", supernetting is essential for keeping the global routing table manageable. ISPsInternet Service Provider. A company that provides internet access to consumers and businesses, assigning public IP addresses and routing traffic to the wider internet. Examples include Comcast, AT&T, and SK Broadband. aggregate their customer prefixes before announcing them to peers, preventing the table from growing to millions of specific entries. Within enterprise networks, summarization at distribution-layer routers reduces the route count that core devices must process, lowers convergence time after link failures, and contains the blast radius of instability in one part of the network.
Requirements and Pitfalls
Supernetting only works cleanly when the constituent networks are contiguous and fall on a binary boundary — the summarized prefix must cover exactly those networks and no others. Summarizing discontiguous blocks introduces black-holing: traffic destined for addresses within the supernet but not actually reachable gets attracted by the aggregate and dropped. Always verify with a CIDRClassless Inter-Domain Routing. A method of allocating IP addresses using variable-length subnet masking (e.g., 10.0.0.0/8) instead of fixed classful boundaries, enabling more efficient use of the IPv4 address space. calculator before deploying summarization in production. CIDR Aggregator