Summarization with EIGRP

Hi all,

currently I have build a new network design with EIGRP. This ws a migration from a flat layer 2 to a full routed network. The routing protokoll is now EIGRP. There is a traditionell hirachy with a core - distribution and access layer. Right now I there are several static routes configured on both core switches. Now I would like to send only summaries from the static routes and the transfer ip ranges to the distribution and access switches.

What is the best practice to appear this routes as summary in the routing table with EIGRP?

greetz dennis

Reply to
dennis
Loading thread data ...

see Cisco doc "How to configure a summary aggregate address for a specified interface using EIGRP"

formatting link

Reply to
Merv

I do this all of time. Create multiple VLANs behind a /16 boundary. Here is an example.

int vlan 10 ip address 10.1.1.0 255.255.255.0 ! int vlan 11 ip address 10.1.2.0 255.255.255.0 ! int vlan 12 ip address 10.1.3.0 255.255.255.0 ! int vlan 10 ip address 10.1.4.0 255.255.255.0 ! int vlan 10 ip address 10.1.5.0 255.255.255.0

router eigrp 100 no auto-summ network 10.0.0.0 ! Then on the egress interface you want to send a summary route. ip summary-route eigrp 100 10.1.0.0 255.255.0.0. This is a great method to trim the size of your routing tables, it also keeps reconvergence to a minimum.

Reply to
Greg

Also the OP should ensure the EIGRP stub routing feature is implemeneted on all access routers to reduce the EIGRP query boundary

Reply to
Merv

Cabling-Design.com Forums website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.