EIGRP question

in CCNP
Since 12.0 code, you can add a mask in the network command of eigrp
router eigrp 5
network 172.30.3.0 0.0.0.7
network 10.10.1.0 0.0.0.255
no auto-summary
Why then would you ever need to use ip summary address?
int Ethernet0/1
ip summary-address eigrp 5 10.10.1.0 0.0.0.255
router eigrp 5
network 172.30.3.0 0.0.0.7
network 10.10.1.0 0.0.0.255
no auto-summary
Why then would you ever need to use ip summary address?
int Ethernet0/1
ip summary-address eigrp 5 10.10.1.0 0.0.0.255
CCNP/CCDA/CCNA-Wireless/MCSA/MCITP/Network+/Security+
BS Information Tech. - UMass
BS Information Tech. - UMass
Comments
For example if you have an interface with 10.0.0.1/30 and use a network command of 10.0.0.0/24 EIGRP will run on that interface (and any other interface that has an IP that falls withing that range), but only the /30 will be advertised.
(Btw in the ip-summary command, there should be a subnet mask, not a wild card.)
It is however not a great idea to summarize routes in areas where you may have a dis-contiguous network (because the router will not have a defined path to a network) or like in areas of Frame Relay where you may have connections to different subnets across sub-interfaces on a common physical interface.
My ultimate career goal: To climb to the top of the computer network industry food chain.
"Winning means you're willing to go longer, work harder, and give more than anyone else." - Vince Lombardi
Agreed. Don't forget the Admin Distance of 5 for EIGRP summaries. Could make a difference if you've got a large network.
Keep in mind that EIGRP only sends full topology updates when the neighborship comes up, after that it will only send partial updates for changes/additions. Although RIP does send full updates every interval.. EIGRP will just send hello's on a stable network.
I think the biggest benefit of summarization is to keep the routing tables small. As for CPU utilization that's an interesting point.. I guess it would reduce CPU because EIGRP wouldn't need to send constant updates if an aggregated route is flapping, as the summary would be intact.
Can someone else add to this to make sure my thinking is correct? I.e. the benefits of summarization on the CPU?
This really isn't much of a concern on modern routers. They can handle most anything EIGRP can throw at it assuming you don't have a full table in your IGP.
The real benefit is query scoping.
I was more or less speaking in terms of initial EIGRP computation. If there are good summary routes in places where they can be used effectively the receiving router of the routing information will not be as bogged down compiling the data to establish its own routing / topology tables. Yes, after that EIGRP will only send partial updates.
My ultimate career goal: To climb to the top of the computer network industry food chain.
"Winning means you're willing to go longer, work harder, and give more than anyone else." - Vince Lombardi