Comments on: CCNA – WAN 2 http://www.9tut.com/ccna-wan-2 CCNA Training with Questions, Answers and Explanations Mon, 01 Jun 2015 21:10:05 +0000 hourly 1 http://wordpress.org/?v=3.9.6 By: Daniele http://www.9tut.com/ccna-wan-2/comment-page-7#comment-2603806 Sun, 08 Mar 2015 12:50:10 +0000 http://www.9tut.com/?p=801#comment-2603806 Since Q7 was very confusing I tried in a PT lab having the opposite behaviour respect Cisco4ever one. I made the most basic configuration I could. The frame-relay cloud was configured with dlci 50 facing Router A (supposedly the left one) and dlci 75 facing Router B (supposedly the right one), and the connection between them was added.

Pings didn’t work while in Router A inverse-arp correctly showed 192.168.2.1 behind the proper serial interface and using dlci 50. The explanation is very simple: if the two peers are in different L3 subnets they will not be directly connected and so the peer is unreachable.

To me the “most likely clause” implies those assumptions:
1. basic frame-relay configuration (simple “encapsulation frame-relay” statement inside an interface, no manual mapping)
2. since a mask is not specified in the question I would use the classful one, a /24

So, given that two IP addresses on two different subnets would not be seen as directly connected in the routing table, the IP address configured in Router A should fall in the network 192.168.2.0/24, the same of RouterB.
That’s why my answer woud be “D. incorrect IP address”

Nonetheless I think the question is very ambiguous (or, better, totally wrong), since some pieces are definitely missing. I hope it is a wrong transcription or it has been corrected in the real exams by now.

Following, some meaningful outputs of my lab:
!
! RouterA
!
RouterA#show running-config
! many lines omitted
!
interface Serial0/0/0
description toWAN
ip address 192.168.1.1 255.255.255.0
encapsulation frame-relay
!
! many lines omitted

RouterA# show frame-relay lmi
LMI Statistics for interface Serial0/0/0 (Frame Relay DTE) LMI TYPE = CISCO
Invalid Unnumbered info 0 Invalid Prot Disc 0
Invalid dummy Call Ref 0 Invalid Msg Type 0
Invalid Status Message 0 Invalid Lock Shift 0
Invalid Information ID 0 Invalid Report IE Len 0
Invalid Report Request 0 Invalid Keep IE Len 0
Num Status Enq. Sent 28 Num Status msgs Rcvd 27
Num Update Status Rcvd 0 Num Status Timeouts 16

RouterA# show frame-relay pvc

PVC Statistics for interface Serial0/0/0 (Frame Relay DTE)
DLCI = 50, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0/0

input pkts 14055 output pkts 32795 in bytes 1096228
out bytes 6216155 dropped pkts 0 in FECN pkts 0
in BECN pkts 0 out FECN pkts 0 out BECN pkts 0
in DE pkts 0 out DE pkts 0
out bcast pkts 32795 out bcast bytes 6216155

RouterA# show frame-relay map
Serial0/0/0 (up): ip 192.168.2.1 dlci 50, dynamic,
broadcast,
CISCO, status defined, active

RouterA#show ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

C 192.168.1.0/24 is directly connected, Serial0/0/0

!
! ROUTER B
!

RouterB#show running-config
! many lines omitted
!
interface Serial0/0/0
description toWAN
ip address 192.168.2.1 255.255.255.0
encapsulation frame-relay
!
! many lines omitted

RouterB#show frame-relay lmi
LMI Statistics for interface Serial0/0/0 (Frame Relay DTE) LMI TYPE = CISCO
Invalid Unnumbered info 0 Invalid Prot Disc 0
Invalid dummy Call Ref 0 Invalid Msg Type 0
Invalid Status Message 0 Invalid Lock Shift 0
Invalid Information ID 0 Invalid Report IE Len 0
Invalid Report Request 0 Invalid Keep IE Len 0
Num Status Enq. Sent 154 Num Status msgs Rcvd 153
Num Update Status Rcvd 0 Num Status Timeouts 16

RouterB#show frame-relay pvc

PVC Statistics for interface Serial0/0/0 (Frame Relay DTE)
DLCI = 75, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0/0

input pkts 14055 output pkts 32795 in bytes 1096228
out bytes 6216155 dropped pkts 0 in FECN pkts 0
in BECN pkts 0 out FECN pkts 0 out BECN pkts 0
in DE pkts 0 out DE pkts 0
out bcast pkts 32795 out bcast bytes 6216155

RouterB#show frame-relay map
Serial0/0/0 (up): ip 192.168.1.1 dlci 75, dynamic,
broadcast,
CISCO, status defined, active

RouterB#show ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

C 192.168.2.0/24 is directly connected, Serial0/0/0

!
! TEST 1
!

RouterA#ping 192.168.2.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.1, timeout is 2 seconds:
…..
Success rate is 0 percent (0/5)

!
! TEST 2
!
! Config changes to make the two class C subnets in the same supernet
!
RouterA#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
RouterA(config)#interface serial 0/0/0
RouterA(config-if)#ip address 192.168.1.1 255.255.0.0
RouterA(config-if)#end
RouterA#
%SYS-5-CONFIG_I: Configured from console by console

RouterA#show ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

C 192.168.0.0/16 is directly connected, Serial0/0/0

RouterB#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
RouterB(config)#interface serial 0/0/0
RouterB(config-if)#ip address 192.168.2.1 255.255.0.0
RouterB(config-if)#end
RouterB#
%SYS-5-CONFIG_I: Configured from console by console

