johnwest43 wrote: » I was wondering if anyone studying for Route would want to setup a lab study group. What i was thinking was each person puts together a lab, gets it working then sends the config files to someone else in the group to "break" them and send them back to owner to load into the routers in their lab and try to find and fix the problem (kind of like the original CCIE exam). Or maybe even some of the more experienced Cisco guys could lend a hand in the "breaking process". Does this interest anyone? if so maybe we can do the same for Switch and T-Shoot. Thanks
JaCkNiFe wrote: » A limiting factor I see for some members would be access to Cisco's IOS. I think taking a headcount of who wants to participate and finding a common IOS(s) (within reason) may help with supported features, etc.
wrwarwick wrote: » Sounds interesting. Count me in. Now to figure out how to organize this...
pham0329 wrote: » Lab 1 - no default metric were specified when redistributing into EIGRP, thus the routes are marked as unreachable.
gbadman wrote: » Nice one DPG I think there's a little bit more wrong with lab 1 than the lack of a seed metric. R2 isn't redistributing the 192.168 network into ospf, since it's a connected route rather than learned via eigrp. Redistributing connected routes would fix that problem.
pham0329 wrote: » You're right. This is what happens when you assume there's only one problem with the lab , and only have notepad to view the config with
gbadman wrote: » I think there's a little bit more wrong with lab 1 than the lack of a seed metric. R2 isn't redistributing the 192.168 network into ospf, since it's a connected route rather than learned via eigrp. Redistributing connected routes would fix that problem.
MrBrian wrote: » You don't really need to redistribute connected for R3 to receive the 192.168.0.0/30 network from R2. This topic threw me off for awhile! In this case we'll look at redistributing EIGRP into OSPF. Most everywhere you read about redistribution, it says that the router will look in its routing table for EIGRP routes, and then put those in the OSPF database so it can advertise them out. True.. But there's also something else... In this example, R2 doesn't have the routes in its routing table because they're connected. However, since EIGRP is running for that interface (because of the network command applied to it) it will advertise the route. Also, this is why we see the connected route between R2 and R3, over on R1 in the EIGRP domain (even though it's not in R2's routing table as an OSPF route)... So we don't need to do a redistribute connected. You can do a "sho ip ospf int brief" you'll see the int's that OSPF is running on.. this definitely threw me off for a while. Especially since the books I was reading didn't really mention it. Here's an example from Cisco that is pretty much identical to this case.. In the contents at the top, click 'Connected Routes' and take a look at that section. At the very end of the section it talks about this process. HthRedistributing Routing Protocols - Cisco Systems
MrBrian wrote: » If we want to create our own labs and then post our configs for people to break, I'd think we should also post the topology for our configs as well. And maybe explain our goals for the topology. That way anyone that wants to break the configs for us will know good things to mess up for that topology situation. It would be tough to piece it all together if we just had running configs for like, 5 routers or something. Just a thought..
gbadman wrote: » There's a second point that's still causing me a bit of grief though. It had been my understanding that the network statement under the routing process only caused networks to be advertised for those interfaces with subnets within the defined network. That Cisco doc seems to suggest that too. However it would appear from lab 1 that the subnet of an interface doesn't have to be within the defined mask. It can be greater than the mask. So for instance in the lab, the /30 networks are advertised even though /32 masks have been defined under the routing processes. This leads me on to the problem I had that led me down the dubious redistribute connected alley. The lab only works for me when I change the mask of the 192.168 network to /30 under the routing process. Any illumination would be most welcome.