If you have the summarized route configured on the interface like so:
Will it have any effect what so ever unless I advertise this route using the network command, or redistribute command?
Also, if I didn’t use the ip summary-address command on the interface level, and instead used “network 172.16.0.0 0.0.1.255” would this not achieve the exact same thing?
If you are not advertising the particular routes using the network command, then even if you issue the summary-address on the interface, no EIGRP routes will be advertised. I labbed this up to observe the behaviour, and what I did find was that if you advertise any subset of the summary address using the network command, only the summary configured on the interface will be advertised. For example, I created a loopback with an address of 172.16.0.1/24 and issued the summary address command on the interface like so:
ip summary-address eigrp 1 172.16.0.0 255.255.254.0
And what was advertised was the summary-address of 172.16.0.0/23. So the summary address will be advertised as long as there is a network command that contains a subset range of that defined in the summary address. Otherwise, if that network command is removed, the summary-address command on the interface will essentially do nothing.
Actually, when a router advertises a network using EIGRP, it will always advertise the subnet mask that appears on the interface, and not that configured in the network command. However, you can use EIGRP’s auto-summary feature that will automatically summarize all of the local networks on its interfaces before advertising them. You can find out more about that at the following lesson:
However, keep in mind that the summary-address command shown above is more granular in its configuration, as it can be configured on a per-interface basis, while auto-summary is configured globally on the device.
Hi,
When is a good case to use summarization ?
What I mean is from my understanding it is easier on the processor to have a single route (summarization) than to have many but in a very small network of say 3 or 4 subnets but would it really make much difference ? especially given the power of todays routers and switches ?
At what stage does it start to become useful ? for example would 20 or more subnets or 50 or more subnets be a good use case ?
Also can I have multiple summarization statements on the same interface ? or how do I summarize multiple subnets out one interface to a neighbour ?
Lets say for example I have a router with many interfaces and I had many subnets within the 10.x.x.x , 172.16.x.x and 192.168.x.x networks and I wanted to summarize all these out one interface to my neighbour ?
Summarization is indeed useful for reducing the size of routing tables, thus making the network easier to manage and reducing the load on the router’s CPU. However, the point at which it becomes useful can vary greatly depending on the specific network architecture, the capabilities of the routers being used, and the overall network load.
In a small network with only a few subnets, the benefits of summarization might not be noticeable. But as the network grows, the benefits become more apparent. There’s no hard and fast rule about how many subnets make summarization worthwhile, but in general, if you’re dealing with dozens of subnets, it’s worth considering.
Remember, system resources of a router are shared with other features, so if you’re already employing other resource-intensive features, summarization will be beneficial regardless of the number of subnets.
As for your second question, yes, you can have multiple summarization statements on the same interface. I tried applying multiple such statements on an interface and was successful. Take a look at the following configuration applied to a particular interface of a router:
R1#show run interface gigabitEthernet 0/1
Building configuration...
Current configuration : 216 bytes
!
interface GigabitEthernet0/1
ip address 192.168.12.1 255.255.255.0
ip summary-address eigrp 1 10.0.0.0 255.0.0.0
ip summary-address eigrp 1 192.168.0.0 255.255.0.0
duplex auto
speed auto
media-type rj45
end
R1#
Can I get help regarding the Task 5 cause I don’t know where to apply the summarization or is there any need of route-map and what kind of output should be seen in R1’s routing table. Because I thought that all there will be only two summarized routes of R4’s loopback but that’s not how it is.
Also a leak map configuration for one of the loopback of R4 to R1??
Summarization is applied on interfaces using the ip summary-address eigrp command. You can apply summarization on both interfaces of R4 such that the 40.1.1.0/24, 40.1.2.0/24, and 40.1.3.0/24 routes are summarzed on the interface facing R3, and the 40.1.4.0/24, 40.1.5.0/24, 40.1.6.0/24, and 40.1.7.0/24 networks are sum
marized on the interface facing R2.
These two summarizations will suppress the advertising of the more specific routes found within the summarization, but it won’t suppress the advertising of the networks not found within the summarization on each interface. So you have to add some filtering of those routes using a distribute-list.
Let’s say R4 has Gi0/0 connected to R2 and Gi0/1 connected to R3:
For Gi0/0:
summarize the 40.1.4.0/24, 40.1.5.0/24, 40.1.6.0/24, and 40.1.7.0/24 networks
filter out the 40.1.1.0/24, 40.1.2.0/24, and 40.1.3.0/24 networks
On Gi0/1, you do the opposite:
summarize the 40.1.1.0/24, 40.1.2.0/24, and 40.1.3.0/24 networks
filter out the 40.1.4.0/24, 40.1.5.0/24, 40.1.6.0/24, and 40.1.7.0/24 networks