RouterB#show ip route
Codes: C – connected, S – static, I – IGRP, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2, E – EGP
i – IS-IS, L1 – IS-IS level-1, L2 – IS-IS level-2, ia – IS-IS inter area
* – candidate default, U – per-user static route, o – ODR
P – periodic downloaded static route

Gateway of last resort is not set

C 192.168.0.0/16 is directly connected, Serial0/0/0

!
! TEST 2
!
RouterA#ping 192.168.2.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/20/27 ms

]]>
By: Ayad http://www.9tut.com/ccna-wan-2/comment-page-7#comment-912173 Thu, 27 Mar 2014 16:33:46 +0000 http://www.9tut.com/?p=801#comment-912173 question 7.The question and the answer are not correct!!!

]]>
By: Anonymous http://www.9tut.com/ccna-wan-2/comment-page-7#comment-816456 Wed, 05 Feb 2014 00:17:13 +0000 http://www.9tut.com/?p=801#comment-816456 yes . question 7 is ambiguous

]]>
By: Anonymous http://www.9tut.com/ccna-wan-2/comment-page-7#comment-602410 Sat, 02 Nov 2013 19:16:35 +0000 http://www.9tut.com/?p=801#comment-602410 the question 7 is so ambiguous

]]>
By: ecoluesillopy http://www.9tut.com/ccna-wan-2/comment-page-7#comment-485165 Sat, 28 Sep 2013 17:19:42 +0000 http://www.9tut.com/?p=801#comment-485165 味の素スタジアム(東京都調布市)北側広場にて、アウトレットモールなどのショッピング施設、その恩恵は周辺地域に波及している車で分強の距離にある日帰り温浴施設.
http://www.lovesrob.com/
If you will be giving the wallet to a woman, You don’t market for the sake of doing so Anne speaks around the world who was thrust in to a key starting role in the receiving game following ?

]]>
By: ポールスミス 財布 http://www.9tut.com/ccna-wan-2/comment-page-6#comment-470993 Thu, 26 Sep 2013 01:41:27 +0000 http://www.9tut.com/?p=801#comment-470993 Paul Cruz wallet features designs that happen to be suitable for both males and females In fact, the paul smith belts includes almost become synonymous by using loud and appealing outfits, exclusively for men. ポールスミス 財布 http://www.008dl.com/ paul smith

]]>
By: Mahad http://www.9tut.com/ccna-wan-2/comment-page-6#comment-463065 Tue, 24 Sep 2013 16:58:53 +0000 http://www.9tut.com/?p=801#comment-463065 Yea I know Q7 is confusing, I looked at most of the posts, i don’t know why they overcomplicated something simple . When I look at the map statement it’s incomplete, you need two statement to get the full connection and i think that’s what they mean by incorrect statement. As for the IP address we don’t know that mask so we can’t say for sure, even though it would be more logical. Hope this helps, I’m going for the test this week, second try, can anyone please email me the latest dumps thanks mahadali@yahoo.com

]]>
By: q7 http://www.9tut.com/ccna-wan-2/comment-page-6#comment-458967 Mon, 23 Sep 2013 05:12:42 +0000 http://www.9tut.com/?p=801#comment-458967 answer d) incorrect ip address 192.168.1.1 to 192.168.2.2 are in diferent subnet

]]>
By: Anonymous http://www.9tut.com/ccna-wan-2/comment-page-6#comment-457826 Sun, 22 Sep 2013 21:55:39 +0000 http://www.9tut.com/?p=801#comment-457826 Q7 did indeed have a second graphic showing the actual map statement, which had the remote DLCI tied to the remote IP – which is not correct. Ergo, C

]]>
By: sonam http://www.9tut.com/ccna-wan-2/comment-page-6#comment-446124 Wed, 18 Sep 2013 10:29:26 +0000 http://www.9tut.com/?p=801#comment-446124 Every one go to 9tut.com for ccna

]]>
By: Konan http://www.9tut.com/ccna-wan-2/comment-page-6#comment-434579 Sat, 14 Sep 2013 20:54:11 +0000 http://www.9tut.com/?p=801#comment-434579 Has anyone passed exam with 1000/1000 score,and q7 was in exam?)
if there is such person please say what u marked in exam for q7))

]]>
By: reendedamma http://www.9tut.com/ccna-wan-2/comment-page-6#comment-427210 Thu, 12 Sep 2013 11:40:26 +0000 http://www.9tut.com/?p=801#comment-427210 http://www.azurema.com/
ピッタリです。笑顔を忘れずギターを弾きながら歌う彼らから本物のプロとしての姿勢とともに長い間付き合ってきた友人のような雰囲気を感じることができた」と伝えたBusker BuskerのスペシャルグラビアはNYLONパワーアップ、.

]]>
By: jasostrong http://www.9tut.com/ccna-wan-2/comment-page-6#comment-424074 Wed, 11 Sep 2013 13:29:44 +0000 http://www.9tut.com/?p=801#comment-424074 Thanks 9tut. I made it. I passed my CCNA 200-120 today. The sim is Access-list 1 , Access-list 2 & EIGRP. A lot of new questions like Netflow, Syslog, SNMP, VRRP, and GLBP.

]]>
By: Anonymous http://www.9tut.com/ccna-wan-2/comment-page-6#comment-421972 Tue, 10 Sep 2013 19:40:29 +0000 http://www.9tut.com/?p=801#comment-421972 Q 7 Ans is C. incorrect map statement

]]>
By: beshoy http://www.9tut.com/ccna-wan-2/comment-page-6#comment-406928 Tue, 03 Sep 2013 14:57:06 +0000 http://www.9tut.com/?p=801#comment-406928 Beshoy Abd Elmaseh Mekhail
there are a difference between the relation between IP and DLCI
are we configure the static map as { frame-relay map ip (remote ip ) (local DLCI )}
is this right or wrong ?
is this is the same in frame multipoint and point-to-point ?
Mayberry
interface serial 0/0/0
no frame-relay inverse-arp
frame-relay map ip 199.1.1.2 52 broadcast
frame-relay map ip 199.1.1.3 53 broadcast
but in CBT nugets
frame-relay map ip 199.1.1.2 51 broadcast
please someone show me the correct

]]>
By: johndoe http://www.9tut.com/ccna-wan-2/comment-page-6#comment-398739 Thu, 29 Aug 2013 16:13:27 +0000 http://www.9tut.com/?p=801#comment-398739 Q7. In troubleshooting: You check the config and eliminate the possible causes.
1. The key I think is in the question. ‘Which is the most ”’likely””’ not necessarily the actual cause and because there’s not enough information we cannot assume what we don’t know except if there’s a pointer.

