Go Back   Velocity Reviews > Newsgroups > Cisco
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Cisco - RIP + Default Route

 
Thread Tools Search this Thread
Old 10-21-2005, 02:58 AM   #1
Default RIP + Default Route


It's been a while since I've done any router config's so if my question is
stupid, I apologize, but I do need some advice. I am configuring a Cat 3550
for L3 routing. I have created my VLAN's and want to use RIP since the
other L3 switch I'm connecting to will only do RIP or OSPF. I have 3 Cat
3550's and 1 ProCurve 3400 that will be managing my WAN. I have a 2651XM
that connects my HP 3400 from the WAN to my single gateway to the web. I
know RIP v2 won't propogate default routes (ie; 0.0.0.0 0.0.0.0 10.40.10.2)
so how can i configure my routers to recognize the single exit point from my
WAN to the web?? Thanks in advance!!

joey





Joey Kinney
  Reply With Quote
Old 10-21-2005, 04:25 AM   #2
Joe Beasley
 
Posts: n/a
Default Re: RIP + Default Route
use OSPF to propagate the default route.


SDF Public Access UNIX System - http://sdf.lonestar.org


Joe Beasley
  Reply With Quote
Old 10-21-2005, 05:18 PM   #3
Marco Matarazzo
 
Posts: n/a
Default Re: RIP + Default Route
"Joey Kinney" <> wrote in comp.dcom.sys.cisco:

> WAN to my single gateway to the web. I know RIP v2 won't propogate
> default routes (ie; 0.0.0.0 0.0.0.0 10.40.10.2) so how can i configure
> my routers to recognize the single exit point from my WAN to the web??


Originating and propagating a default route works well here:

router rip
version 2
timers basic 3 10 0 10
passive-interface default
network x.0.0.0
neighbor x.y.w.z
neighbor z.y.v.w
default-information originate
no auto-summary

the key here is the "default-information originate".

--
Ciao!
]\/[arco


Marco Matarazzo
  Reply With Quote
Old 10-21-2005, 10:14 PM   #4
Merv
 
Posts: n/a
Default Re: RIP + Default Route


There are a number of ways to have RIP advertise a default route.

see
http://www.cisco.com/en/US/tech/tk36...80094374.shtml


RIP advertises a route to 0.0.0.0 if a gateway of last resort is
selected using the ip default-network command. This network specified
in the ip default-network command need not be explicitly advertised
under RIP

In earlier versions of RIP, the default route created using the ip
route 0.0.0.0 0.0.0.0 was automatically advertised by RIP routers. In
Cisco IOS Software Release 12.0T and later, RIP does not advertise the
default route if the route is not learned via RIP. It may be necessary
to redistribute the route into RIP.

================================================== ===========================================

router rip
redistribute static
network 192.168.1.0

ip route 0.0.0.0 0.0.0.0 Null0

*Mar 1 00:06:31.681: RIP: build update entries
*Mar 1 00:06:31.681: subnet 0.0.0.0 metric 1
*Mar 1 00:06:59.547: RIP: sending v1 update to 255.255.255.255 via
FastEthernet1/0 (192.168.1.1)

================================================== ===============================================

router rip
network 192.168.1.0

ip default-network 192.168.2.0


MERV1#debug ip rip
RIP protocol debugging is on
MERV1#
*Mar 1 00:15:45.717: RIP: sending v1 update to 255.255.255.255 via
FastEthernet
1/0 (192.168.1.1)
*Mar 1 00:15:45.717: RIP: build update entries
*Mar 1 00:15:45.717: subnet 0.0.0.0 metric 1

================================================== ==============================================

router rip
network 192.168.1.0
default-information originate


*Mar 1 00:18:06.220: RIP: sending v1 update to 255.255.255.255 via
FastEthernet
1/0 (192.168.1.1)
*Mar 1 00:18:06.220: RIP: build update entries
*Mar 1 00:18:06.220: subnet 0.0.0.0 metric 1



Merv
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: ROUTE -P JD@home.com A+ Certification 2 06-17-2005 12:38 AM
Computer with default language in Chinese AG A+ Certification 3 04-04-2005 12:40 AM
Re: ROUTE -P AG A+ Certification 1 03-15-2005 04:17 PM
Re: ROUTE -P CBIC A+ Certification 0 03-10-2005 05:16 PM
Re: Default media player natural_4u A+ Certification 1 02-16-2004 09:35 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46