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 …)
@Tk
please send me new dumps . {email not allowed}
@TK abhijit.kute83 @ gmail .com
hi all freinds can anyone send me the latest dumps {email not allowed}
ebaidaliyev @@ gmail
@TK
@justme {email not allowed}
@TK, @justme, can you guys send it to my email aswell?
Thanks “*
jenny_chey @ yahoo.com
@TK Hope you are okay, I appreciate if you share the dump you have to {email not allowed}
hi all freinds can anyone send me the latest dumps lichbtt @gmail . com
@TK, @justme, can you send it to my email aswell?
Thank You!!!! ;))
toni.t.m @ gmail dot com
Have test scheduled for 1/17/17 – can someone provide latest dumps thanks!!
fruckNbike @ yahoo dot com
Cleared Exam Today … !!!!
149Q +Tagwa 41 Qs are still valid.
Got the followng Labs+Sim in exam
OSPF Evaluation
EIGRP OSPF Redistribution
Policy Based Routing
OSPFv3 Virtual Link
Thanks DigitalTut and all those who shared their knowledge and useful stuff.
Others who are preparing for exam — Best Of Luck —
{email not allowed} i have exam on 20th of january please send me latest material
please send latest material {email not allowed}
Bikinifigur spricht und wir uns im Spiegel betrachten, sehen wir sie, diese Fettpölsterchen.Auch wenn Sie sich dort drei Mal die Woche f r 1 Stunde nur auf den Hometrainer setzen und in die Pedale treten, bedeutet das schon eine wirkungsvolle Kalorien-Verbrennung.Zum Binden von Suppen und Saucen verwenden Sie Mehl oder Maisstärke mit Milch verrührt statt der üblichen fetten Einbrenn.Semmelknödel 1 Portion à 2 Knödel 75 g Knödelbrot 1 1 2 Brötchen bei sehr trockenem Knödelbrot wird etwas mehr Milch benötigt ca.Tipp 8 Damit Sie nicht in die Versuchung kommen, sportliche Aktivit ten hinaus zu schieben, empfiehlt es sich, in Ihrem Terminkalender die Trainingstage fix vor zu merken.Tipp 2 Viel trinken, aber richtig.
http://cjjkvznj.xsl.pt/63d178756oq7-a1k7.html
@coolguy — ur provided email address already has been removed.
Just email me on ictpro at hotmail dot com .. I will reply back with material
Good Luck :)
Hi friends. Need your help. Can anyone please send me ROUTE dumps : “djpatankar at gmail dot”
com . Help is highly appreciated dear friends. Many thanks in advance
can someone provide latest dumps thanks, southern.kicks16@ gmail.com
149Q +Tagwa 41 Qs PLEASE HELP taking the exam on the 21th THANK YOU southern.kick16 @ gmail.com
@CoolGuy Please share 149Q +Tagwa 41 Qs Thank you southern.kicks16ATgmail.com
@Thankfulguy — Plz check ur inbox.
Hello Guys
Could you, please, send me the Tagwa 41Q material? My email is lilianbeti @ gmail.com
Tks a lot!!
Are the OSPF Sim, IPv6 OSPF Virtual Link Sim and EIGRP Stub Sim not being asked anymore?
I pass my exam today with 947 marks. 149 + 41 are 100% valid. All questions from these two dumps nothing else.
OSPF V3
OSPF Evaluation
Redistribution
PBR
OSPF V2
CHAP Drag and Drop
Hello @malik
Could you please send me the valids dumps? lilianbeti @ gmail.com
Tks!
I just pass the exam
all from 183Q passleader +41
labs are all the same except OSPF Sim , it is not asking to do Stub it is just normal OSPF configuration do show run and see the missing networks and add it then do ping to the loopback
all 3 choices are there in exam randomise focus more on three choices
chap Drag and drop , thanks all except to those who didnt reply to my mails
hurry up and take it quickly
my e mail is osamamelhim at gmail dot com for any query iam ready
Can someone please send me TAGWA on dr.freeman91 at gmail . com
@CoolGuy Please share 149Q +Tagwa 41 Qs! lilianbeti @ gmail.com
Thank you!!
Anyone with Tagwa 41 please send to {email not allowed}
Anyone with Tagwa 41 please send to kringia at gmail dot com
Kiringia you add wrong email i send to you and i got error back
Dr freeman and lilian please check you emails
hi osama can u send me dumps my email is {email not allowed}
hi to all newly passers, can you share us where did you find 149Q + Tagwa 41Q? please???
hi osama can you share dumps to jmdelrio dot grupobal at gmail dot com ?
hi @ osamafrom_Jordan and anyone else that can help could I the dumps as well please exam next week well revised but need to be better prepared graveetty @ gmail . com or graveetty At gmail Dotcom
{email not allowed}
anyone need the help or Dump email me back please
osamamelhim at gmail dot com
HI all, please can anyone send me latest dump or .pdf at: talbowl1022@gmail.c o m
Thx very much
Hi Guys,
From following link CCNP Labs +149Q +Tagwa 41 Qs can be downloaded.
Note: Remove (total 8)”$” from the link to work
ht$$tps:$$//1drv.ms/f/$$s!Aq7EzlPsYq2YgSN-WUs6kzGVn2V9K$$
the link to download CCNP labs +149Q dosn’t work (already removed $)
please can you check it and resend?
thks
Hello Osama, would you please use the below email to share that dump media? I thank you in advance
ariel_cordero9321 at hotmail . com
anyone need the help or Dump email me back please
osamamelhim at gmail dot com
hi anonymous please send me to dchaps_kevin at gmail dot com
hi anonymous please send me to dchaps_kevin at yahoo dot com
please share valid dumps to ===> almostafa.dar at gmail dot com
Checked its working
,
From following link CCNP Labs +149Q +Tagwa 41 Qs can be downloaded.
https://1drv.ms/f/s!Aq7EzlPsYq2YgSN-WUs6kzGVn2V9
@dodo Sorry My bad — u need to remove 8 $ and letter “K” just at the end of link before $ sign
ht$$tps:$$//1drv.ms/f/$$s!Aq7EzlPsYq2YgSN-WUs6kzGVn2V9K$$
Hi guys, I have passed my ccnp routing exam yesterday at (23/1/2017) with score (973), actually the dumps of 149q and 41q tagwa is still valid.
Most the question came from the 41q tagwa, so you have to study it very well,
BUT it important to study also the dump of 183q/32q/8q because it contain a lot of questions that you will not find them in both 149q and tagwa 41q dumps, in my exam none of new questions of 183q/32q/8q came, but I recommended to studied any way
The sim in my exam:
-ospf eigrp redistribution
-ospf evaluation
-ospfv3 with virtual-link
-ospf sim
-policy based routing sim
The drag and drop:
-CHAP drag (in tagwa 41q)
Important notes about the sims:
Regarding to sims , you should be careful because you might find that there some minor changes in the sims (like ip addess, subnets , ospf process numbers , eigrp autonomous number and so on) so check with show run command if that possible before starting the configuration, don’t not rush to configure blindly .
In my exam, there was some little change in ospf evaluation, I mentioning below the question with changed answer:
The question:
Which of the following statements is true about the serial links that terminate in R3?
A. The R1-R3 link needs the neighbor command for the adjacency to stay up
B. The R2-R3 link OSPF timer values are 30, 120, 120
C. The R1-R3 link OSPF timer values should be 10,40,40
D. R3 is responsible for flooding LSUs to all the routers on the network.
In dumps sim you will find that the correct answer is B, but in my exam that was not true, because I found that the exam changed the link R2-R3 timers to 10,40,40 and it was point-to-point link.
also I found The link R1-R3 timer was 30,120,120 non-broad cast link, so both of the answers A , B are wrong .
Also D was wrong because, R3 was not the DR in all the links,
The right answer was A, because the link R1-R3 is non-broad-cast link so neighborship should be configured manually.
So it is important to be carful .
Important notes about tagwa 41q dump:
It is important to mention that in tagwa 41q dump there some questions with wrong answers, here below I mentioned the question with the wrong answers:
Question 2
Refer to the following configuration command.
router(config)# ip nat inside source static tcp 172.16.10.8 8080 172.16.10.8 80
Which statement about the command is true?
A. Any packet that is received in the inside interface with a source IP port address of
172.16.10.8:80 is translated to 172.16.10.8:8080.
B. Any packet that is received in the inside interface with a source IP port address of
172.16.10.8:8080 is translated to 172.16.10.8:80.
C. The router accepts only a TCP connection from port 8080 and port 80 on IP address
172.16.10.8.
D. Any packet that is received in the inside interface with a source IP address of 172.16.10.8
is redirected to port 8080 or port 80.
Answer:A
Tagawa say the right answer is A , but that wrong the right answer is B (this question came in my exam)
—
Question 28
A network engineer wants to ensure an optimal end-to-end delay bandwidth product. The delay is
less than 64 KB. Which TCP feature ensures steady state throughput?
A. Window scaling
B. Network buffers
C. Round-trip timers
D. TCP acknowledgments
Answer:A
Also that wrong the right answer is B
For the dumps, you can send me at ahmedrofaii at gmail dot com , I will be glad to send them to you freely , for routing dumps and for switching , tshoot dumps
I wish for you good luck in your exam 3
no window scaling is the correct answer
Hi Ahemed,
It makes sense that this is the right answer … I do not understand why not!
A. Any packet that is received in the inside interface with a source IP port address of
172.16.10.8:80 is translated to 172.16.10.8:8080.
Can someone please send the valid dumps 300-101 davidkeys @ twc.com