2. We are looking at the network from Router A end so its does not matter what router B has or does not have we cannot tell. Even the question says so.#

Answer:
Mr Net Admin can see that the DLCI map is correct as he is aware of the IP on the remote side as shown in the question.

Local DLCI (Router –> FR switch) is mapped to remote IP destination.

Thus, IP is correct, DLCI map is OK. irrespective of hub and spoke or 1 – 1 connection. Therefore we are sure of this because we have evidence that its correct.

The question is can the bandwidth or LMI type be the problem.

Bandwidth issues will most likely cause congestion and not loss of connection.

Yes, LMI type can cause problems and is a ””likely”” cause since we don’t have evidence that it’s not we can’t eliminate it.

ANSWER is B.

]]>
By: Question 9 http://www.9tut.com/ccna-wan-2/comment-page-6#comment-395829 Wed, 28 Aug 2013 00:07:14 +0000 http://www.9tut.com/?p=801#comment-395829 Q7, if you look at the question ‘after reviewing the command output and graphic’, it says two exhibits should be there. So we are only given a graphic without command output, I guess we can’t tell which one is correct. I rather think there is one more exhibit in the real exam. If anyone saw this question in real exam, please confirm.

]]>
By: Adeel http://www.9tut.com/ccna-wan-2/comment-page-6#comment-394357 Mon, 26 Aug 2013 15:16:04 +0000 http://www.9tut.com/?p=801#comment-394357 Hello Guys I hope you will be fine there. I have CCNA (640-802) and CCNA security (640-554) Vouchers on special discount of 58% for World wide, with six months expiry date till you purchase. Each voucher cost 70USD.
Details Required For CCNA Voucher For Discount Processing:
1-Full Name. 1st Name & Last Name (as you want to appear on certificate & documents)
2-Country.
3-City.
4-State.
5-Pin Code (or Area Code)
6-Residential Address (or where you can collect your Certificate or further correspondence
can be received)
7-Date of birth
Add me on Skype through this information which is written below:
Skype Name: rockon660
you can also email me at this email address which is written below:
madeelqaiser@gmail.com
If you have any Questions feel free to contact me.
Thanks,
Best regards,
Adeel

]]>
By: Alex Trevisan http://www.9tut.com/ccna-wan-2/comment-page-6#comment-392100 Sat, 24 Aug 2013 14:06:13 +0000 http://www.9tut.com/?p=801#comment-392100 what is the correct answer for q7?

]]>
By: aloisius http://www.9tut.com/ccna-wan-2/comment-page-6#comment-381939 Sat, 17 Aug 2013 01:52:45 +0000 http://www.9tut.com/?p=801#comment-381939 hi,

so what is really the correct answer for q7? is it incorrect ip or incorrect map?
thanks.

]]>
By: 9Tut http://www.9tut.com/ccna-wan-2/comment-page-6#comment-379561 Wed, 14 Aug 2013 15:30:11 +0000 http://www.9tut.com/?p=801#comment-379561 q7 it is incorrect ip address oly

]]>
By: fake http://www.9tut.com/ccna-wan-2/comment-page-6#comment-379560 Wed, 14 Aug 2013 15:29:22 +0000 http://www.9tut.com/?p=801#comment-379560 q7 it is incorrect ip address oly

]]>
By: Richard http://www.9tut.com/ccna-wan-2/comment-page-6#comment-379018 Wed, 14 Aug 2013 07:27:19 +0000 http://www.9tut.com/?p=801#comment-379018 Q7
guys, it emulates a point to point connection (just like PPP). even if in different subnet, it works because frame relay and PPP works on layer 2 and besides there is no other destination except on the other end. Therefore, frame-relay has no other choice but to send it to the other end.
I hope it’s clear.

]]>
By: DarkWolfSLV http://www.9tut.com/ccna-wan-2/comment-page-6#comment-367170 Sat, 03 Aug 2013 04:03:36 +0000 http://www.9tut.com/?p=801#comment-367170 Thank you for everthing 9tut!!
I passed my exam 907/1000

VTP Sim, EIGRP and ACL 2

