Lab 39 - EIGRP Automatic Summarization

Lab 39 - EIGRP Automatic Summarization
Di Posting Oleh : Simple Learning
Kategori : Core Technologies EIGRP Routing

Prerequisites: CCNP level skills.
Topology
 Pic. 1 - EIGRP NBMA Topology.
Icons designed by: Andrzej Szoblik - http://www.newo.pl

Task 1
Re-enable automatic summarization (default). Observe the changes in the routing table on all routers.

Task 2
On R2 create a new loopback with the following IP address: 10.0.0.1/16. Enable EIGRP on this interface and check what R3 receives.

Lab Solution

Task 1
Re-enable automatic summarization (default). Observe the changes in the routing table on all routers.

R1, R2 and R3 Configuration:
!
router eigrp 1
 auto-summary
!

Pic. 2 - R1's Routing Table.

Note!
Because I use class A and class B subnets, a discard route is created for both (Null0). Connection between routers uses class A subnet, so the outbound interface is in different class than the loopback subnets being advertised. The result is class B summarization (172.16.0.0).

Task 2
On R2 create a new loopback with the following IP address: 10.0.0.1/16. Enable EIGRP on this interface and check what R3 receives.

R2 Configuration:
!
interface Loopback1
 ip address 10.0.0.1 255.255.0.0
!
router eigrp 1
 network 10.0.0.1 0.0.0.0
 network 10.1.0.2 0.0.0.0
 network 10.1.2.2 0.0.0.0
 network 172.16.102.2 0.0.0.0
 auto-summary
 eigrp router-id 172.16.102.2
!

Verification:
Pic. 3 - R1's EIGRP Routing Table.
Pic. 4- R3's EIGRP Routing Table.

Note!
Because the new IP address belongs to the same class A (10.x.x.x) even though it is subnetted with /16 network mask, EIGRP advertises it out the interface configured with the same class A 10.x.x.x with the CONFIGURED network mask (/16). If it was 11.x.x.x subnet, EIGRP would have summarized it to 11.0.0.0/8.

0 Response to "Lab 39 - EIGRP Automatic Summarization"

Post a Comment