CCENT (ICND1 100-101) OSPF Scenario Challenge

CCENT fun!

CCENT Fun!

I have some new software that I will be using to create all types of new challenges for you here at AJSNetworking.com in the area of CCENT and other topics. Until then, let’s try a little OSPF scenario the old fashioned way! Submit your configuration in the comments below and I will provide your score. Good luck!

CCENT OSPF Scenario 1:

R1-Gi0/0———-Gi0/0-R2

R1 and R2 are connected by the 10.10.10.0/24 network. .1 and .2 are the interface IP addresses for each device respectively. R2 has been completely configured (correctly) for OSPF operations in Area 0 with R1. R1 contains the following loopback addresses:

  • Lo0 – 192.168.1.1
  • Lo1 – 192.168.2.1
  • Lo2 – 192.168.3.1

Your mission, should you choose to accept it, is to provide the configuration for R1 that meets the following conditions:

  • Use a process ID of 101
  • Use two network statements to cause all interfaces (Gi0/0, Lo0, Lo1, Lo2) to participate in OSPF
  • Ensure a Router ID of 192.168.1.1

Remember, post the R1 configuration in the comments below for grading. Good luck and do not rush your answer!

Redistribution in CCIE Exams, Part 1 of 2

Redistribution in the CCIE Exam

Overview of Routing Protocol Redistribution in CCIE Exams:

You might be able to avoid redistribution in your production environment, but in CCIE lab exams, sorry – it is inevitable. Redistribution is covered here and there in the massive CBT Nuggets CCIE Part 3 course, but I thought I would review some things and provide guidance for you here specifically on this topic. This area has been known to freak students out, especially since routing loops and feedback allow you to instantly fail your CCIE lab exam. Hopefully after you read this, your fears are destroyed. And let’s face it, routing loops and routing feedback issues are very rare.

Review and Guidance:

  • Routing protocol redistribution refers to  taking prefix information from another routing domain and bringing that in to your local routing domain. Here routing domain simple refers to the group of routers that are all speaking the same routing protocol. We typically redistribute so that we have full IP reachability between these different routing protocol domains. You might have multiple routing domains because your company is merging with another company, or you want to mesh different parts of your company running different protocols for some reason.
  • When you redistribute from one routing protocol to another, you immediately discover an issue. Different routing protocols use different metrics. For example, if you are bringing RIP routes (heaven forbid!) into EIGRP, you have a Hop Count metric that does not directly correlate to the potential composite metric of EIGRP (Bandwidth, Delay, Reliability, Load, MTU). How do routing protocols handle this? It is called the seed metric. This is what the external prefixes will have for a metric as they start life in the new routing protocol domain (the internal domain). Different routing protocols have different default seed metrics. For example, OSPF will default prefixes to a cost of 20 if you do not specify another value, while EIGRP will not accept external prefixes without a seed metric specified.
  • I recommend you always set a seed metric in the CCIE lab exam. This prevents you from worrying about whether or not it is required. The only exception to this of course would be if the explicit redistribution instructions tell you that you are to use the default seed metric. Note that this is highly unlikely.
  • Context sensitive help is absolutely critical during redistribution. This will remind you of particulars for each protocol. For example, during redistribution into OSPF, you will be reminded of the subnets keyword and the two different types of external prefixes that you can specify.
  • What can go wrong after redistribution? Well, two things really. One is that your traffic can take a suboptimal path through the network. This is not really a scare in the CCIE lab exam, unless the instructions explicitly or implicitly indicate a path a to take. The second is the scarier one, routing loops. The great news is these are much harder to create then they are to fix typically. Routing protocols have built in mechanisms like administrative distance and routing logic to avoid these loops. The chances of you accidentally stumbling into a routing loop creation during your lab configuration is pretty slim.
  • The success of your redistribution, or its failure, or even the rare creation of a routing loop can easily be detected with the powerful debug command of debug ip routing.
  • If full reachability is the goal of your redistribution in the lab exam, this can easily be tested with a ping script to automate this testing.

The next post regarding CCIE lab redistribution will demonstrate what we have discussed in this first post. As always, thanks for reading and I welcome your comments below!