Also, I saw a few question about frame relay I havent seen before – be careful

]]>
By: superstar http://www.9tut.com/ccna-wan-2/comment-page-6#comment-364127 Mon, 29 Jul 2013 18:10:29 +0000 http://www.9tut.com/?p=801#comment-364127 plus there is no way to tell if the dlci is local or global…thats why im answering b

]]>
By: superstar http://www.9tut.com/ccna-wan-2/comment-page-6#comment-364124 Mon, 29 Jul 2013 18:04:40 +0000 http://www.9tut.com/?p=801#comment-364124 if question 7 comes up i am answering B
as you map the local dlci to the remote ip
that means that 50 should be mapped to remote ip….which it is ..

]]>
By: p23 http://www.9tut.com/ccna-wan-2/comment-page-6#comment-360179 Thu, 25 Jul 2013 12:09:12 +0000 http://www.9tut.com/?p=801#comment-360179 question 7..my answer would be D.the dlci is locally significant and is mapped to the remote ip address which is the address of the next router.router A would reach router B if they were on the same subnet.Router A subnet–> 192.168.1.0 Router B subnet —> 192.168.2.0 .that’s my thought

]]>
By: NAT http://www.9tut.com/ccna-wan-2/comment-page-6#comment-350725 Fri, 19 Jul 2013 19:39:38 +0000 http://www.9tut.com/?p=801#comment-350725 q6 on exam today

]]>
By: cisco4ever http://www.9tut.com/ccna-wan-2/comment-page-6#comment-349329 Fri, 12 Jul 2013 12:13:21 +0000 http://www.9tut.com/?p=801#comment-349329 Regarding Q7. Initially I also said that “D. incorrect IP address” is the correct answer. Then I checked this setup with GNS3.

What surprises me is that if frame-relay map statement is correctly configured in both routers, the ping between them works even if one router has ip address 192.168.1.1 and the other router has ip address 10.1.1.1 (so this means the routers are in totally separate subnets, and there is no router in between, just the frame relay switch).

The configuration is like this:
R1# sho run int s0/0
Building configuration…

Current configuration : 176 bytes
!
interface Serial0/0
ip address 192.168.1.1 255.255.255.0
encapsulation frame-relay IETF
clock rate 2000000
frame-relay map ip 10.1.1.1 50
frame-relay lmi-type ansi
end

R2#sho run int s0/0
Building configuration…

Current configuration : 176 bytes
!
interface Serial0/0
ip address 10.1.1.1 255.255.255.0
encapsulation frame-relay IETF
clock rate 2000000
frame-relay map ip 192.168.1.1 75
frame-relay lmi-type ansi
end

Now try to ping:

R1#ping 10.1.1.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/6/12 ms
R1#

R2#ping 192.168.1.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
R2#

Surprise!!! so the ping works even if there is no router to route between the two subnets, but only the frame relay switch. I cannot explain this, however based on this I would now agree that :C. incorrect map statement” is the correct answer.

]]>
By: jwidel http://www.9tut.com/ccna-wan-2/comment-page-6#comment-348833 Wed, 10 Jul 2013 10:11:20 +0000 http://www.9tut.com/?p=801#comment-348833 Today I pass the exam, and I had identical exhibit like Q7, but the question/choices was (as I remember):
How router learn about DLCI:

1 ARP
2 proxy ARP
3* Inverse ARP
4 something like: frame relay inverse map
5 something else…

* – my mark

]]>
By: selorm tagbo http://www.9tut.com/ccna-wan-2/comment-page-6#comment-347845 Fri, 05 Jul 2013 12:58:49 +0000 http://www.9tut.com/?p=801#comment-347845 hi my friends, can i study only 9tut to pass the CCNA exams. am taking the exams next month

]]>
By: DHCJ http://www.9tut.com/ccna-wan-2/comment-page-6#comment-346096 Fri, 28 Jun 2013 17:13:41 +0000 http://www.9tut.com/?p=801#comment-346096 Q: 4

Please, can someone explain the answer to the question number 4?

B. They require a unique subnet within a routing domain. —– Is right
But the other answer is not sure.

http://certificationpath.com/view/640-816-s/questions/what-are-two-characteristics-of-frame-relay-pointtopoint-subinterfacesy-a-composite-solution-q24436

]]>
By: mario http://www.9tut.com/ccna-wan-2/comment-page-6#comment-345225 Tue, 25 Jun 2013 08:08:22 +0000 http://www.9tut.com/?p=801#comment-345225 Tomorrow ……..

]]>
By: Witz73 http://www.9tut.com/ccna-wan-2/comment-page-6#comment-344696 Sat, 22 Jun 2013 19:57:18 +0000 http://www.9tut.com/?p=801#comment-344696 Q7 on CCNA exam today

]]>
By: Duuly http://www.9tut.com/ccna-wan-2/comment-page-6#comment-344541 Fri, 21 Jun 2013 22:55:00 +0000 http://www.9tut.com/?p=801#comment-344541 simple!!

the Answer is C, why?

the question didnt specify which 1 is Router A and which is Router B, so that is where the trick is!!

Assume that left Router is Router A, then apply that map statement, you will find that that statement is correct and if you try to ping the ping will reach to the other router and the reply will depend on the config of the that other Router.

Then Again, Assume that the Right router is Router A the you will find that, the map ip statement is incorect and with that statement the ping will never reach to the other Router.

So come to the Question, it state that:-

Router A is unable to reach Router B ….. …….

