Link to home
Start Free TrialLog in
Avatar of dissolved
dissolved

asked on

Question on auto-summarization in routing protocols

1.  When auto-summarization is on in EIGRP, I notice it summarizes to the classful boundary (ie: 192.168.3.0/24).  Is this just how IGP's work with auto-summarization on?  They will always summarize to a classful boundary correct?  /8  /16  /24 ?

If I turn off auto-summarization ,  I notice I see the REAL subnet mask. (thanks donjohnston for this info)

2.  Is auto-summarization usually used in production enviornments?  What if you have an internal network that spans several sites.  Each router is running EIGRP. Would you use auto summarization there?  I imagine yes if the networks are contiguous?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of JFrederick29
JFrederick29
Flag of United States of America image

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 dissolved
dissolved

ASKER

When you say summarize manually...what do you mean?

Do you mean you just diable auto-summarization and let the routing protocol advertise the real mask.
Or is there an actual "manual process" that lets you summarize manually?

Thanks J
SOLUTION
Avatar of Don Johnston
Don Johnston
Flag of United States of America image

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
Hi Don,
Ok, so the 172.16.16.0/22 is a supernet address correct?

2. Auto summarization (from a routing protocol such as ripv2 or eigrp) would advertise the route as 172.16.0.0/16 correct?
No. It's a subnet of the 172.16.0.0/16 network.

-Don
ok, thanks man.

what about my other question.  WIth auto summarization the route would be advertised as 172.16.0.0/16 by the routing protocols that support VLSM? Right?
Yes, that is correct.  With auto summarization enabled (default), EIGRP or RIPv2 is going to advertise the route using the classful mask, which, could lead to problems if using discontiguous subnets.

To manually summarize using EIGRP:

interface s0/0
ip summary-address eigrp <as> 172.16.16.0 255.255.252.0
thanks guys