RE: summary-address in ospf and redistribution

From: Mask Of Zorro (ciscokid00@xxxxxxxxxxx)
Date: Thu May 10 2001 - 12:20:50 GMT-3


   
That's the solution... OSPF will only summarize external routes that enter
the OSPF process... SO - you need to make the route that you want to
summarize appear to be external. Redistribute connected does this for you.
Pass it through a route-map so that you only get the network that you want.
You might also think about filtering the summary out of the OSPF domain...

Z

>From: Ron Carithers <RCARITHERS@edge2net.net>
>Reply-To: Ron Carithers <RCARITHERS@edge2net.net>
>To: "'Dirar Hakeem'" <dirarhakeem@yahoo.com>, Ron Carithers
><RCARITHERS@edge2net.net>, "'Rob Hopkins'"
><rshopkins@earthlink.net>, lkouncar@UU.NET
>CC: ccielab@groupstudy.com
>Subject: RE: summary-address in ospf and redistribution
>Date: Thu, 10 May 2001 06:12:28 -0700
>
>If you're interested, here's one way to make it work. On a router that is
>connected to the network you want to summarize do "redistribute connected
>subnets" into OSPF. That creates the E2 route and then you can do summary
>152.1.2.0 255.255.255.0. The book is totally missing the fact that if the
>external route is not there, you can't summarize.
>
>-----Original Message-----
>From: Dirar Hakeem [mailto:dirarhakeem@yahoo.com]
>Sent: Wednesday, May 09, 2001 10:16 PM
>To: Ron Carithers; 'Rob Hopkins'; lkouncar@UU.NET
>Cc: ccielab@groupstudy.com
>Subject: RE: summary-address in ospf and redistribution
>
>
>I'm working on the same lab and I had the same
>problem. The only way I got those two networks
>(152.1.1.0, 152.1.2.0) to go into IGRP was to make
>them exteranl to OSPF; the way summary-address is
>supposed to work (I created a static route to subnets
>of those networks, and then redistributed static into
>OSPF)
>
>If somebody gets this to work they way the book says
>it does (i.e. the config below), please show us how.
>
>BTW, this is case study #3 in CCIE Lab Practice Kit.
>
>Thanks
>
>--- Ron Carithers <RCARITHERS@edge2net.net> wrote:
> > It's on a different router.
> >
> > -----Original Message-----
> > From: Rob Hopkins [mailto:rshopkins@earthlink.net]
> > Sent: Wednesday, May 09, 2001 7:57 PM
> > To: Ron Carithers; lkouncar@UU.NET
> > Cc: ccielab@groupstudy.com
> > Subject: Re: summary-address in ospf and
> > redistribution
> >
> >
> > you dont have an area 0 configured..
> >
> >
> >
> > Thanks,
> >
> > Rob Hopkins
> >
> >
> >
> >
> >
> >
> >
> > 1.6180339887499
> > ----- Original Message -----
> > From: "Ron Carithers" <RCARITHERS@edge2net.net>
> > To: <lkouncar@UU.NET>; "Ron Carithers"
> > <RCARITHERS@edge2net.net>; "'Rob
> > Hopkins'" <rshopkins@earthlink.net>
> > Cc: <ccielab@groupstudy.com>
> > Sent: Wednesday, May 09, 2001 10:30 PM
> > Subject: RE: summary-address in ospf and
> > redistribution
> >
> >
> > > Below is the config from R6. It's supposed to send
> > 152.1.1.0/24 and
> > > 152.1.2.0/24 through IGRP (e1/0) to R8. When I
> > turn on IGRP debugs I don't
> > > see it send the routes. Thanks for any help.
> > > Ron
> > >
> > > service timestamps debug uptime
> > > no service password-encryption
> > > no service udp-small-servers
> > > no service tcp-small-servers
> > > no cdp run
> > > !
> > > hostname R6
> > > !
> > > !
> > > username R1 password 0 cisco
> > > ip subnet-zero
> > > isdn switch-type basic-ni1
> > > !
> > > interface Loopback0
> > > ip address 152.1.12.1 255.255.255.0
> > > !
> > > interface Ethernet0/0
> > > ip address 152.1.11.1 255.255.255.0
> > > !
> > > interface Serial0/0
> > > backup delay 5 20
> > > backup interface BRI1/0
> > > ip address 152.1.2.130 255.255.255.128
> > > ip ospf authentication-key cisco1
> > > !
> > >
> > > interface Ethernet1/0
> > > ip address 152.1.0.1 255.255.255.0
> > > !
> > > !
> > > interface BRI1/0
> > > ip address 152.1.1.78 255.255.255.252
> > > encapsulation ppp
> > > ip ospf demand-circuit
> > > isdn spid1 5201
> > > isdn spid2 5202
> > > dialer map ip 152.1.1.77 name R1 broadcast
> > 8995101
> > > dialer load-threshold 1 outbound
> > > dialer-group 1
> > > no fair-queue
> > > ppp callback request
> > > ppp authentication chap
> > > ppp multilink
> > > hold-queue 75 in
> > > !
> > > router ospf 64
> > > summary-address 152.12.0.0 255.252.0.0
> > > summary-address 152.1.1.0 255.255.255.0
> > > summary-address 152.1.2.0 255.255.255.0
> > > redistribute igrp 64 metric 1000
> > > network 152.1.2.128 0.0.0.127 area 1
> > > network 152.1.1.76 0.0.0.3 area 2
> > > network 152.1.11.0 0.0.0.255 area 2
> > > default-information originate always
> > > distribute-list 1 in Serial0/0
> > > area 0 authentication message-digest
> > > area 1 authentication
> > > area 1 virtual-link 152.1.2.5 message-digest-key
> > 1 md5 cisco0
> > > area 2 nssa
> > > !
> > > router igrp 64
> > > redistribute ospf 64 route-map summary
> > > passive-interface Ethernet0/0
> > > passive-interface Serial0/0
> > > passive-interface BRI1/0
> > > passive-interface Loopback0
> > > network 152.1.0.0
> > > default-metric 1500 10 255 255 1500
> > > distribute-list 3 in Ethernet1/0
> > > !
> > > no ip classless
> > > access-list 1 deny 152.1.1.72
> > > access-list 1 deny 152.1.1.65
> > > access-list 1 deny 152.1.1.69
> > > access-list 1 deny 152.1.1.96 0.0.0.31
> > > access-list 1 permit any
> > > access-list 2 permit any
> > > access-list 3 deny 152.16.0.0
> > > access-list 3 deny 152.10.0.0
> > > access-list 3 deny 152.11.0.0
> > > access-list 3 permit any
> > > access-list 6 permit 152.1.1.0
> > > access-list 6 permit 152.1.2.0
> > > route-map summary permit 10
> > > match ip address 6
> > > !
> > > !
> > > dialer-list 1 protocol ip list 2
> > > !
> > > line con 0
> > > line aux 0
> > > line vty 0 4
> > > login
> > > !
> > > end
> > >
> > >
> > >
> > > -----Original Message-----
> > > From: louie kouncar [mailto:lkouncar@UU.NET]
> > > Sent: Wednesday, May 09, 2001 7:20 PM
> > > To: 'Ron Carithers'; 'Rob Hopkins'
> > > Cc: ccielab@groupstudy.com
> > > Subject: RE: summary-address in ospf and
> > redistribution
> > >
> > >
> > > Ron,
> > >
> > > I have used this many many times and it works just
> > fine, Why don't you
> > post
> > > your configs so we can take a look?
> > >
> > > Thanks
> > >
> > >
> > > Louie J. Kouncar
> > > TCO3 Senior Data Center Engineer
> > > UUNET
> > > W-703-343-6645
> > > C-703-304-2460
> > >
> > >
> > >
> > > -----Original Message-----
> > > From: nobody@groupstudy.com
> > [mailto:nobody@groupstudy.com]On Behalf Of
> > > Ron Carithers
> > > Sent: Wednesday, May 09, 2001 9:50 PM
> > > To: 'Rob Hopkins'
> > > Cc: ccielab@groupstudy.com
> > > Subject: RE: summary-address in ospf and
> > redistribution
> > >
> > >
> > > OK, everyone says to use a summary address to
> > redistribute a route with
> > the
> > > correct mask into IGRP. I have never seen this
> > work. I am using "CCIE Lab
> > > Practice Kit" and there is an example of this in
> > one of their labs. Using
> > > their exact configuration IT DOES NOT WORK.
> > Cisco's documentation says "
> > For
> > > OSPF, this command summarizes only routes from
> > other routing protocols
> > that
> > > are being redistributed into OSPF". What am I
> > missing? Has this changed in
> > > different IOS versions?
> > >
> > > -----Original Message-----
> > > From: Rob Hopkins [mailto:rshopkins@earthlink.net]
> >
>=== message truncated ===
>
>



This archive was generated by hypermail 2.1.4 : Thu Jun 13 2002 - 10:30:38 GMT-3