that means the Right is Router A and from that map statement it can not reach left Router which is Router B.

]]>
By: dave http://www.9tut.com/ccna-wan-2/comment-page-6#comment-344094 Thu, 20 Jun 2013 12:27:19 +0000 http://www.9tut.com/?p=801#comment-344094 So…can anyone once for good explain answer for Q7? Is it C or D? Anyone knows which one for sure and why?

]]>
By: name http://www.9tut.com/ccna-wan-2/comment-page-6#comment-343381 Tue, 18 Jun 2013 09:08:03 +0000 http://www.9tut.com/?p=801#comment-343381 answer of q7 is incorrect ip address,incorrect map addressing is wrong ans

]]>
By: dragan http://www.9tut.com/ccna-wan-2/comment-page-6#comment-311822 Sat, 01 Jun 2013 10:38:22 +0000 http://www.9tut.com/?p=801#comment-311822 Q7 explanation http://www.aiotestking.com/cisco/2012/04/what-is-the-most-likely-cause-of-the-problem-5/

]]>
By: David Okeri http://www.9tut.com/ccna-wan-2/comment-page-6#comment-307064 Fri, 24 May 2013 12:38:02 +0000 http://www.9tut.com/?p=801#comment-307064 Pliz i will sit for the exam next month, can someone send me the latest dumps on email: olesimbe@yahoo.com

]]>
By: jose +254 http://www.9tut.com/ccna-wan-2/comment-page-6#comment-306949 Fri, 24 May 2013 05:51:21 +0000 http://www.9tut.com/?p=801#comment-306949 on the exam tomorrow!

]]>
By: mohamed http://www.9tut.com/ccna-wan-2/comment-page-6#comment-306857 Thu, 23 May 2013 17:29:11 +0000 http://www.9tut.com/?p=801#comment-306857 Please please please guys i am preparing for the exam next month, can someone be kind enough to send me the latest dumps on my e-mail : mastermalganis@hotmail.com

]]>
By: mcdonald http://www.9tut.com/ccna-wan-2/comment-page-6#comment-306694 Wed, 22 May 2013 16:46:26 +0000 http://www.9tut.com/?p=801#comment-306694 Wen u check d graphics, d address of next router is 4 router B but d DLCI is 50 wich is for A……DLCI shud b 75 for b in d statement….so I guess “incorrect map statement” c is d right answer….

]]>
By: ARTI http://www.9tut.com/ccna-wan-2/comment-page-6#comment-306505 Tue, 21 May 2013 20:15:57 +0000 http://www.9tut.com/?p=801#comment-306505 The answer is good but explonation not at all.
IP address and DLCI number is right – but problem is on router B – just wrong mapping.

]]>
By: Q7 http://www.9tut.com/ccna-wan-2/comment-page-6#comment-305441 Thu, 16 May 2013 07:58:25 +0000 http://www.9tut.com/?p=801#comment-305441 Can anyone elaborate on that.

]]>
By: mista http://www.9tut.com/ccna-wan-2/comment-page-6#comment-305368 Wed, 15 May 2013 16:19:49 +0000 http://www.9tut.com/?p=801#comment-305368 hello all (cisco engineers)
soon joining the club after my certification on 23 jUNE

]]>
By: Flip http://www.9tut.com/ccna-wan-2/comment-page-6#comment-305097 Mon, 13 May 2013 13:05:09 +0000 http://www.9tut.com/?p=801#comment-305097 I am going to take the ICND1 but i am little bit confused. Because i see on the rights side of this page only CCNA question. So which do i have to learn and which are for incd2?

Can anyone give me some info

thanks

]]>
By: Zahid Ismail http://www.9tut.com/ccna-wan-2/comment-page-6#comment-304246 Sun, 05 May 2013 11:11:28 +0000 http://www.9tut.com/?p=801#comment-304246 q7 in today exam

]]>
By: abed http://www.9tut.com/ccna-wan-2/comment-page-6#comment-302784 Fri, 26 Apr 2013 13:38:08 +0000 http://www.9tut.com/?p=801#comment-302784 why answer is B ?? why not C ?

http://class10e.com/Cisco/in-the-frame-relay-network-which-ip-address-would-be-assigned-to-the-interfaces-with-point-to-point-pvcs/

]]>
By: ExamNextWeek http://www.9tut.com/ccna-wan-2/comment-page-6#comment-302511 Wed, 24 Apr 2013 14:11:01 +0000 http://www.9tut.com/?p=801#comment-302511 In Q7, they don’t give us the mask info, nor the “show frame-relay map” for RouterB.
If the mask is 255.255.0.0, Router A and B are on the same network.

The problem can be an incorrect map statement on Router B. RouterA can reach RouterB, but without a correct map statement on RouterB, the reply can’t make the way back.

