OSPF Evaluation Sim
You have been asked to evaluate an OSPF network and to answer questions a customer has about its operation. Note: You are not allowed to use the show running-config command.
Although in this sim we are not allowed to use “show running-config” command but we post the configuration here so that you can understand more about the topology.
R1 interface Loopback0 ip address 1.1.1.1 255.255.255.255 ! interface Serial0/0 ip address 192.168.13.1 255.255.255.0 ip ospf network non-broadcast no shut ! router ospf 1 network 192.168.13.0 0.0.0.255 area 0 network 1.1.1.1 0.0.0.0 area 0 |
R2 interface Loopback 0 ip address 2.2.2.2 255.255.255.255 ! interface S0/0 ip address 192.168.23.2 255.255.255.0 ip ospf network non-broadcast no shut ! router ospf 1 network 192.168.23.0 0.0.0.255 area 0 network 2.2.2.2 0.0.0.0 area 0 neighbor 192.168.23.3 |
R3 interface Loopback 0 ip address 3.3.3.3 255.255.255.255 ! interface Ethernet0/0 ip address 192.168.34.3 255.255.255.0 no shut ! interface S1/0 ip address 192.168.23.3 255.255.255.0 ip ospf network non-broadcast no shut ! interface S1/1 ip address 192.168.13.3 255.255.255.0 ip ospf network non-broadcast no shut ! router ospf 1 network 192.168.13.0 0.0.0.255 area 0 network 192.168.23.0 0.0.0.255 area 0 network 192.168.34.0 0.0.0.255 area 1 network 3.3.3.3 0.0.0.0 area 0 area 1 virtual-link 4.4.4.4 neighbor 192.168.23.2 |
R4 interface Loopback 0 ip address 4.4.4.4 255.255.255.255 interface Ethernet0/0 ip address 192.168.34.4 255.255.255.0 no shut ! interface Ethernet0/1 ip address 192.168.45.4 255.255.255.0 no shut ! interface Ethernet0/2 ip address 192.168.46.4 255.255.255.0 no shut ! router ospf 1 network 192.168.34.0 0.0.0.255 area 1 network 192.168.45.0 0.0.0.255 area 2 network 192.168.46.0 0.0.0.255 area 3 network 4.4.4.4 0.0.0.0 area 1 area 1 virtual-link 3.3.3.3 area 2 nssa area 3 stub no-summary |
R5 interface Loopback0 ip address 5.5.5.5 255.255.255.255 interface Loopback1 ip address 5.5.1.1 255.255.255.255 interface Loopback2 ip address 5.5.2.1 255.255.255.255 interface Loopback3 ip address 5.5.3.1 255.255.255.255 interface Loopback4 ip address 5.5.4.1 255.255.255.255 interface Ethernet0/0 ip address 192.168.45.5 255.255.255.0 no shut ! router ospf 1 network 192.168.45.0 0.0.0.255 area 2 network 5.5.0.0 0.0.255.255 area 2 area 2 nssa |
R6 interface Ethernet0/0 ip address 192.168.46.6 255.255.255.0 no shut interface Loopback 0 ip address 6.6.6.6 255.255.255.255 ! router ospf 1 network 192.168.46.0 0.0.0.255 area 3 network 6.6.6.6 0.0.0.0 area 3 area 3 stub |
Some notices from above configuration:
+ The OSPF network type between R2 & R3 is non broadcast.
+ R3 and R4 is running virtual-link to connect Area 2 & 3 to Area 0
+ Area 2 is a NSSA area while Area 3 is a Totally Stubby area
You can download this sim to practice at http://www.digitaltut.com/download/ROUTE_OSPF.zip. Please use GNS3 with version older than v1.0 to open it (v0.8.3.1 for example). IOS used in this lab: c3640-jk9s-mz.124-16.bin
Question 1
Explanation
To check OSPF LSA we should use the “show ip ospf database” command on R5:
In this sim there is no LSA Type 4 because there is no ASBR so maybe this question wants to ask about LSA Type 3 (Summary Net Link States).
Note: LSA Type 4 is generated by ABR, not ASBR but without ASBR inside the network there are no LSA Type 4 generated. For more information about OSPF LSA Types please read our OSPF LSA Types Lab tutorial.
R3 advertises LSA Type 1 to R4 then R4 converts it into Type 3 and sends to R5 (because R4 is the ABR) so we see the “Link ID” 3.3.3.3 of R3 is advertising by R4 (4.4.4.4). According to the “Age” column, this LSA was advertised 1858 seconds ago.
Question 2
Explanation
Check the Serial1/0 interface of R3 which is connected to R2 with the “show ip ospf interface serial 1/0” command:
There are two things we should notice from the output above:
+ The “network type” connection between R2-R3 is “NON_BROADCAST” (usually we have “BROADCAST”). OSPF neighbors are discovered using multicast Hello packets. In non broadcast environment, multicast (and broadcast) messages are not allowed so OSPF neighborship cannot be formed automatically. Therefore we have to establish OSPF neighborship manually by using “neighbor ” command under OSPF process (OSPF will send unicast Hello message to this address). For example on R2 we have to use these commands:
router ospf 1 neighbor 192.168.23.3 |
And on R3:
router ospf 1 neighbor 192.168.23.2 |
+ For non broadcast environment the default Hello timer is 30 seconds; Dead timer (time to wait before declaring a neighbor dead) is 120 seconds and Wait timer (causes the interface to exit out of the wait period and select a DR on a broadcast network. This timer is always equal to the dead timer interval) is 120 seconds. In the output we also see the default timers for non broadcast network.
Question 3
Explanation
We can check the number of executed SPF algorithm via the “show ip ospf” command on R4:
In the output above we can see SPF has been executed 9 times.
Question 4
Explanation
Area 2 (of R5) is a Not-so-Stubby area (NSSA). You can check it by the “show ip ospf” command on R4 or R5 (in Area 2 section). For example, below is the output of “show ip ospf” command on R5:
In general, NSSA is same as normal area except that it can generate LSA Type 7 (redistribute from another domain) so we can see both Loopback interfaces of R5 & R6 in the routing table of R5.
Note: NSSA does not receive a default route by default so you will not see a default route on R5.
Area 3 (of R6) is a Totally-Stubby area so R6 only has one default route to outside world. You can check with the “show ip ospf” command on R4 and R6 (area 3 section):
Notice that on R4 you will get more detail (shows “stub area, no summary LSA”) than on R6 (only shows “stub area”).
R6 is in a totally-stubby area so we will not see any R5’s Loopback interfaces in R6 routing table:
Note: You can see a default (summary) route to the outside (O*IA 0.0.0.0/0 …)
Where are the questions?
update ccnp dumps
dumpspro.com/ccnp_dumps.php
Hello to all !
Please, can you send me the the 539q dumps ?
My address email is adnan255 @ hotmail . com !
Thank you for your support !!!
Hi guys,
Can anyone please send me latest ccnp routing 300-101 dump at jigar231 @ gmail dot com
Thanks in advance.
Hello to all,
Can you please send me the dumps 539q?
Email : salauddin.ete @ gmail.com
can you please send me the latest dump for ccnp routing 301-101 at {email not allowed}
can you please send me the latest dump for ccnp routing 301-101 at {email not allowed}
{email not allowed}
Failed the test yesterday
SIMS were OSPF/EIGRP evalutions and EIGRP stub .
BUT there were so many questions I never see before !!!! .It was not funny :).
I would say master all questions on this site .Listen/read/study as much material you can then you can pass the test .
i downloaded the same tutorial but got different details when i write this command ( show ip ospf database ) ..
Hi Guys, I passed in routing exam today. The LAB are the same here, however in my exam there was a lot questions about Ipv6, NTP, SNMP, EVE none questions about OSPF and BGP.
Two LABs PBR and EIGRP.
Hi Guys, I want to ask, that if in OSPF evaluation lab in exam, you do not enter the commands on routers but your answers are correct ; then will you be awarded marks for your selection or not ??
Hi ,
Can someone send the dumps updated of 300-101
Please i need urgent GNS3 version that is running the CCNP route LABS.
My exam after 2 days
Hello, can anyone please share with me the CCNP routing?
Must take exam before cert expires in Aug.
THX
{email not allowed}
ruca mana @ gmail .com
Thank you very much, I appreciate your help
please who can share the latest route DUMP i will takethe exam in two days pleaaase {email not allowed}
please who can share the latest route DUMP i will takethe exam in two days pleaaase
kahlerras . imen @ gmail .com
Hi guys, I passed my route exam today. Despite the fact that i mistakenly moved to the next question in the exam without configuring a lab sim. I totally lost hope initially until the result was out. You can also make the exam once
email me to get preparation material i used and guide.
tomiwas64 @ gmail . com
exam 100% valid CCNP Exam questions
dumps
pro
dot
com
Hi Guys Can Anyone send me latest route dumps that are valid to take the test in a week???, mail me at {email not allowed}
Can i get the CCNP dumps for route 300-101. Please assist me.
sanujany at gmail dot com
thanks in advance
can someone kindly send me the latest ccnp dumps 300-101?
thank you in advance
dennisraden8 at gmail dot com
Please provide me the latest dumps for CCNP Route , my exam is on this Friday.
ardhirocks at gmail dot com
Q1: my explanation:
So, we have to know that when an ASBR send a LSA type 1 to an ABR, the ASBR will flip just one bit to say, me I am ASBR,
When an ABR received this kind of LSA, it will say to all other that this Router ID is an ASBR by creating a type 4 LSA and flooding it in its own area.
This LSA type 4 will be flooded in all the other areas so that all routers in all areas will know where to find the ASBR.
So the router R3 is supposed ASBR here, so this router will flip a bit to tell R4 that it is ASBR, and R4 will flood it to R5 an R6.
The the line we have to check is the age of the R3 who is the creator of this LSA type 1 where it flipped one bit.
All other responses are not okay
I answered to Q1 as anonymous but that’s me.
Q2: This question is also a confusing question because, effectively we need to put the neighbor command to realise the adjacency simply cuz we are in a non-broadcast domain, so multicast of helos on the 224.0.0.5 and 224.0.0.6 are not performed, we can see it on the show ip ospf interface serial 1/0 command (the keyword broadcast)
But in the other side timers 30, 120, 120 on the link R2-R3 is a good response.
My opinion is that we dont need to put the command neighbor on R2 and R3 because the adjacency is done yet, we can see it on the line : neighbor count is 1, adjacent neighbor count is 1
so I suppose that this task to put the neighbor command is done yet and we dont need to put it another time.
This is a confused question but it is my opinion.
:)
Q1. I have put the sim on GNS3.
question: How old is the type 4 LSA from Router 3 for area 1 on the router R5 based on the output you have examined?
So:
On the router 3 when ask for the ospf database: show ip ospf database asbr-summary
we see that R3 with router ID 3.3.3.3 is the advertiser of two asbr-summary LSAs, one concerning area 0 and the other concerns area 1, and the question was asked to chek the LSA wich concerns area 1
it is this one:
Summary ASB Link States (Area 1)
LS Type: Summary Links(AS Boundary Router)
Link State ID: 4.4.4.4 (AS Boundary Router address)
Advertising Router: 3.3.3.3
we have to look at the 4.4.4.4 age on router R5,
This is my comprehention and I think that the good response is 1858 according to the output show on the response on dumps.
To have dumps go to the site:
http://examsforall.com
Nobody is going to send you dumps, you have to got it yourself, dont be lazy, becaause if you are lazy you will not pass the exam.
to have dumps, the lastests, you have to read all my comments.
Dont be lazy
hihihi
latest dumps.
100% Guaranteed VALID passing Material
CCNA 200-125 LAtest Dumps
CCNP ROUTE 300-101 Latest Dumps
CCNP SWITCH 300-115 LAtest Dumps
CCNP TSHOOT 300-135 LAtest Dumps
CCIE R&S 400-101 LAtest Dumps
https://docs.google.com/document/d/e/2PACX-1vRPAVbrqViyQ-v6aViLk-JBdX3XKLatFEASJha1zkubS_Ehy6eEqZc0xl-P1ixOSKZv0gyfMWdwW6E8/pub
Call 24/7 for instant help
001 (347) 696-4896
can you please send latest dumps for ccnp route on my email kazerovixen @ yahoo . com
thank you!!!
Hi Everyone,
Can any one please explain why on question 2, we use sh ip ospf interface s1/0 though we have another serail inteface s1/1
Hello All,
Can Anyone send me latest route dumps that are valid to take the test in a week???, mail me tolgaavtan @ hotmail.com
@mujib
sh ip ospf interface would also help. In this question we are trying to see the Hello and Dead timer values for each interface.
Hi
On ospf question 2 on router3 there are two interfaces, then why we use only show ip ospf interface serial 1/0, and why not serial interface s1/1.
Can Anybody Explain please
Can you please send ccnp route latest dumps on my email sajib.aece @ gmail . com
Thanks in advance.
So, do we need the neighbor command for the routers to stay up or no? This is what you need to answer, can you?
or is it the timers? can you please be short and simple?
Hi everybody
Please shared last update dump for ccnp route to my email birdyaha[at]hotmail [dot]com
thank a lot
dhru underscore xxx at yahoo dot com
For the dumps please go to the comment thread in Share your ROUTE v2.0 Experience
For question: How old is the type 4 LSA from Router 3 for area 1 on the router R5 based on the output you have examined?
The age keeps on incrementing. Also the answer according to output is not from the MCQs at all.
H
tt p:
t. cn/RD
f3 WX2
You can go here and see that there is a lot of information inside, it is very comprehensive, I hope to help you.
Hello.
could you send me actual question to sys.yuriy at gmail.com.
Thanks.
Please can anyone share latest dumps for ccnp route exam (300-101) on amin.asna89 @ gmail.com
Thanks.
Hello guys, please can anyone share latest dumps for ccnp route exam (300-101) to email extreme_z3r0 @ hotmail.com .. Thanks
I buy the exam of 300-101 in Exact2pass.com , it is really good and useful, i have passed the exam successfully. i will share with my friend .
hello William, please can send me your exam at {email not allowed} ….thanks
hello William, please can you send me your exam at bluestackexam01 @ gmail.com ….thanks
can anyone share me latest dump please.. NCROY88 @ yahoo.com
Hi William, can you please send me route 300-101 exam: kenade152 @ yahoo.com
Thank you in advance!