ExamNotes.net  -  IT certification portal

ForumsCertResearchTop sitesNewslettersFree email
HomeRegister
Exams Notes
Practice exams
Exam games
Questions by email
Online training
Training videos
College degrees
Boot camps
Book store
Links directory
Tell a friend
For webmasters

CompTIA Exam Vouchers
Save money on CompTIA exams
Question of the day
Sign up to receive
interactive practice questions
for MCSE, CompTIA
Cisco and other exams
TestKing
Get MCSE, MCSD, CCNA, CCNP,A+, N+ and many more

* ExamSheets *
Guide for Success!
Actual Questions & Answers
MCSE, MCSD, A+ ,CCNA, CCNP
Oracle 8i, Oracle 9i

Online practice tests

Certification sites

Online university

Online college

Online education

Distance learning

Software forum

Server administration forum

Programming resources






This is interesting: Free IT Magazines | Databases help forum



Cisco > CCNP > Static Routes

Show a Printable Version
Email This Page to Someone!
Receive updates to this thread




Featured site: Online CCNP practice exams from Cert21.com



Author Static Routes
whytokayok
Member




Registered: Sep 2000
Location: Bakersfield, Ca
Country: USA
State:
Certifications: CCNA, VoIP- ATM-Frame
Working on: CCDA, CCNP, MCP

Total Posts: 171
Static Routes

Has any one ever set up two static default routes on a router with one route having a higher administrative distance? I have three routers set up in a full mesh configuration. I'm trying to implement some redundancy if possible.

__________________
John 3:16 bought me to my knees..

California e-Business Solutions
www.c-ebs.com

Report this post to a moderator

Old Post 11-23-01 02:14 AM
whytokayok is offline Click Here to See the Profile for whytokayok Click here to Send whytokayok a Private Message Visit whytokayok's homepage! Add whytokayok to your buddy list Find more posts by whytokayok Reply w/Quote Edit/Delete Message IP: Logged
sidodgers
Member




Registered: Nov 2001
Location: Melbourne
Country: Australia
State:
Certifications: CCNA, CCNP, CCIE (written)
Working on: CCIE (other bit), SCSA/SCNA

Total Posts: 72
Re: Static Routes

quote:
Originally posted by whytokayok
Has any one ever set up two static default routes on a router with one route having a higher administrative distance? I have three routers set up in a full mesh configuration. I'm trying to implement some redundancy if possible.


For all but the simplest configurations, this setup is suboptimal. Sure, you can do the following:

R1
ip route r2.0.0.0 255.255.255.0 r2 1
ip route r2.0.0.0 255.255.255.0 r3 10
ip route r3.0.0.0 255.255.255.0 r3 1
ip route r3.0.0.0 255.255.255.0 r2 10

R2
ip route r1.0.0.0 255.255.255.0 r1 1
ip route r1.0.0.0 255.255.255.0 r3 10
ip route r3.0.0.0 255.255.255.0 r3 1
ip route r3.0.0.0 255.255.255.0 r1 10

R3
ip route r1.0.0.0 255.255.255.0 r1 1
ip route r1.0.0.0 255.255.255.0 r2 10
ip route r2.0.0.0 255.255.255.0 r2 1
ip route r2.0.0.0 255.255.255.0 r1 10

where r# stands for the ip of your router and r#.0.0.0 represents the networks you are reaching through the said router, but this situation has the following problems:

- scalability; ie if you want to add more networks behind a given router, you need four (yes, that's it, four) routes (two on each other router) added for a given network

- reliability; you're banking on a router being able to work out that its connection to a peer is dead. without the use of an active routing protocol, this usually doesn't happen.

the way i'd accomplish the following is:

(for r2 and r3, substitute appropriately)

router ospf 100
network (subnet between r1 and r2) area 0
network (subnet between r1 and r3) area 0
network r1.0.0.0 0.0.0.255 area 1
area 1 stub no-summary

rinse and repeat for r2 and r3, putting r2.0.0.0 into area 2, and r3.0.0.0 into area 3. The routes will automatically be shared between the peers on the subnets in area 0, and the optimal paths will be utilised while they are available. The hello timer on OSPF ensures that each router will know if a peer is dead and send traffic via the suboptimal path.

Cheers,

Sid

Report this post to a moderator

Old Post 11-23-01 04:25 AM
sidodgers is offline Click Here to See the Profile for sidodgers Click here to Send sidodgers a Private Message Add sidodgers to your buddy list Find more posts by sidodgers Reply w/Quote Edit/Delete Message IP: Logged
Yankee
Senior Member




Registered: Jun 2000
Location:
Country: United States
State:
Certifications:
Working on: none

Total Posts: 1411

Don't believe he stated he wasn't using a routing protocol so if that is true, the answer is yes you can do it and it works fine.

Yankee

Report this post to a moderator

Old Post 11-23-01 02:24 PM
Yankee is offline Click Here to See the Profile for Yankee Click here to Send Yankee a Private Message Add Yankee to your buddy list Find more posts by Yankee Reply w/Quote Edit/Delete Message IP: Logged
whytokayok
Member




Registered: Sep 2000
Location: Bakersfield, Ca
Country: USA
State:
Certifications: CCNA, VoIP- ATM-Frame
Working on: CCDA, CCNP, MCP

Total Posts: 171

Yes, I cannot use dynamic routing. My return links to R1 from R2 and R3 rely upon the DLCI and not the IP address. Therefore, as robust as BGP is it won't help. What I was trying to do is provide redundant default routes back to R1 in case one of the links goes down that feed either R2 or R3. R1 provides internet access for R2 and R3.

__________________
John 3:16 bought me to my knees..

California e-Business Solutions
www.c-ebs.com

Report this post to a moderator

Old Post 11-24-01 12:56 AM
whytokayok is offline Click Here to See the Profile for whytokayok Click here to Send whytokayok a Private Message Visit whytokayok's homepage! Add whytokayok to your buddy list Find more posts by whytokayok Reply w/Quote Edit/Delete Message IP: Logged
sidodgers
Member




Registered: Nov 2001
Location: Melbourne
Country: Australia
State:
Certifications: CCNA, CCNP, CCIE (written)
Working on: CCIE (other bit), SCSA/SCNA

Total Posts: 72

quote:
Originally posted by whytokayok
Yes, I cannot use dynamic routing. My return links to R1 from R2 and R3 rely upon the DLCI and not the IP address. Therefore, as robust as BGP is it won't help. What I was trying to do is provide redundant default routes back to R1 in case one of the links goes down that feed either R2 or R3. R1 provides internet access for R2 and R3.


hmm, sorry for misunderstanding.
in that case, what you're describing with floating static routes should work under certain circumstances. the important thing is that if a link fails, the router knows that it's failed and removes routes associated with it from the ip routing table. if this is the case, then the static route configuration i posted above should work without a trauma.

HTH

Sid

Report this post to a moderator

Old Post 11-24-01 01:32 AM
sidodgers is offline Click Here to See the Profile for sidodgers Click here to Send sidodgers a Private Message Add sidodgers to your buddy list Find more posts by sidodgers Reply w/Quote Edit/Delete Message IP: Logged
All times are GMT.
Post new thread   Post reply

Click here for CCNP study guides

Cisco exam notes



Forum Jump:
Rate This Thread:
Forum Rules:
Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is ON.
 

ExamNotes forum archive


Powered by: vBulletin 2.2.8
Copyright ©2000, Jelsoft Enterprises Limited.

  Free Braindumps | mcse braindumps