So I guess is answer C

]]>
By: Anonymous http://www.9tut.com/ccna-wan-2/comment-page-6#comment-302263 Sun, 21 Apr 2013 20:47:34 +0000 http://www.9tut.com/?p=801#comment-302263 to examtaker the answer is d because we must determine the kind of encapsulation first (fr) afterthat we determine the type of lmi .

]]>
By: Anonymous http://www.9tut.com/ccna-wan-2/comment-page-6#comment-302262 Sun, 21 Apr 2013 20:36:06 +0000 http://www.9tut.com/?p=801#comment-302262 i think the answer of q7 is d : incorrect ip add

]]>
By: examtaker http://www.9tut.com/ccna-wan-2/comment-page-6#comment-302161 Sat, 20 Apr 2013 15:24:30 +0000 http://www.9tut.com/?p=801#comment-302161 anybody aware with the answer of the following question..
refer to the exhibit. Router interface is being configured for frame relay.
However, as the exhibit shows, the router will not accept the command to configure the LMI type. what is the problem?
router(config)#interface serial 0/0
router(config-if)#frame-relay lmi-type cisco
% Unrecognized command
router(config-if)#frame-relay ?
% Unrecognized command
A. The interface does not support frame Relay connections.
B. The interface does not have an ip address assigned to it yet.
C. the interface requiers that the no shutdown command be configured first.
D. The interface requires that the encapsulation frame-relay command be configured first.
the answer on the dump is D. but i think A is correct. Because when i enter the command: “router(config-if)#frame-relay lmi-type cisco” before entering “router(config-if)# encapsulation frame-relay” it says “Must set encapsulation to FrameRelay before using FrameRelay subcommands”
check out the output below
Router(config-if)#
Router(config-if)#frame-relay lmi-type ?
ansi
cisco
q933a
Router(config-if)#frame-relay lmi-type cisco
Must set encapsulation to FrameRelay before using FrameRelay subcommands
Router(config-if)#frame-relay ?
interface-dlci Define a DLCI on an interface/subinterface
lmi-type Use CISCO-ANSI-CCITT type LMI
map Map a protocol address to a DLCI address

]]>
By: Josh http://www.9tut.com/ccna-wan-2/comment-page-6#comment-302087 Fri, 19 Apr 2013 22:21:17 +0000 http://www.9tut.com/?p=801#comment-302087 I Agree with Jeff, can somebody please confirm if either this is correct or incorrect in the actual exam?

]]>
By: Jeff http://www.9tut.com/ccna-wan-2/comment-page-6#comment-301777 Thu, 18 Apr 2013 06:49:16 +0000 http://www.9tut.com/?p=801#comment-301777 The most likely cause of the problem for me is “incorrect IP address”. As we know, frame relay is a logical point-to-point connection so each end of the connection must be in the same IP subnet. I don’t see any problem with the map statement because the local DLCI 50 is map to the remote router’s IP Address of 192.168.2.1.

So for me I go with D (incorrect IP address)

]]>
By: QUESTION 7 http://www.9tut.com/ccna-wan-2/comment-page-6#comment-301218 Tue, 16 Apr 2013 01:04:04 +0000 http://www.9tut.com/?p=801#comment-301218 The map statement is correct for router A it should have the next hop ip address and what ever DLCI it wants, DLCI’s are only locally significant, as per your own tutorial. So C is not correct, unless it is the output from Router B and not Router A. If it is the output from router b then the question should specify.

]]>
By: Question 7 http://www.9tut.com/ccna-wan-2/comment-page-5#comment-299774 Sun, 07 Apr 2013 12:39:20 +0000 http://www.9tut.com/?p=801#comment-299774 9 tut or other reviewers . Please Give me any information about Q7 because I think of this answer as A.Sh . Please help I will take examination tomorrow
A.Sh March 30th, 2013 @9tut

|| Question 7 ||
I have information that all interfaces that participate in Frame Relay should be in the same network subnet.
But now in Q7 they are not in the same network. And map statement needs remote ip and local DLCI.

I think at now the problem can be clear with Subnet mask specifiying.

DO you think we should answer this question in exam.

]]>
By: tt http://www.9tut.com/ccna-wan-2/comment-page-5#comment-299722 Sun, 07 Apr 2013 00:52:01 +0000 http://www.9tut.com/?p=801#comment-299722 I need help to open the dump spike or shekter getting only 5 trial copy pls .

]]>
By: Anonymous http://www.9tut.com/ccna-wan-2/comment-page-5#comment-299572 Fri, 05 Apr 2013 15:38:10 +0000 http://www.9tut.com/?p=801#comment-299572 totally confused by this answer! I thought that in frame relay you map the remote ip 192.168.2.1 using the local DLCI 50. so why is C correct?

]]>
By: sAM http://www.9tut.com/ccna-wan-2/comment-page-5#comment-298812 Sun, 31 Mar 2013 20:02:34 +0000 http://www.9tut.com/?p=801#comment-298812 Q.7 on the exam today.

]]>
By: A.Sh http://www.9tut.com/ccna-wan-2/comment-page-5#comment-298725 Sat, 30 Mar 2013 01:37:56 +0000 http://www.9tut.com/?p=801#comment-298725 @9tut

|| Question 7 ||
I have information that all interfaces that participate in Frame Relay should be in the same network subnet.
But now in Q7 they are not in the same network. And map statement needs remote ip and local DLCI.

I think at now the problem can be clear with Subnet mask specifiying.

DO you think we should answer this question in exam.

]]>
By: Babawo http://www.9tut.com/ccna-wan-2/comment-page-5#comment-297292 Thu, 21 Mar 2013 10:09:27 +0000 http://www.9tut.com/?p=801#comment-297292 Number 13, has one more answer• The LCP niaitegtoon phase is complete.Number 14, the correct answer is• Frame Relay at R3 and R2 should be tested to narrow the scope of the problem.• An ACL entry error could cause the failure at Layer 4 in either R3 or R2.There you go and you should had 100% by following the correction that i made.

]]>
By: Me too http://www.9tut.com/ccna-wan-2/comment-page-5#comment-297185 Thu, 21 Mar 2013 02:04:35 +0000 http://www.9tut.com/?p=801#comment-297185 Question 7 on CCNA 2nd try today exact

]]>
By: Ralphy http://www.9tut.com/ccna-wan-2/comment-page-5#comment-295079 Sat, 09 Mar 2013 12:50:12 +0000 http://www.9tut.com/?p=801#comment-295079 Q 7 is wrong (in real world, in exam is a wrong answer/question issue, we always assume a 192.168.x.0 as /24 in ccna)

