One of the most common tuning methods of EIGRP is enabling and disabling automatic route summarization. Route summarization allows a router to group networks together and advertises them as one large group using a single, summarized route. The ability to summarize routes is necessary due to the rapid growth of networks.

A border router is a router that sits at the edge of a network. This router must be able to advertise all of the known networks within its route table to a connecting network router or ISP router. This convergence can potentially result in very large route tables. Imagine if a single router had 10 different networks and had to advertise all 10 route entries to a connecting router. What if that connecting router also had 10 networks, and had to advertise all 20 routes to an ISP router? If every enterprise router followed this pattern, the routing table of the ISP router would be huge.

Summarization decreases the number of entries in routing updates and lowers the number of entries in local routing tables. It also reduces bandwidth utilization for routing updates and results in faster routing table lookups.

To limit the number of routing advertisements and the size of routing tables, routing protocols such as EIGRP, use automatic summarization at classful boundaries. This means that EIGRP recognizes subnets as a single Class A, B, or C network, and creates only one entry in the routing table for the summary route. As a result, all traffic destined for the subnets travels across that one path.

The figure shows an example of how automatic summarization works. Routers R1 and R2 are both configured using EIGRP for IPv4 with automatic summarization. R1 has three subnets in its routing table: 172.16.1.0/24, 172.16.2.0/24, and 172.16.3.0/24. In the classful network addressing architecture, these subnets are all considered part of a larger class B network, 172.16.0.0/16. Because EIGRP on router R1 is configured for automatic summarization, when it sends its routing update to R2, it summarizes the three /24 subnets as a single network of 172.16.0.0/16, which reduces the number of routing updates sent and the number of entries in R2’s IPv4 routing table.

All traffic destined for the three subnets travels across the one path. R2 does not maintain routes to individual subnets and no subnet information is learned. In an enterprise network, the path chosen to reach the summary route may not be the best choice for the traffic that is trying to reach each individual subnet. The only way that all routers can find the best routes for each individual subnet is for neighbors to send subnet information. In this situation, automatic summarization should be disabled. When automatic summarization is disabled, updates include subnet information.