Another issue that may create problems for the network administrator is EIGRP automatic summarization.

Figure 1 shows a different network topology than what has been used throughout this chapter. There is no connection between R1 and R3. R1’s LAN has the network address 10.10.10.0/24, while R3’s LAN is 10.20.20.0/24. The serial connections between both routers and R2 have the same bandwidth of 1024 kb/s.

R1 and R3 have their LAN and serial interfaces enabled for EIGRP, as shown in Figure 2. Both routers perform EIGRP automatic summarization.

EIGRP for IPv4 can be configured to automatically summarize routes at classful boundaries. If there are discontiguous networks, automatic summarization causes inconsistent routing.

In Figure 3, R2’s routing table shows that it does not receive individual routes for the 10.10.10.0/24 and 10.20.20.0/24 subnets. Both R1 and R3 automatically summarized those subnets to the 10.0.0.0/8 classful boundary when sending EIGRP update packets to R2. The result is that R2 has two equal-cost routes to 10.0.0.0/8 in the routing table, which can result in inaccurate routing and packet loss. Depending upon whether per-packet, per-destination, or CEF load balancing is being used, packets may or may not be forwarded out the proper interface.

In Figure 4, the show ip protocols command verifies that automatic summarization is performed on both R1 and R3. Notice that both routers summarize the 10.0.0.0/8 network using the same metric.

The auto-summary command is disabled by default on Cisco IOS Software versions of 15 and newer versions of 12.2(33). By default, older software has automatic summarization enabled. To disable automatic summarization, enter the no auto-summary command in router EIGRP configuration mode.

To correct this problem, R1 and R3 have automatic summarization disabled:

R1(config)# router eigrp 1

R1(config-router)# no auto-summary

R3(config)# router eigrp 1

R3(config-router)# no auto-summary

After automatic summarization has been disabled on R1 and R3, R2’s routing table now indicates that it receives the individual 10.10.10.0/24 and 10.20.20.0/24 subnets from R1 and R3, respectively, as shown in Figure 5. Accurate routing and connectivity to both subnets is now restored.

EIGRP for IPv6

Classful networks do not exist in IPv6; therefore EIGRP for IPv6 does not support automatic summarization. All summarization must be accomplished using EIGRP manual summary routes.