our perspective is Router A (as is the one is being stated as having no access to Router B) IF we assume that Router A is the one to the left!!:

1) assuming a mask /22 (instead of /24)

map is ok:

to go to 192.168.2.1 you need to use DLCI 50

2)if mask is /24 (what we usually assume from that kind of ip) they won’t be able to connect because they are in different subnets.

3) If “output” (that’s a lousy output, no command will give you that “output) for the map is wrong it should be “75″ instead of “50″ then, answer C will be the way to go.

Anyway, if that’s the real question/graphic, Cisco made another big mistake there…

1) wrong (or waaay misleading) ip scheme
2) wrong map statement
3) no labels on routers

I hope we won’t find that kind of question in an exam because who wants to pay for an exam with that many mistakes?

]]>
By: Hagyama Maragyama http://www.9tut.com/ccna-wan-2/comment-page-5#comment-294520 Wed, 06 Mar 2013 22:07:43 +0000 http://www.9tut.com/?p=801#comment-294520 Im still confused on question 7. As long as I know the default for a class C IP address is/24

If they are on different subnet, they can’t communicate.

The map statement is also wrong, but…

DLCI number misconfiguration is an L2 issue, different IP subnet is an L3 issue.

The question states that RA can’t “reach” RB, which kind of tells me that it is a L3 issue.

My other problem with this question is that what if the 0 subnet is not enabled? That means the IP address is a network address, 1 more reason why I think the answer is D, even though SEKAR and most 9tut ppl say C is the correct. Any thoughts?

]]>
By: tity http://www.9tut.com/ccna-wan-2/comment-page-5#comment-292386 Mon, 25 Feb 2013 09:08:48 +0000 http://www.9tut.com/?p=801#comment-292386 Hi guys ,i looking for the latest ccna exam dump .would you please help out ?my e mail is titykn@gmail.com

]]>
By: What? http://www.9tut.com/ccna-wan-2/comment-page-5#comment-292364 Mon, 25 Feb 2013 05:22:14 +0000 http://www.9tut.com/?p=801#comment-292364 It’s not even funny how incorrect the given answer to question 7 is.

The correct answer is D.

You can set GNS3 to run exactly like the diagram in the picture complete with frame-relay switch. If you configure it like the question’s example it won’t work. But if you use 192.168.1.11 instead of 192.168.2.1 then it works. It doesn’t matter which one is Router A and Router B, it still won’t work without the IP addresses configured correctly. I know the subnet mask isn’t stated but because this is the case your only option is to go with a classful mask, which is protocol for any question that doesn’t explicitly state the mask, with that said it also forces you to recognize classful boundaries, which is a bonus evaluation for the question.

]]>
By: kashif http://www.9tut.com/ccna-wan-2/comment-page-5#comment-291473 Thu, 21 Feb 2013 00:15:37 +0000 http://www.9tut.com/?p=801#comment-291473 This is for those who needs latest dumps. This dumps and 9tut, its enough for you to pass exam. just remember me in your prayers. Best of luck…..
http://www.examcollection.com/cisco/Cisco.ActualTests.640-802.v2012-07-15.by.Sekhar.697q.vce.file.html

]]>
By: Mohammed http://www.9tut.com/ccna-wan-2/comment-page-5#comment-291337 Wed, 20 Feb 2013 10:22:10 +0000 http://www.9tut.com/?p=801#comment-291337 the answer is C “incorrect IP address”, the map statement is OK because we define the far ip address and the local DLCI.
ex. frame-relay map ip 192.168.2.1 50 broadcast

]]>
By: coolio http://www.9tut.com/ccna-wan-2/comment-page-5#comment-291322 Wed, 20 Feb 2013 07:44:13 +0000 http://www.9tut.com/?p=801#comment-291322 the answer is incorrect ip…even the 9tut tutorial clearly explained it…wonder why they gave the wrong answer

]]>
By: rekz http://www.9tut.com/ccna-wan-2/comment-page-5#comment-290330 Fri, 15 Feb 2013 10:56:57 +0000 http://www.9tut.com/?p=801#comment-290330 hello can u help i downloaded the sekhar and brar from exam collection but i cannot open to my vce….im preparing for exam this april and can someone send me tne latest dump altura_rex08@hotmail.com….tnx….and is 9tut worth it if the brar and sekhar not work in my vce…..tnx

]]>
By: Raza http://www.9tut.com/ccna-wan-2/comment-page-5#comment-290286 Fri, 15 Feb 2013 04:50:00 +0000 http://www.9tut.com/?p=801#comment-290286 I agreed with Eydz, the correct answer is D. Because the DLCI is always local and map to the remote IP address. Thus, the map statement is correct!!!

]]>
By: usman http://www.9tut.com/ccna-wan-2/comment-page-5#comment-289442 Mon, 11 Feb 2013 15:17:27 +0000 http://www.9tut.com/?p=801#comment-289442 can anybody tell me which questions belong to lab question give me a reference plz

]]>
By: sneha http://www.9tut.com/ccna-wan-2/comment-page-5#comment-288659 Fri, 08 Feb 2013 14:32:26 +0000 http://www.9tut.com/?p=801#comment-288659 Hi,
someone plz mail me the latest dumps…@ mittal2sneha@gmail.com

