Link to home
Start Free TrialLog in
Avatar of totaram
totaramFlag for United States of America

asked on

EIGRP autosummarization

I am trying to understand this practice question on cisco Adv test:

 10.10.10.0/24----E0 RTR1 S0----172.16.10.0/24---S0 RTR2 S1---192.168.20.0/24---S1 RTR3---E0

RTR1 config:
router eigrp 4
  network 10.0.0.0
  network 172.16.0.0
  no auto-summary

Auto-summarization is disabled on RTR1 but is enabled on RTR2 and RTR3. Which
two routes will be seen on the routing table of RTR3:
A. 10.0.0.0/8
B. 10.10.0.0/16
C. 10.10.10.0/24
D. 172.16.0.0/16
E. 172.16.0.0/24
F. 172.16.10.0/24
Avatar of Don Johnston
Don Johnston
Flag of United States of America image

A & D

When auto-summary is enabled, routes will be summarized to the classfull boundaries.
Avatar of totaram

ASKER

Thats what I thought, answer is C,D.
Says who? :-)
Avatar of gcl_hk
gcl_hk

10.10.10.0/24 is advertise by RTR1, even RTR2 have enabled auto summary, as the 10.10.10.0/24 is learn from neighbor, so auto summarization will not modify it and advertise to others by default
Avatar of totaram

ASKER

The answer provided with the question bank...

Could it be that since the two interfaces on RTR1 are directly connected, the no auto summarization  advertises them as what they are tp both RTR2 & RTR3.??
I have tried on lab.... and the result for your reference.

en
conf t
host R3
int g0/1
no sh
ip add 10.10.10.3 255.255.255.0
int fa0/0/1
no sh
ip add 172.16.10.3 255.255.255.0
router eigrp 4
network 10.0.0.0
network 172.16.0.0
no auto-summary

en
conf t
host R4
int fa0/0
no sh
ip add 172.16.10.4 255.255.255.0
int s0/0/0
ip add 192.168.20.4 255.255.255.0
router eigrp 4
network 172.16.0.0
network 192.168.20.0

en
conf t
host R2
int s0/0
clockrate 64000
ip add 192.168.20.2 255.255.255.0
router eigrp 4
network 192.168.20.0

10.10.10.0/24 - G0/1 --- R3 --- F0/0/1 - 172.16.10.0/24 - F0/0 --- R4 --- S0/0/0 - 192.168.20.0/24 - S/0 --- R2

R2#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

D    172.16.0.0/16 [90/2172416] via 192.168.20.4, 00:22:03, Serial0/0
C    192.168.20.0/24 is directly connected, Serial0/0
     10.0.0.0/24 is subnetted, 1 subnets
D       10.10.10.0 [90/2174976] via 192.168.20.4, 00:21:04, Serial0/0
Avatar of totaram

ASKER

You gave the output on R2, what is 'sh ip route' on R3??

I think you are right if command 'no passive int' is defined on R1. I guess default is passive interface...
ASKER CERTIFIED SOLUTION
Avatar of gcl_hk
gcl_hk

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of totaram

ASKER

Sorry, didn't realize that you had named them differently.. the last one does have the interface address in routing table.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of totaram

ASKER

"Since R2 learned the 10.10.10.0 route, it won't summarize when it sends it to R3."

How did R2 learn 10.10.10.0/24 route, it is not directly connected to R2, 172.16.0.0/16 is connected to R2 and R1.

>How did R2 learn 10.10.10.0/24 route,

R1 advertised it via EIGRP.
Avatar of totaram

ASKER

I see... R1 is no-auto summary and the other subnet (172.16.0.0) is directly connected, so auto-summary :-)
Correct.