Hands-On Lab: EIGRP Automatic Summarization

This hands-on lab enables EIGRP's legacy automatic summarization feature on a router with discontiguous subnets, observing the routing problem it creates, then disables it to restore correct connectivity.

EIGRP Auto-SummaryDiscontiguous NetworksClassful Boundary Summarization

~3 min read · Updated Sep 22, 2026

Lab Objective

Enable EIGRP's automatic summarization feature on a router connecting two discontiguous subnets of the same classful network, observe the resulting routing failure, then disable auto-summary to restore correct connectivity.

Lab Purpose

Earlier labs in this series have consistently disabled auto-summary as a matter of course. This lab deliberately enables it to make concrete exactly why that practice exists — auto-summary can cause serious, hard-to-diagnose routing failures in any topology with discontiguous subnets of the same major network.

Lab Topology

R1 ---- Serial0/0/0 ---- R2 ---- Serial0/0/1 ---- R3

R1's LAN: 10.1.1.0/24
R2-R3 link: 10.99.99.0/30 (a different major
             network entirely, to isolate the
             discontiguous-subnet effect)
R3's LAN: 10.2.2.0/24

Both R1's LAN and R3's LAN belong to the same
classful network (10.0.0.0/8), but are
separated by the 10.99.99.0/30 link in between

Task 1: Configure Basic Addressing and EIGRP

Configure all interfaces and enable EIGRP AS 100 on all three routers, leaving auto-summary at its default enabled state.

Task 2: Observe the Resulting Routing Table

Examine R1's routing table and identify the problem caused by auto-summary.

Task 3: Test Connectivity

Attempt to ping from R1's LAN to R3's LAN and observe the failure.

Task 4: Disable Auto-Summary

Disable automatic summarization on all three routers.

Task 5: Verify Connectivity Is Restored

Confirm the routing table now shows specific routes and connectivity works correctly.

Solution and Verification

R1(config)# router eigrp 100
R1(config-router)# network 10.0.0.0
-- auto-summary remains at its default
-- enabled state (not explicitly disabled)

R1# show ip route eigrp

D    10.0.0.0/8 is a summary, 00:01:12, Null0
-- R1 receives only a single summarized
-- 10.0.0.0/8 entry pointing to Null0 --
-- the specific /24 subnets for R2-R3's link
-- and R3's actual LAN are completely hidden

R1# ping 10.2.2.1

.....
Success rate is 0 percent (0/5)
-- Traffic destined for R3's LAN is discarded
-- by R1's own summarized Null0 route, since
-- 10.2.2.1 falls within the summarized
-- 10.0.0.0/8 range but R1 has no more
-- specific route to actually reach it

R1(config)# router eigrp 100
R1(config-router)# no auto-summary

R2(config)# router eigrp 100
R2(config-router)# no auto-summary

R3(config)# router eigrp 100
R3(config-router)# no auto-summary

R1# show ip route eigrp

D    10.99.99.0/30 [90/2681856] via ..., Serial0/0/0
D    10.2.2.0/24 [90/2707456] via ..., Serial0/0/0
-- Specific routes now appear instead of the
-- single misleading summary

R1# ping 10.2.2.1

!!!!!
Success rate is 100 percent (5/5)

Key Takeaway

Auto-summary's Null0 route is a deliberate loop-prevention mechanism, discussed earlier in this series regarding EIGRP summarization, but it becomes actively harmful in a discontiguous topology like this one, where it silently discards legitimate traffic to a real destination that happens to fall within the summarized range. This is precisely why no auto-summary has been standard practice throughout every EIGRP lab in this series, and remains essential in virtually all modern networks.

Written & researched by Dr. Shahin Siami

Related Articles

Hands-On Lab: Configure GLBP Redundancy

This hands-on lab configures GLBP between two routers to achieve load balancing across both routers simultaneously, verifying that different hosts receive different virtual MAC addresses and therefore route through different physical gateways.

Continue

Hands-On Lab: Implementing HSRP

This hands-on lab configures HSRP between two routers sharing a virtual gateway address, sets priority and preempt to control which router is active, and verifies automatic failover when the active router fails.

Continue

Hands-On Lab: Verifying the EIGRP Database

This hands-on lab examines the EIGRP topology table directly, identifying the successor and feasible successor for a destination network, and demonstrates how this underlying data explains what appears in the IP routing table.

Continue

Hands-On Lab: Summarizing Routes with EIGRP

This hands-on lab manually configures interface-level route summarization in EIGRP, advertising a single aggregated route instead of several specific subnets, and verifies the automatically created Null0 discard route that prevents summarization-related loops.

Continue

Hands-On Lab: Passive Interfaces for EIGRP Updates

This hands-on lab configures a passive interface in EIGRP to stop routing updates from being sent out a LAN-facing interface while the network remains advertised, mirroring the same security and efficiency rationale covered earlier for OSPF passive interfaces.

Continue

Hands-On Lab: Configuring EIGRP Routing Using Wildcard Masks

This hands-on lab configures EIGRP using precise wildcard masks in the network command to advertise only specific subnets rather than entire classful networks, giving finer control over exactly which interfaces participate in EIGRP.

Continue