thanxx :)

]]>
By: Eydz http://www.9tut.com/ccna-wan-2/comment-page-5#comment-287130 Sun, 03 Feb 2013 01:10:09 +0000 http://www.9tut.com/?p=801#comment-287130 Q7:

For me, the answer is D – incorrect IP address.

All interfaces in a network should belong to the same network address in a frame-relay multipoint or point-to-point configurations. Local DLCI should always be mapped to the remote interface IP address (Statically or Dynamically). This is a layer 2 protocol. The mapping is correct as shown in the table above but still connectivity failed due to suspected incorrect ip address. This is a more valid reason why connectivity fails.

Subnet mask is not given in the problem but both are class C addresses which has a default SM of /24.

]]>
By: shweta http://www.9tut.com/ccna-wan-2/comment-page-5#comment-282973 Tue, 22 Jan 2013 03:33:00 +0000 http://www.9tut.com/?p=801#comment-282973 Hi, Can someone please send me latest dumps to my eamil ID? It’s shwetatrivedi.1489@gmail.com.

Thanks in adv!!

]]>
By: spin http://www.9tut.com/ccna-wan-2/comment-page-5#comment-278564 Sun, 13 Jan 2013 20:54:06 +0000 http://www.9tut.com/?p=801#comment-278564 I tried few scenarios packet tracer, ill share what i observed,

1) configured both router with the ip add in the question and assigned 16 bit mask. I could ping successfully

2) I changed mask to 24 bit( now both router in different subnet), RouterA cant reach RouterB(I assume this is because RouterA detected the network different)

3)Configured a frame relay map with wrong dlci on RouterB( wrong frame map statement). RouterA can reach RouterB, but RouterB cant reach RouterA)

)Configured a frame relay map with wrong ip and correct dlci on RouterB( wrong frame map statement). RouterA can reach RouterB, but RouterB cant reach RouterA)

4) Configured RouterB with different LMI type, Router A still can reach RouterB but RouterB couldnt reply back, because different lmi type caused line protocol down.

5)Configured RouterA with different LMI type, line protocol went down, now RouterA cant reach RouterB

So its possible that wrong LMI type on Router A or both interfaces are on different subnets

]]>
By: spin http://www.9tut.com/ccna-wan-2/comment-page-5#comment-278547 Sun, 13 Jan 2013 20:15:13 +0000 http://www.9tut.com/?p=801#comment-278547 @Civo
Question states ‘Router A unable to reach RouterB’. According to ur analysis “If routerA(192.168.1.1) pings routerB (192.168.2.1), routerB gets the ICMP echo message, this direction works”, this means RouterA is able to reach RouterB, just that RouterB is unable to reach RouterA. As we know from the question that RouterA is unable to reach RouterB. So ‘C’ cannot be the answer

]]>
By: Chanana http://www.9tut.com/ccna-wan-2/comment-page-5#comment-274865 Tue, 08 Jan 2013 00:00:54 +0000 http://www.9tut.com/?p=801#comment-274865 @Cevo, Thats what i call a deep analysis. This guy is right C is the way to go.

]]>
By: Cevo http://www.9tut.com/ccna-wan-2/comment-page-5#comment-273247 Sat, 05 Jan 2013 15:36:58 +0000 http://www.9tut.com/?p=801#comment-273247 QUESTION 7: The phrase “command output” in the question may be the key to the solution.
I looked at the two labs (one for multipoint the other for point to point) I created before.

I issued “show frame-relay map” command on both scenarios and observed the following output.

MULTIPOINT, IP’s are on the same subnet.

R1#show frame-relay map

Serial0/0 (up): ip 192.168.5.2 dlci 503(0x1F7,0x7C70), static, broadcast, CISCO, status defined, active

POINT TO POINT, IP’s are on different subnet.

R1#show frame-relay map
Serial0/0.503 (up): point-to-point dlci, dlci 503(0x1F7,0x7C70), broadcast status defined, active

Comparing these two outputs are telling me that if I see a DLCI number and and IP address in the output, then we have multipoint configuration.
Maybe this is why we can say that the ip’s are on the same subnet (even though there is no information in the question regarding what the subnet mask is).

Now, the output in the question is telling me that if you want to get to remote IP 192.168.2.1, use local DLCI 50, so this output show the result of “show frame-relay map” issued on Router A, and it indicates Multipoint configuration.

If router A (192.168.1.1) pings router B (192.168.2.1), router B gets the ICMP echo message, this direction works.
But then, router B needs to send echo-reply back to A. If there is a mapping problem on router B (if they did not map remote ip 192.168.1.1 to local DLCI 75) then Icmp-echo would not be able to get back to router A. Then router A would say he can’t reach router B. (Again, router A would not be able to know if he made it to Router B, unless he gets a reply from router B).
So, there must be a mapping configuration issue on router B. Therefore, I would choose “C. Incorrect map statement” as the answer.

]]>
By: Ahmeds http://www.9tut.com/ccna-wan-2/comment-page-5#comment-272040 Thu, 03 Jan 2013 19:05:25 +0000 http://www.9tut.com/?p=801#comment-272040 ok guys same thing in packet tracer not working
if ip is same subnet it is working
or
make a static route then it is working even it is not in same subnet

]]>