CCNA Training with Real Questions & Answers!

 
  • Increase font size
  • Default font size
  • Decrease font size

CCNA NAT SIM Question 1

(Updated from real CCNA on Jan-09-2010)

Question:

A network associate is configuring a router for the CCNA Training company to provide internet access. The ISP has provided the company six public IP addresses of 198.18.184.105 198.18.184.110. The company has 14 hosts that need to access the internet simultaneously. The hosts in the CCNA Training company LAN have been assigned private space addresses in the range of 192.168.100.17 – 192.168.100.30.

The task is to complete the NAT configuration using all IP addresses assigned by the ISP to provide Internet access for the hosts in the Weaver LAN. Functionality can be tested by clicking on the host provided for testing.

Configuration information
  router name - Weaver
  inside global addresses - 198.18.184.105 198.18.184.110/29
  inside local addresses - 192.168.100.17 - 192.168.100.30/28
  number of inside hosts - 14

The following have already been configured on the router:

- The basic router configuration

- The appropriate interfaces have been configured for NAT inside and NAT outside

- The appropriate static routes have also been configured (since the company will be a stub network, no routing protocol will be required.)

- All passwords have been temporarily set to "cisco"

ccna_nat_sim_lab1

ccna_nat_sim_lab2

Solution:

 

The CCNA Training company has 14 hosts that need to access the internet simultaneously but we just have 6 public IP addresses from 198.18.184.105 to 198.18.184.110/29. Therefore we have to use NAT overload (or PAT)

Double click on the Weaver router to open it

Router>enable
Router#configure terminal

First you should change the router's name to Weaver

Router(config)#hostname Weaver

Create a NAT pool of global addresses to be allocated with their netmask (/29 = 255.255.255.248). There were reports that the simulator in the real exam did not accept "prefix-length" keryword so you should use "netmask" keyword.

Weaver(config)#ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248

Create a standard access control list that permits the addresses that are to be translated

Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15

Establish dynamic source translation, specifying the access list that was defined in the prior step

Weaver(config)#ip nat inside source list 1 pool mypool overload

This command translates all source addresses that pass access list 1, which means a source address from 192.168.100.17 to 192.168.100.30, into an address from the pool named mypool (the pool contains addresses from 198.18.184.105 to 198.18.184.110)

Overload keyword allows to map multiple IP addresses to a single registered IP address (many-to-one) by using different ports

The question said that appropriate interfaces have been configured for NAT inside and NAT outside statements.

This is how to configure the NAT inside and NAT outside, just for your understanding:

Weaver(config)#interface fa0/0
Weaver(config-if)#ip nat inside

Weaver(config-if)#exit

Weaver(config)#interface s0/0
Weaver(config-if)#ip nat outside
Weaver(config-if)#end

Finally, we should save all your work with the following command:

Weaver#copy running-config startup-config


Check your configuration by going to "Host for testing" and type:

C:\>ping 192.0.2.114

The ping should work well and you will be replied from 192.0.2.114

Other lab-sims on this site:

CCNA NAT SIM Question 1

CCNA NAT SIM Question 2

CCNA Frame Relay Sim

CCNA Configuration SIM Question (RIPv2 SIM)

CCNA VTP SIM

CCNA EIGRP LAB

CCNA Drag and Drop SIM

CCNA Implementation SIM  

 

Comments
Abhishek Bhardwaj 10-16-2008
After establishing the access list dont u think we should write "Access-list 1 deny any" command and one more thing if i configure the interfaces Fa0/0 with nat inside and S0/0 with nat outsde command before configuring Access list and nat pool in that case will my configuration work????
Plz help if possible.....
9tut 10-16-2008
Please remember that there is an implicit "deny any" at the end of each access list- this means that your access list will deny all traffic that fails to match any of your access list lines. So you don't need to write "access-list 1 deny any"

You can configure the interfaces Fa0/0 and S0/0 before configuring access list and nat pool. It will work well!

In fact, you don't need to configure interfaces Fa0/0 and S0/0 because our question said: "the appropriate interfaces have been configured for NAT inside and NAT outside"
CCNA4U.TK 10-16-2008
Do you want to exchange links with me?
Contact: quocvuong.it @ gmail.com
Abhishek Bhardwaj 10-17-2008
Thanks a lot u had been really a great help!!!! This is an amazing site i m plnning to take my exam tomarrow ie 18th October after giving my exam i will share my experinece:)
9tut 10-19-2008
Thank for the offer ccna4u but link exchange causes many troubles
Tharaka 10-29-2008
What about the route command. there should be " ip route 0.0.0. 0.0.0. 192.0.2.114" in weaver. shouldn't it?
9tut 10-29-2008
The question said that the basic router configuration has been done and just asked us to complete NAT configuration, so we don't need to do other configurations
Azeem javed 11-07-2008
i am confused plz help mee
If i changed the command

Weaver(config)#ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248
Changed below
Weaver(config)#ip nat pool mypool 198.18.184.105 198.18.184.105 netmask 255.255.255.248

Tell me it works or not and why
9tut 11-07-2008
It still works well because we used "overload" keyword (PAT). All your outgoing packages will have a source ip address of 198.18.184.105 but with different port numbers. But you should do what the question requested
StrangerInMoscow 11-17-2008
is it ok to use the prefix-length 29 option with the "ip nat pool " command instead of the netmask option

thanks
9tut 11-18-2008
Yes, you can use "prefix-length 29" instead of "netmask 255.255.255.248"
hisham 11-19-2008
copy r s , its important command
lolo 11-27-2008
if i am retaking my exam i failed 2weeks ago,
what are the chances of getting the same paper, do you know? or the same
simulations becouse these are the ones i got in my last exam
moro 11-27-2008
i'm going to test on 29 & i can't understand why we write

Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15
NOT

Weaver(config)#access-list 1 permit 192.168.100.17 0.0.0.15
bec. the question is telling me that the inside local addresses 192.168.100.17 ????
Blaze 11-27-2008
you cant write Weaver(config)#access-list 1 permit 192.168.100.17 0.0.0.15

you have to write the network number in the access-list configuration

192.168.100.17's network address is 192.168.100.16
H@mid 11-27-2008
hye... can I ask the administrator something please...
i appeared in the CCNA exam on 25-11-08, almost 4 of the lab questions available this website were there in my test exam. Unfortunately I failed because i had no source to prepare for lab questions. Now I have seen these questions and have understood as well. What is the probability that lab questions will never come our of these questions ?
9tut 11-27-2008
You will surely see 4 of the labs in this site, so don't worry!
nana parkhe 11-28-2008
nice quastion
smiley 11-28-2008
i think we shoud add :" access-list 1 deny 192.168.100.31 0.0.0.0" because "access-list 1 permit 192.168.100.16 0.0.0.0" includes the address 192.168.100.31 but the question requests only the address from 192.168.100.17 to 192.168.100.30
is it right???
9tut 11-28-2008
No, we don't need to add an access list of 192.168.100.31 because it is the broadcast address of this subnetwork
Allen 12-01-2008
Shouldn't you add a copy running-config startup-config after the:
Weaver(config)#ip nat inside source list 1 pool mypool overload

as, no further conguration is needed?
9tut 12-02-2008
We just need to use only one "copy running-config startup-config" command at the end of the process
Hamid 12-09-2008
hey frds....! i've just cleared my CCNA exam with 918 marks.... i tell u wat i did in order to clear this exam
1st VIDEO LECTURES from www.cbtnuggets.com
then Pass4sure Dumps 3.22 version....

but failed on 25th of last month...
then
visited this website www.9tut.com
and today I cleared the Exam by the grace of Allah.... but tell u some things.... I did everything according to dumps and for the labs, i did exactly wat is written on this website...... just 1 question was out of these things (which i tell u later) but y i got only 918... i thot of somewhere 950 to 980... but i dono wat happened..... u shud b careful abt it.... and the new question which was multiple question...... (not available in p4s 3.22 version) was

"In which of these subnet masks, we can create 8 subnets with each subnet having 5 to 26 hosts each?"
different options were there but answer is of course 255.255.255.0 which i did bcoz 3 bits for subnets (8) and 5 bits for hosts(5-26, shud b 31 means 5 bits).. so.. this is the experience and info which i cud share my friends.... WISH U ALL THE BEST to all of u... for ur exam.....
and MANY MANY THANKS TO THIS SITE OWNER...... BECAUSE NO LAB QUESTION WAS OUT OF THIS WEBSITE'S QUESITONS...
THANKS
ba bye..
Hamid 12-09-2008
3 bits for subnet and 5 bits for hosts...

and many many thanks to the host of this site..... coz no lab question was out of this website's questions........
wish u all the best for ur exams frd.......
bye bye.....
sattar 12-14-2008
you have any solutionn for acl sim....
PM 12-16-2008
Hamid

How many question out off p4s v3.22 (you can estimate)

I will exam on 19-Dec-08

thank you.
Hamid 12-18-2008
I wud say... .if u do all the questions in v3.22 plus all the lab questions in this website.. u'll surely pass the exam... but consider both of them equally. u will pass the exam. also see the VTP SIM QUESTION..... see all the users' comments.... coz there's one more question which has been added to the test...... also see the question which i mentioned above... ok...... so ur course is

p4s v3.22 + all lab questions on this website + 2 questions (1 which i have added here on this page and 2nd which is available in the comments of VTP SIM QUESTION)

Best of Luck my friend.....
tell the good news to all the members here 2morrow....
Ba Bye
Hamid 12-18-2008
sorry i forgot to mention that.. if you follow the above mentioned course outline... you'll b able to get even 100% but surely u will b able to solve more than 95% of the test.......
b BYE
PM 12-19-2008
Today I pass exam with 976/1000.

Thank you 9tut.com who help me to clear exam.

Hamid, Thank you for your suggestion about P4S.
Hamid 12-19-2008
cheers my frd..... best of luck for ur further certifications
MAJDI 12-21-2008
hye... can I ask the administrator something please...
just i want ask about tab and (?)
If we can use it in the real exam
matej 12-21-2008
TAB is working, but ? is not working. Although I was able to use ? too. You have to lock caps lock (so the capital letters are appearing) and then ? is working (shift + ').

That was in my case ofcourse.
Renjini 12-23-2008
Hi 9tut,

Thanks for your excellent collection. I wrote exam today and got 976. All simulations came from you collection only. The P4S also helped a lot.
Jason 12-28-2008
So do I need to type copy run start after this command
Weaver(config)#ip nat inside source list 1 pool mypool overload ?
9tut 12-29-2008
You just need to type that command once when you finished all your tasks. In this case, the answer is yes. I updated the page to make it clearer a bit
study 12-30-2008
but write mem is equal to copy run start right?
study 12-30-2008
i mean instead of copy run start we can use write memory
9tut 12-31-2008
Yes, they are the same but please use the formal command
vamsi 01-02-2009
new year came,so any chance ti change dumps
toni 01-05-2009
Hi 9tut,

on p4s Q397 as Hamid mention above it was on exam but there is no answer,

the question is:

which subnet mask it will be appropriate for a network address range to be subneted on up to 8 lans, with each lans contaning 3 to 26 hosts

a: 0.0.0.244
b:255.255.255.252
c: 255.255.255.224

what i have worked out is answer C can you please give me a scond advice? many thanks for all you great support on this side.

thanks
toni
toni 01-05-2009
sorry each LAN's containg 5 to 26 hosts
George 01-07-2009
Hello,
please can you help me here ?
access-list 1 permit 192.168.100.16 0.0.0.15
Here we take the subnet.

In p4s3.22 the question 18 is different.
And is this question they take the next ip or ?

pls help out.
George
9tut 01-07-2009
access-list 1 permit 192.168.100.16 0.0.0.15 is the correct answer because it equals with a subnet mask of /28.

In the real exam, you may see different IP addresses
9tut 01-07-2009
To toni: This question is not clear. But if we have to choose an answer, C is the best one!
nesa 01-10-2009
I dont see that anybody have a nat sims for some time?????
Australia 01-13-2009
Did anyone get this question in CCNA? It looks like, not many ppl got it.
braham 01-15-2009
can you apply access-list and then apply nat ,,, or both wat are ok ,,,
or apply nat pool then acl.....thanks
9tut 01-15-2009
You can do either first!
Asad 01-16-2009
hi 9tut,

" Overload " command should not be used here as it is reserved for PAT only that use to assign multiple ip addresses into single ip.

as here is being asked to use the " pool ", so we can just place the range of the pool as being told in the question.

like: " ip nat inside source list 1 pool mypool "

i guess it is enough to cover the whole question.

what you say? please answer as soon as possible as i have exams in comming days.

thanks
braham 01-16-2009
if you don't mind me asking ,, are you going to take ccna or icnd2

whene?????
braham 01-16-2009
and for your question ,,, as far as i know ,,, just in case the pool got busier ,or can't handle the traffic ,as the pool have 5 addresses ,, overload option will be efficient to set ,,
just trying to help ,,
9tut 01-16-2009
Yes, we surely have to use "Overload" keyword because we have only 6 IP addresses for 30 hosts
madhav 01-19-2009
why last command use ovrload
kushal 01-25-2009
i can c aprrox 6 lab questions posted on the website.
are these the latest 6 and enough for lab practise??

where can i find more lab sim on 9tut other than the above list labs??
madhav 01-26-2009
access-list 1 permit 192.168.100.17 0.0.0.15
joe 01-29-2009
has anyone seen any questions related to setting up a dhcp server on the router not just finding issues with one already set up?
chra 01-30-2009
hey 9tut,

I think madhav is correct.
access-list 1 permit 192.168.100.17 0.0.0.15
9tut 01-30-2009
No, 192.168.100.16 is the network address, not 192.168.100.17
rodel 01-31-2009
why there in no "access-list 1 deny any" statement after the permit statement in acl? is it necessesary?
9tut 01-31-2009
Please read my comment on 10-16-2008...
SupHack 02-04-2009
Character problem. empty comment
SupHack 02-04-2009
Please I have my exam tomorrow and i'm very confuse by this problem.
Are we obliged in the real exam to type : Weaver#, weaver(config), Weaver(config-if) as in the example that follow?

************************************************
e.g:
Weaver(config)#interface fa0/0
Weaver(config-if)#ip nat inside
Weaver(config-if)#exit
Weaver(config)#interface s0/0
Weaver(config-if)#ip nat outside
Weaver(config-if)#end

************************************************

or we can only type the command like this:

e-g:
interface fa0/0
ip nat inside
exit
interface s0/0
ip nat outside
end

***************************************************


Let me know if it can work in the real labs
Tharaka 02-04-2009
according to 9tut routers are like real routers so if you practice commands using packet tracer or boson simulator then you have no reason to worry about.
9tut 02-04-2009
Just type as your second e.g
mahendra 02-09-2009
this wedsite is my important for exam u practice a lot u get more question in it u may score 82% on it
yeliz 02-15-2009
Weaver(config)#ip nat inside source list 1 pool mypool overload

we have a nat pool ,we are doing dynamic nat so we don't need 'overload',do we?

ı think we need 'overload' in nat overload/pat
ıf we use nat overload/pat the command line will be like this:

Weaver(config)#ip nat inside source list 1 interface s 0/0

plese help me someone
cris 02-16-2009
to yeliz: First if you don't use overload can not be more than 6 users contacted to internet in the same time. The 7th one should wait until one connection is off. Overload means that you can use port number combined with ip address wich allows more connections to internet in the same time. Without overload is a one to one connection ( one inside connection to one global address)
About using s0/0 means that your inside global address will be only one ip which is the interface ip. The interface ip can be a diff. address than the addresses from pool. To get more connections to internet you should use overload too : #ip nat inside source list 1 interface s0/0 overload
yeliz 02-16-2009
thanks to cris. I see, but Iwant to ask somemore
Can I use
Weaver(config)##ip nat inside source list 1 interface s0/0 overload
is ıt true for this question?
Or should I create nat pool and use this:
Weaver(config)#ip nat inside source list 1 pool mypool overload
9tut 02-16-2009
You have to use "Weaver(config)#ip nat inside source list 1 pool mypool overload", in which "mypool" is the pool you created in previous step ("ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248")
Waxx 02-19-2009
Hi, I tried the configuration but ping is not successful request timed out is the output. I even tried the file with the answers already but ping still failed. What seems to be the problem? thanks!
Waxx 02-19-2009
I got the answer. I'm using the console pc to ping not the router. My mistake. :)
daking 02-20-2009
hi guys,

What do you think is the difference between questions 104 and 300 in pass4sure 3.22?And what do you think are the correct answers.


thanks
vip 02-21-2009
hi frnds. yesterday (20.02.09) i have passed CCNA with 976. all questions frm p4s and 9tut.com. lot of thanks to 9tut
vip 02-21-2009
i have 48 questins with 3 lab. eigrp, router configuration, 3 router & 1 switch sim
mamado 02-21-2009
i pass my exam today and i pass 988/1000 the passing score was 825 the exam eas easy and no one question out of p4s and no sim. or configuration q out of 9tut it is a great site . god bless you.
Krishna 02-22-2009
hi mamado

which version of pass4sure man,
mamado 02-24-2009
hi krishna

p4s 3.22
PaoL0 02-24-2009
can we use the "?" in the CLI in the real exam?

i sometimes forget the exact structure of the codes for NAT.

is okay to use it? are there any deductions when you use the "?" ?


thanks in advance
rose 02-24-2009
hi im vry glad to say dat im clesred ccna with 984.

now i would lik to do ccnp---switching.

may i know the similar site for ccnp--switching.

it will be vry helpful for me.

pls friends hepl me
9tut 02-24-2009
To PaoL0: Yes, you can. But may be you will lose some points for it, so try to remember the commands. Good luck in your exam!
PaoL0 02-25-2009
im taking my exam tomorrow....i have a question here.

when you created the acess-list 1 why did you use this code?

"Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15"

i noticed that you used "192.168.100.16" where as in the example the starting ip address of the host is 192.168.100.17?

and why is the wildcard bits used here is 0.0.0.15?
my understanding on that is 16+15 (16 taken from the .16 of the first host) which will tell the router to permit ip's starting from .16 upto .31?

am i getting it right??
9tut 02-25-2009
We have to use network address in the "access-list" command, although the first host is 192.168.100.17 but its network address is 192.168.100.16.

You can quickly figure out what the wildcard is by reversing the bits from the subnet mask. In this case the subnet mask is /28, its last octet is 1111 0000 so we reverse it into 0000 1111 = 15
PaoL0 02-25-2009
Thanks 9tut for the quick reply. I really hope i could pass the exam today.
PaoL0 02-26-2009
i passed the CCNA exam today. i got 976

I really want to thank 9tut for posting these lab questions here and providing a very clear explanation of the solution. It really helped me a lot in solving the lab questions. Funny thing is i really prepared for this NAT lab question and it didn't appear in the exam. hehehe. But the EIGRP, Implementation, and switching labs all appeared. This website has it all.

To pass the exam i used:

1. CBT nuggets ICND1 and ICND2 series
2. Pass4sure v3.22
3. 9tut.com
4. sadhikov.com

*Just to remind those who haven't taken the exam yet, The IP addresses in the lab questions are changing. They also put additional items in the choices for the questions which will make you think that it is the correct answer. Also i noticed that the EIGRP topology has been modified a bit. But don't let that confuse you. The concept of the problem is still the same. (unless they completely modify the exam). So, if you can pass all the sets in Pass4sure and have mastered all the lab questions posted here then you should be confident in passing the exam.
M A Khan 02-26-2009
Dear PaoL0
Congratulations on passing CCNA.
I am going to attempt the exam in second week of March.

I'll be grateful if you can send me the link to get Pass4sure v3.22.

thank you
Brian 02-27-2009
I can ping from the router to the ISP but not the computer for testing. Also when I download your packet tracer file that is configured with the answer it will also not work on the computer for testing. is there something wrong?
shu 02-27-2009
hello, guys today i gave the test and got 706 out of 1000 failed, because there was no current update in 9tut and even p4sure.

2 simulatoin came 1. Nat, 2. Simple router configuratoin and set passwords.

but the theory questoins was totally different from pass4sure and 9tut, only i can say 10 to 15 percent came from both.

so kindly update.

ok guys best of luck.

just let me know is there any latest version after 3.22 pass4sure?

thanx
PaoL0 02-28-2009
@M A Khan - thanks for that. im just not sure if it's okay to post weblinks here on this forum. but i got my pass4sure at demonoid.com. just type in the search filed pass4sure 3.22 and you can download it.

based on shu's post it appears that they have modified the exam. im just not sure. But on my exam i encountered some questions that are not in pass4sure but they are not that many. I can safely say that 98% of the questions are in P4S.

They will most likely create an update for 3.22. just not sure when
nj 02-28-2009
9tut and guys, has the dumps changed and what abut simulations???? plz let me know. coz plannin to give exam in few hours. if there is any change i can postpone it..... plzz let me know. thks.
9tut 02-28-2009
Not sure about the change yet, it needs more time to confirm. But from my information, it is just a small "update", not change.
gech 02-28-2009
ALEXI, could you make your comment in English please.

Thank you
9tut 02-28-2009
ALEXI spammed here with unrelated thing, so I disabled his post
bvk 03-02-2009
Today i passed CCNA with score 874. The dumps have changed there were a lot of new questions.. But GOD IS GREAT, i was really afraid i will fail.. This nat q was asked for implementation...
Anonymous 03-05-2009
folks the exam has changed but instead of relying on just dumps, why not just study the material?
niten 03-06-2009
pls update the hotspot questions
Anonymous 03-08-2009
Is it true that using ''?" command will affect ur score?
Rodrigo A Chacon 03-11-2009
I got this question TODAY (March 11th) on my test,, btw I failed I am so down, I studied a lot an d failed miserably.
MOHSH5 03-12-2009
Hi 9tut, thanks for your effort. I just want to know how you determined the mask for either the (inside local addresses range- 255.255.255.240) and the (inside global range 255.255.255.248). In spite of the question made no mention about it.
9tut 03-12-2009
Please review the picture again. The inside local addresses have subnet masks of /28 and the inside global addresses have subnet masks of /29
jus failed :( 03-16-2009
i think they have changed or updated the test. i saw a lot of questions that werent on p4s 3.22 . i got a 720 :( . i studied my ass off for this test. i think we need a new update?

they were also some drag nd drop that i never seen b4. b careful guys make sure u know the material!
pncy 03-18-2009
my exam is on coming 26th is there any change in the p4a dumps????with this dumps i will surely pass the exam or not??????
jon 03-20-2009
do we have to apply the access list to an intrface or will the above config suffice?
M.Kamal 03-21-2009
@jon
As mentioned in the lab question above
the appropriate interfaces have been configured for NAT inside and NAT outside ,
In order to make sure type "sh run "
ENG.SAFORI 03-21-2009
Dear 9tut,
thank you so much for this site , i want to know is the section of (ccna-lab sim ) contains all simulation labs that can i study be4 i have my exam, my exam will be in next Tuesday
Danish Umar 03-21-2009
great efforts man
9tut 03-21-2009
To ENG.SAFORI: Yes, you will find all the labs in your exam there!
doubt in topology ccna nat sim 03-25-2009
Hello 9tut,

The ip addresses provided in the topology and question are different. Can u please change it? It will help me understand the concept well.

thanks,
razzanarts 03-25-2009
all new ccna questions... e-books, pass4sure, testking.. free download

http://cisco-training640-802.*.com/
gm abbasi 03-26-2009
Hi 9tut,

Please make it sure that labs are updated labs because p4s has updated the version, please confirm that if i understand and practice these labs is it sure that one of these labs will come in ccna exam.

Thanks
9tut 03-26-2009
To doubt: In the real exam, Cisco often changes the IP addresses of the labs so it is impossible to guess which IP addresses you will see in your exam. Please read this question carefully to understand the concept, the IP addresses in the topology and question are the same.

To gm abbasi: Yes, all the labs you will see in your real exam were posted in the Lab Sim section (www.9tut.com/ccna-lab-sim)
doubt in topology 03-27-2009
The inside global address in the topology is 192.0.2.113(interface ip)
whereas in the question it is from 198.18.184.105 to 198.18.184.110
abbas 03-28-2009
hi guys
i m giving my exaim on 2nd of april i have only pass4sure 3.22 and nothing else can anyone help me and share the latest dumps of pass4sure 8.03 i really need
abbas 03-28-2009
my id is kool_salooo@yahoo.com
Asif Rajan 03-28-2009
Thanks a lot 9tut. I took the test today and it was these simulations which went perfectly. I got 986 points. The exam had 6 simulations and drag drop included.

I really appreciate your efforts
Asif Rajan 03-28-2009
If ne one needs help please feel free to contact me asifrajan@yahoo.com
http://cisco-training640-802.* 03-28-2009
click my user name for free download... http://cisco-training640-802.*.com
9tut 03-28-2009
To doubt in topology: You don't need to care about the IP address of S0/0 interface of Weaver because it is not the inside global address. The inside global addresses are ranged from 192.18.184.105 to 192.18.184.110/29
sam 03-28-2009
hi 9tut


where can i find download link nat lap file

pls
tahim 03-31-2009
i got this sim i wrote everthing but the it was wrong because in
after creating access list we have to give one more command
acess-list 1 deny any
in this sim from 9tut its not there
9tut 04-01-2009
You don't need to type "acess-list 1 deny any" because each access list has an implicit "deny all" at the end.
hulosa 04-02-2009
i am confused

why did we tried to ping the pc with address 192.0.2.114
a@hulosa 04-02-2009
to confirm it is working (NAT)
but we are using any PC to ping..not the smae PC that we use to confimr the router
Rushikesh 04-02-2009
Hi 9tut,

This is not overload NAT(PAT). It is dynamic NAT as range os inside global addr r mentioned.........

Instead of this ----------ip nat inside source list 1 pool mypool overload

ip nat inside source list 1 pool mypool ----- this is correct one as per my understanding.
Manisha 04-02-2009
Hi 9tut,

I'm having query regarding some quests fom V3.22 dump........Pls, resolve it asap plssssssssssssssssssssss 9tut. plssssssssssssssssssssssssssssssssss

Q.107(xplain me ans.)
Q.109(Sequence is totally reverse. pls xplain if i'm wrong)
Q.129(xplain me ans.)
Q.163 (Ans. can be A & B)
Q.174 ---- Ans can B also
Q.215 ---------- How DTE & DCE interfaces are recognised..
syed 04-05-2009
Hi 9tut

Pleaswe Upload 1 NAT(pat) similater ???
mayo 04-10-2009
Hi 9tut

I have lost my new CBT nuggets for ICND1 and ICND 2.. Anyone know a link where i can download these?

Please i really need it my exam is next week. Hope anyone can help. Please

thanks
Mayo
sawa 04-14-2009
I'm pass ccna yesterday i have 930/1000
test from p4s.08 last version and sim question nat,rip v2 and access-list
any one need the last version of p4s .08 mail me at sawa_fawzy@yahoo.com
with best wishes
egyption man
Syed 04-16-2009
I pass the exam today and i got the same similater with ip change ...


Regard,
Syed Asif..
Gio 04-21-2009
Hi guys,
hello to everybody and a special greeting to 9tut.
I've tried the 640-802 on April the 10th.
Guys I've studied a lot and I know this sim pretty well.
Something extremely strange to me happened regarding this lab sim.
After typing the show ru I've seen the following configuration on the route Weawer (apparently the opposite to the right one):
-int s0/0
ip nat inside

-int fa0/0
ip nat outside

then I changed the configuration (even if in the body of the question clearly said the config was already configured in the right way) but I couldn't ping.
Then I returned the config to the starting one (the one listed above) but I couldn't ping yet.
Can anyone or 9tut (a myth for me) tell me what happened and what can I do should it happen again.
I'm going to re-take the test in 2 days.

Thanks.
Gio
Yaman 04-21-2009
Hi Gio
about your problem i think you need to change your configuration to :

Weaver(config)#interface fa0/0
Weaver(config-if)#no ip nat outside
Weaver(config-if)#ip nat inside

Weaver(config-if)#exit

Weaver(config)#interface s0/0
Weaver(config-if)#no ip nat inside
Weaver(config-if)#ip nat outside
Weaver(config-if)#end

Thanks.
9tut 04-21-2009
It is a very strange situation you got. In that case, you should continue to configure all the required tasks first and try to ping before trying to reconfigure the interfaces.

Good luck to you in your next exam! I think you will not see this problem again.
Gio 04-21-2009
For Yaman: Thanks for your reply (I know the subject quite well) but I did it actually as the first thing I tried, but it didn't work at all,it didn't ping.

For 9tut and others: thanks for your reply. As I wrote to Yaman, I firstly did that way (unsuccesfully), and than re-changed the config in order to make it appear as it was at the beginning (as you said to leave it - again unsuccesfully).
9tut,let's say that I get the same sim question (I remember for your benefit: ip nat inside on s0/0 and outside on Fa0/0), what can I do?!?! According to you, do I have to keep on configuring the ip nat in what way? How can it work? My ip addresses were slightly different from the ones showed here, actually I noticed something strange about the s0/0 ip address (I'm not sure about that, but maybe it was a private address on s0/0 and maybe public on fa0/0).
According to you,is there an ip address configuration (or combination) for that same topology to work by putting s0/0 as inside interface and Fa0/0 as the outside interface? - the body of the question was the same, just the ip addresses were different.
Is it possible it deals with a Cisco incident? Do incidents frequently happen on Cisco CCNA?

Thanks guys again for your support: a special thanks for 9tut (9tut you're great:-))
9tut 04-22-2009
In this sim, you shouldn't change the configurations on the router because it doesn't ask you to do so. Therefore you should continue to configure as usual.
The IP addresses in your exam might be slightly different from the ones shown here, it is normal because Cisco often changes some parameters to make sure their candidates understand the concept. And of course you have to use your knowledge to get the right IPs. The ones shown here are just used for demonstration.
gsingh 04-24-2009
We can use the Tab and Help(?) feature on the exam.Yesterday i gave the exam same simulation was there with same numbers.
Thanks 9tut.com
cdoe 04-24-2009
hi yall
i passed ccna today. the way out is pass4sure--400-500. and of course 999999tut. got ripv2, nat, access list, and frame-relay. all the best guys.
onecloud 04-25-2009
hi code

could u plz tell where we can find the P4S you used in your post ?

Regards / Thanks
brian 04-27-2009
sat the ccna last week,first time was about 8 years ago. ran out of time doing all the new type sim questions, so you have to be quick, saying that, only came across this web site AFTER the exam, so needless to say, didn't get it.currently spending plenty of time now going over these questions which are EXACTLY the same (apart from IP's) on the exam. great website, pity i didn't find it before...
Dark Angel 04-30-2009
NAT's lab is HOT now a dayz
tarj 05-02-2009
is there any one help me as written there that there ll be simulation of frame rely in exam. but i couldnt find any simulation of framerely in 9tut.com. so where i can find simulation for exam. reply me plzzzz
Rushikesh 05-03-2009
hi...
I passed CCNA on 14th April with 972 marks..........I just completed my xam within 40 min.......Just play with IP addr(make ur strong pt subnetting)......Best of luck
M. Istehbab 05-04-2009
About the following;

The appropriate interfaces have been configured for NAT inside and NAT outside

Firstly, in this question, the inside and outside interface configuration was already in place.

1) Why do we need to do it again?

2) Do we just need to do it again to get the answer right?

3) In the official exam, this question mentions, that if ping to the target works, that's all that is needed as the answer. We don't need to do the extra commands. Is that true?

M. Istehbab
Tefa 05-05-2009
hi all
just passed my ccna exam 2day i got this question in my ccna exam plus another question about frame-relay , Rip v2 configuration and simple router configuration the exam from the latest pass4sure with 2 or 3 different questions
evanskin 05-06-2009
hi all
pliz anybody with latest pass4sure do help me with. i'll appreciate......
can send it to eknyambia@yahoo.com

regards
Tikallo 05-07-2009
Hi! 9tut, I am sitting for my exam on sat. 9th may,09. pls. can u help to known the area of concentration? thanx
peshawari 05-10-2009
I passed exame yesterday with 860 marks

I prepared
1....all Sim on this Website with understand.
2.... P4sure 8.03 ( Specially Last 100 Question 400-500)
3.... Little practice on subnetting...

What I got in Exame
1.. Nat Sim , Frame-relay Sim, Rip2 Sim, which already in P4sure
2... Few Drag Drop which already in P4sure
3... OSPF 3 or 4 Question regarding Function and Characteristics which already in P4Sure...
4.... Only 2 Question of IPV6 which already in Pass4sure
5.... 8 Question of IP subnetting Specially to fingure out what subnet is belong to give Super Subnet or Summary SUbnet (CIDR)...

Tip for Exame
1..... fully Prepare P4Sure with Understand Becoz Question remain Same in Exame but Only IP Change....
2..... Speed and 100 % accurate to find out Subnet which belong to give Supper or Summary Subnet...
3.... Draw Subnet Table of Give White Board or Table during Running Tutorial Running in Exame Becoz that time not counts in ur exame time.

Simulation should be 100 % correct.. Which I think that website provide 100 % correct Sim Solution... I have doubt on Frame-Relay Question .. which If required, what password will be used... I clicked on (TeLnet)... I got 75% in this Question... I write Answer is No Password Required... I think

Subnetting with 100 % accuracy along with Speed... If your speed is not enough u will got very short time in exame

Why I got 860 less marks exame becoze I got 8 Question of Subnetting in which i can not even solved One..... less practice....Subnetting Question was not hard it just alot time consuming... therefore I left less time therefore i ignored many subnetting question.... and concenrate on simulation and othere question.... If you that like me ... you may be fail or pass.. It is risky.. so do practice on subnetting & have a look sim before exame
AZAM 05-10-2009
I PASSED MY CCNA EXAM TODAY GETTING A SCORE OF 860 i prepaired my exam with the course materials and p4s 3.24 and 9tut.

it was almost the same question which was in the p4s and labs were the same but different ip addresses,

the reason i got 860 because i messed up with some subnetting questions i like to tell to the guys who are hoping to take the exam to be familiar with subnetting , vlans,Wlan,router and switch configurations and features.

do more practicals dont memorize the questions which is in p4s or any other dumps just go through it several times and understand the concept then u will be able pass the exam easily be familiar with subnetting more and more
AZAM 05-10-2009
int frame relay sim the Q if required which password i select no password required and i got 100% in that thanks to 9tut for helping students like us
zito 05-11-2009
hi 9tut.
are we not suppose to put "access-list 1 deny any " in the access list ?
zito 05-11-2009
again please how can i remove access-list command
futu 05-11-2009
Hi! l sat for the exam today and fail 765 0f 100, before i start the real exam i was asked what material have i used,typed p4s3.2,8.3 and CCNA materials. only one sim nat i saw. pls. can some help me out the shameful failure i did?
futu 05-11-2009
Hi! All, I failed the exam. pls. help me out for the next sitting. there are some Q before starting the real exam. 1, do u go for trainning or self study materials. i choose CCNA materials, P4s 3.2 & 8.30(400-500). most
of the Q is implement ip addressing scheme an ip servicers, config, verify and troubleshooot, implement & verify WAN link etc. my money have gone now. but i will try write next week. pls. help me inorder to pass. thank u.
imran 05-12-2009
i have passed the exame today 12-5-2009. i have marks obraind 832. thanks jermy and pass4sure and ejaz prali
Anon 05-12-2009
Passed with 916 on May 11th. Got the NAT & RIP v2 labs plus frame-relay sim. Also got the 4router drag&drop question. The exam HAS changed. Half questions from pass4sure 3.22 and half new ones. More focus on subnetting and VTP and switches. Need to know correct cabling as well i.e PC to router/switch, router to switch etc for a drag and drop question.
Good luck! :)
Vin 05-12-2009
Thanks Anon that’s exactly what i wanted to add……got 930 good luck all
futu 05-13-2009
Hi! 9tut, as i said, i failed the exams, but i am preparing for the second time on 30th-05-09. pls.u help is need inorder not to loose my money again. thanx.
booota & anchan-x 05-13-2009
@futu

dont get upset, you must be serious about CCNA. We cleared on 7th of this month...
booota = 958
anchan-x = 972

what we prepared, we just studies the curriculum once, then got wendell odom books ICND1 and ICND2.

You can download the books from this link.
http://rapidshare.com/files/228858228/Other_Material.zip

Finally 2 days before the test we prepared p4s and 9 tut. That just helped us to clear the exams... We just prepared all of this in a month...

So you can...

Best of luck all of you in your exams.
Dark Angel 05-14-2009
Hi
if any1 want 2 pass CCNA contect me wid 110% GURRENTY this offer is valid for JUNE , contect me on
darkangel115@live.com .
Dark Angel 05-14-2009
pass 4 soure isnt gud now a day's

i pass my CCNA 974
futu 05-15-2009
Thanx, booota & anchan-x. i would sit for the 2nd trial next week. but pls. i whats to known the subnetting questions from p4s3.22 and 400-500.plus the sim Question. in the sim Q i went to click next. that is the big mistake i made during the exam. i am waitting for ur reply. thanx
futu 05-17-2009
Hi! Dark Angel,which material or p4s is good now? pls. help me out would sit for the exam next week. thanx.
Ucan 05-17-2009
Hello guys this is the CCNA 2 Final 4.1 version (No Answers) Who can answer these questions and forward? E-mail: ucansehzade @hotmail.com Thank you!!


1
A tracert command is run on a host to determine if another host can be reached across a network. Which two events will occur if connectivity with the other host is unsuccessful? (Choose two.)

The command will display all the successful hops a packet makes before it is lost.*************

The command will calculate the time between successful and unsuccessful packets.

The host on which the command is run will send a UDP request message to the other host.

The command helps to determine where a packet was lost on the path from the source to the destination.**********

All hops between the two hosts display !!!!! to signify success.



2



Refer to the exhibit. There is no dynamic routing protocol that is running on this network. The network administrator adds a static route via the use of the ip route 192.168.4.0 255.255.255.0 10.1.1.6 command. On which router should the network administrator issue this command?

R1

R2

R3

R4



3
Which statement correctly describes MIB?

It is software that is installed on a device which in turn is managed by SNMP.

It is installed on a system that is used to monitor networking devices.

It is a database that a device keeps about itself concerning network performance parameters.

It is a communication protocol that is used between the management station and the management agent.



4



Refer to the exhibit. The network administrator has added a route by using the ip route 10.13.13.0 255.255.255.0 192.168.1.1 command on R1. Hosts on the 10.12.12.0 network cannot communicate with hosts on the 10.13.13.0 network. What is the reason for this?

The gateway of last resort is not set.

The destination prefix mask is incorrectly configured.

The routing protocol has not been configured on R1.

The static route has not been configured correctly.



5
What is a feature of PAT?

It maps IP addresses to URLs.

It displays private IP addresses to public networks.

It sends acknowledgments of received packets.

It allows multiple hosts on a single LAN to share globally unique IP addresses.



6



Refer to the exhibit. Devices need to connect to the file server from remote networks. What method should be used to provide the file server with an IP address to allow these connections?

static NAT

static PAT

dynamic NAT

dynamic PAT



7
What are three features of the TCP protocol? (Choose three.)

It provides retransmission of data packets if they are lost during transmission.

It is a connectionless protocol.

It uses a three-way handshake between the sending and receiving systems to establish each conversation.

It specifies how messages are reassembled at the destination host.

It requires only 8 bytes of overhead.

It breaks the data packet into datagrams.



8



Refer to the exhibit. Which subnet mask would accommodate the number of hosts indicated for all subnets if the major network address was 192.168.25.0/24?

255.255.0.0

255.255.224.0

255.255.255.0

255.255.255.224

255.255.255.240

255.255.255.248



9



Refer to the exhibit. A new router has been configured for the first time with the commands that are displayed. Which two facts can be determined about the interface of this router? (Choose two.)

It will act as a DCE device.

It is administratively down.

It will operate at a speed of 6.4 Mb/s.

It is the first interface on slot 0 of controller 1.

Because MOTD is not configured, the interface will not work.



10



The show ip route command was executed on one of the routers shown in the graphic and the following output was displayed:

C 192.168.4.0/24 is directly connected, Serial0/0
R 192.168.5.0/24 [120/1] via 192.168.4.2, 00:00:19, Serial0/0
R 192.168.1.0/24 [120/2] via 192.168.3.1, 00:00:20, Serial0/1
R 192.168.2.0/24 [120/2] via 192.168.3.1, 00:00:20, Serial0/1
C 192.168.3.0/24 is directly connected, Serial0/1

From which router was this command executed?

A

B

C

D




11
Which statement correctly describes an SLA?

It lists the terms of the agreement between the user and the manufacturer of the system.

It outlines the management, monitoring, and maintenance of a network.

It specifies the software and hardware configurations of a system.

It describes the operation of a system.



12



Refer to the exhibit. R1 and R2 are configured with the commands that are displayed. All interfaces are properly configured, but neither router is receiving routing updates. What two things can be done to solve the problem? (Choose two.)

Configure the routing protocol on R1 for network 10.0.0.0.

Configure the routing protocol on R2 for network 10.0.0.0.

Configure the routing protocol on R1 for network 192.168.4.0.

Configure the routing protocol on R1 for network 192.168.2.0.

Configure the routing protocol on R2 for network 192.168.1.0.

Configure the routing protocol on R2 for network 192.168.3.0.



13
Which statement correctly describes the difference between HTTP and HTTPS?

The maximum number of simultaneous connections that a server can support for HTTPS is more than for HTTP.

HTTPS and HTTP use different client request-server response processes.

HTTPS authenticates and encrypts the data being transferred between the client and the web server.

HTTPS specifies the rules for passing data between the physical layer and the data link layer.



14
Which WAN connection provides a dedicated circuit with fixed bandwidth available at all times?

point-to-point

circuit-switched

packet-switched

cable



15
Which statement describes a feature of TCP?

It provides low overhead data delivery.

It acknowledges the receipt of packets.

It does not provide error checking.

It is a connectionless protocol.



16
Which type of cable may be used for backbone cabling between data centers that are located on different floors and that are separated by a distance of 1640 feet (500 meters)?

STP

UTP

coaxial

fiber-optic



17
Which two services are required to enable a computer to receive dynamic IP addresses and access the Internet using domain names? (Choose two.)

DNS

WINS

HTTP

DHCP

SMTP



18
What is the function of the forward lookup DNS zone in the DNS name resolution process?

It resolves fully qualified domain names into IP addresses.

It stores the information about the domain namespace structure.

It forwards zone information updates to the secondary server.

It maintains a database of ARP entries for all servers.



19
A building has experienced a power outage. When the power returns, none of the devices on one floor can access the Internet. The network administrator checks the switch in the IDF that these devices are connected to and notes that the SYST LED on the front of the switch is amber.

What is a possible cause of this problem?

The switch is functioning properly.

The switch has failed POST.

The switch configuration file was not saved to NVRAM.

The connection between the switch and the server did not autonegotiate speed and duplex properly.



20



Refer to the exhibit. The network administrator has added networks A and B to router R1. Which two subnetwork numbers should be used to address networks A and B so that these networks use the same subnet mask as networks C and D? (Choose two.)

192.168.1.32/26

192.168.1.64/26

192.168.1.96/26

192.168.1.160/26

192.168.1.192/26


21



Refer to the exhibit. What method is most commonly employed by large ISPs, such as ISP1, ISP2, and ISP3, to exchange and maintain routing information?

static routes

IGP protocols

EGP protocols

directly connected routes



22



Refer to the exhibit. Which combination of cable types should be used to complete the connection?

Cable A - straight-through; Cable B - straight-through; Cable C - serial

Cable A - straight-through; Cable B - straight-through; Cable C - rollover

Cable A - rollover; Cable B - straight-through; Cable C - crossover

Cable A - straight-through; Cable B - crossover; Cable C - serial



23
A user is able to ping an FTP server across a WAN but is unable to download files from the server. What should be checked to resolve this problem?

the NIC drivers

the IP configuration

the LED status of the NIC

firewall settings



24



Refer to the exhibit. A computer with the displayed IP settings is unable to access a server on the 192.168.2.0 network using the server IP address but can access hosts on the 192.168.1.0 network. What should the network administrator do to troubleshoot this problem?

Issue the ping 192.168.1.1 command on the host to determine if the host can communicate with the default gateway.

Issue the ipconfig /all command to determine if a DNS server IP address was configured.

Verify that the host has a link light.

Check the cabling of the host.



25
What is a characteristic of Syslog?

It requires users to prove their identity with the use of a username and password before users can access network resources.

It listens to network traffic and sends an alert to a management station to track which applications are used and the length of time for which they are used.

It enables devices to send information to a daemon that runs on a management station.

It provides users the rights to access specific resources and perform specific tasks.



26
Which type of address is 192.168.17.111/28?

host address

network address

broadcast address

multicast address



27
What is the basis for determining the vector component of a route in the distance vector routing algorithm?

the bandwidth...
Ucan 05-17-2009
5
What is a feature of PAT?

It maps IP addresses to URLs.

It displays private IP addresses to public networks.

It sends acknowledgments of received packets.

It allows multiple hosts on a single LAN to share globally unique IP addresses.



6



Refer to the exhibit. Devices need to connect to the file server from remote networks. What method should be used to provide the file server with an IP address to allow these connections?

static NAT

static PAT

dynamic NAT

dynamic PAT



7
What are three features of the TCP protocol? (Choose three.)

It provides retransmission of data packets if they are lost during transmission.

It is a connectionless protocol.

It uses a three-way handshake between the sending and receiving systems to establish each conversation.

It specifies how messages are reassembled at the destination host.

It requires only 8 bytes of overhead.

It breaks the data packet into datagrams.
Ucan 05-17-2009
8



Refer to the exhibit. Which subnet mask would accommodate the number of hosts indicated for all subnets if the major network address was 192.168.25.0/24?

255.255.0.0

255.255.224.0

255.255.255.0

255.255.255.224

255.255.255.240

255.255.255.248



9



Refer to the exhibit. A new router has been configured for the first time with the commands that are displayed. Which two facts can be determined about the interface of this router? (Choose two.)

It will act as a DCE device.

It is administratively down.

It will operate at a speed of 6.4 Mb/s.

It is the first interface on slot 0 of controller 1.

Because MOTD is not configured, the interface will not work.



10



The show ip route command was executed on one of the routers shown in the graphic and the following output was displayed:

C 192.168.4.0/24 is directly connected, Serial0/0
R 192.168.5.0/24 [120/1] via 192.168.4.2, 00:00:19, Serial0/0
R 192.168.1.0/24 [120/2] via 192.168.3.1, 00:00:20, Serial0/1
R 192.168.2.0/24 [120/2] via 192.168.3.1, 00:00:20, Serial0/1
C 192.168.3.0/24 is directly connected, Serial0/1

From which router was this command executed?

A

B

C

D
Ucan 05-17-2009
11
Which statement correctly describes an SLA?

It lists the terms of the agreement between the user and the manufacturer of the system.

It outlines the management, monitoring, and maintenance of a network.

It specifies the software and hardware configurations of a system.

It describes the operation of a system.



12



Refer to the exhibit. R1 and R2 are configured with the commands that are displayed. All interfaces are properly configured, but neither router is receiving routing updates. What two things can be done to solve the problem? (Choose two.)

Configure the routing protocol on R1 for network 10.0.0.0.

Configure the routing protocol on R2 for network 10.0.0.0.

Configure the routing protocol on R1 for network 192.168.4.0.

Configure the routing protocol on R1 for network 192.168.2.0.

Configure the routing protocol on R2 for network 192.168.1.0.

Configure the routing protocol on R2 for network 192.168.3.0.



13
Which statement correctly describes the difference between HTTP and HTTPS?

The maximum number of simultaneous connections that a server can support for HTTPS is more than for HTTP.

HTTPS and HTTP use different client request-server response processes.

HTTPS authenticates and encrypts the data being transferred between the client and the web server.

HTTPS specifies the rules for passing data between the physical layer and the data link layer.



14
Which WAN connection provides a dedicated circuit with fixed bandwidth available at all times?

point-to-point

circuit-switched

packet-switched

cable
Ucan 05-17-2009
15
Which statement describes a feature of TCP?

It provides low overhead data delivery.

It acknowledges the receipt of packets.

It does not provide error checking.

It is a connectionless protocol.



16
Which type of cable may be used for backbone cabling between data centers that are located on different floors and that are separated by a distance of 1640 feet (500 meters)?

STP

UTP

coaxial

fiber-optic



17
Which two services are required to enable a computer to receive dynamic IP addresses and access the Internet using domain names? (Choose two.)

DNS

WINS

HTTP

DHCP

SMTP



18
What is the function of the forward lookup DNS zone in the DNS name resolution process?

It resolves fully qualified domain names into IP addresses.

It stores the information about the domain namespace structure.

It forwards zone information updates to the secondary server.

It maintains a database of ARP entries for all servers.
Ucan 05-17-2009
19
A building has experienced a power outage. When the power returns, none of the devices on one floor can access the Internet. The network administrator checks the switch in the IDF that these devices are connected to and notes that the SYST LED on the front of the switch is amber.

What is a possible cause of this problem?

The switch is functioning properly.

The switch has failed POST.

The switch configuration file was not saved to NVRAM.

The connection between the switch and the server did not autonegotiate speed and duplex properly.



20



Refer to the exhibit. The network administrator has added networks A and B to router R1. Which two subnetwork numbers should be used to address networks A and B so that these networks use the same subnet mask as networks C and D? (Choose two.)

192.168.1.32/26

192.168.1.64/26

192.168.1.96/26

192.168.1.160/26

192.168.1.192/26


21



Refer to the exhibit. What method is most commonly employed by large ISPs, such as ISP1, ISP2, and ISP3, to exchange and maintain routing information?

static routes

IGP protocols

EGP protocols

directly connected routes
Ucan 05-17-2009
22



Refer to the exhibit. Which combination of cable types should be used to complete the connection?

Cable A - straight-through; Cable B - straight-through; Cable C - serial

Cable A - straight-through; Cable B - straight-through; Cable C - rollover

Cable A - rollover; Cable B - straight-through; Cable C - crossover

Cable A - straight-through; Cable B - crossover; Cable C - serial



23
A user is able to ping an FTP server across a WAN but is unable to download files from the server. What should be checked to resolve this problem?

the NIC drivers

the IP configuration

the LED status of the NIC

firewall settings



24



Refer to the exhibit. A computer with the displayed IP settings is unable to access a server on the 192.168.2.0 network using the server IP address but can access hosts on the 192.168.1.0 network. What should the network administrator do to troubleshoot this problem?

Issue the ping 192.168.1.1 command on the host to determine if the host can communicate with the default gateway.

Issue the ipconfig /all command to determine if a DNS server IP address was configured.

Verify that the host has a link light.

Check the cabling of the host.
Ucan 05-17-2009
25
What is a characteristic of Syslog?

It requires users to prove their identity with the use of a username and password before users can access network resources.

It listens to network traffic and sends an alert to a management station to track which applications are used and the length of time for which they are used.

It enables devices to send information to a daemon that runs on a management station.

It provides users the rights to access specific resources and perform specific tasks.



26
Which type of address is 192.168.17.111/28?

host address

network address

broadcast address

multicast address



27
What is the basis for determining the vector component of a route in the distance vector routing algorithm?

the bandwidth of the route

the reliability of the route

the IP address of the next hop

the number of hops
Ucan 05-17-2009
28



Refer to the exhibit. What does the highlighted value 120 represent?

the number of hops between the router and network 10.0.5.0

the administrative distance of the routing protocol

the UDP port number that is used for forwarding traffic

the bandwidth that is allocated to the serial interface



29
What will a router do with a packet that is destined for a host with the IP address 192.168.1.5/24 if no entry for the 192.168.24.0/24 network exists in the routing table?

It will broadcast the packet out of all of its active interfaces except the interface that received the packet.

It will send the packet back to the source address.

It will drop the packet.

It will broadcast the packet out of all of its active interfaces.



30
How many host addresses can be assigned in each subnetwork when using network address 172.16.0.0 with subnet mask 255.255.252.0?

256

510

512

1022

024
Ucan 05-17-2009
31
Which routing protocol depends on the DUAL algorithm to calculate the shortest path to a destination?

OSPF

EIGRP

RIP

BGP



32



Refer to the exhibit. Router R1 has been configured with the commands that are displayed. Which fact can be determined from the configuration?

All passwords are encrypted.

The privileged EXEC mode password is “password1.”

The router can support four Telnet sessions simultaneously.

The router can be accessed from the console without using any password.



33
Which two statements are true about resolvers in the DNS hierarchy? (Choose two.)

The resolvers attempt to resolve client queries by using the records that the resolvers maintain in their zone database files.

The DNS server queries the resolvers to translate the domain name to an IP address.

There can be only one resolver in a DNS zone.

Resolvers may be configured on DNS clients.

The DNS server uses the resolver to forward the name resolution request to another DNS server.



34



Refer to the exhibit. The network administrator uses the command below to configure a default route on RTB:

RTB(config)# ip route 0.0.0.0 0.0.0.0 fa0/0

A ping issued from PC3 is successful to RTB. However, echo request packets arrive at PC1 but the echo replies do not make it back to PC3. What will fix this problem?

RTA must be configured to forward packets to the 192.168.2.0 network.

The ip route command needs to be edited so that the next hop address is 10.1.1.5.

The ip route command needs to be edited so that the 192.168.2.1 address is the next hop address.

The ip route command should be removed from the RTB router configuration.

Another default route should be configured on RTA with a next hop address of 10.1.1.6
Ucan 05-17-2009
35
When does a router enter the setup mode?

when the Cisco IOS is missing in flash

when the configuration is missing in NVRAM

when the setup command is run from the user mode

when the boot system command is missing in the configuration



36



Refer to the exhibit. The S0/0/0 interface of R2 is configured correctly with the default encapsulation. Which configuration should be implemented at the S0/0/0 interface of R1 to complete the connection between the two routers?

R1(config-if)# ip address 192.168.1.31 255.255.255.252
R1(config-if)# no shutdown

R1(config-if)# ip address 192.168.1.33 255.255.255.252
R1(config-if)# encapsulation PPP
R1(config-if)# no shutdown

R1(config-if)# ip address 192.168.1.28 255.255.255.252
R1(config-if)# encapsulation PPP
R1(config-if)# no shutdown

R1(config-if)# ip address 192.168.1.29 255.255.255.252
R1(config-if)# no shutdown



37
If the start-up configuration is not found in NVRAM, where will the router look for it next by default?

flash

ROM

RAM

TFTP server



38
Which routing protocol excludes the subnet information from routing updates?

EIGRP

OSPF

RIPv1

BGP
Ucan 05-17-2009
39
Which two statements are true about the c:\> ping command? (Choose two.)

It tests the accessibility of an IP address.

It sends a TCP packet to the destination IP address.

It sends an ICMP echo request packet to the destination address.

It traces the route of a data packet from the source to the destination.

It determines where a packet was lost or delayed during transmission.



40



Refer to the exhibit. A network administrator is troubleshooting the serial connection between R1 and R2. There is no communication between R1 and R2. Based on the output of the show ip interface brief command, what is the cause of the problem?

There is a misconfiguration of IP addresses.

There is a mismatch of encapsulation methods.

The no shutdown command has not been issued on R2.

The routing protocols are not compatible.




41
A customer reports connectivity problems to an ISP technician. Upon questioning the customer, the technician discovers that all network applications are functioning except for FTP. What should the technician suspect is the problem?

misconfigured firewall

bad port on switch or hub

misconfigured IP addressing on the customer's workstation

wrong DNS server configured on the customer's workstation

wrong default gateway configured on the customer's workstation
Ucan 05-17-2009
42
Which statement is true about FTP implementations?

The protocol interpreter (PI) function engages once the data transfer process (DTP) function is complete.

The DTP function is responsible for the login sequence.

FTP requires two connections, one for control and one for data.

Both the PI and the DTP close automatically when the transfer is complete.



43
Which two subnet masks can be used when subnetting a Class A IP address? (Choose two.)

255.0.0.0

240.0.0.0

224.0.0.0

255.255.0.0

255.255.255.0



44



Refer to the exhibit. Which two statements describe the data conversation shown? (Choose two.)

The data conversation was started by the HTTP application process running on the client.

The data conversation is identified by TCP port 80 on the client.

The user started the data conversation by sending an e-mail.

The IP address of the Internet server is 192.168.17.43.

The Internet server will send data to port 8547 on the client.



45
How do port filtering and access lists help provide network security?

They prevent specified types of traffic from reaching specified network destinations.

They alert network administrators to various type of denial of service attacks as they occur.

They prevent viruses, worms, and Trojans from infecting host computers and servers.

They enable encryption and authentication of confidential data communications.
Ucan 05-17-2009
46
A hacker attempts to reach confidential information that is stored on a server inside the corporate network. A network security solution inspects the entire packet, determines that it is a threat, and blocks the packet from entering the inside network. Which security measure protected the network?

an IDS

an IPS

a host-based firewall

Anti-X software



47
While troubleshooting a connectivity issue between two directly connected routers, the network administrator checks the encapsulation settings on the serial interfaces of both routers. Which layer of the OSI model is the administrator troubleshooting?

application layer

network layer

data link layer

physical layer



48
What is the effect of issuing the hostname RouterA command on a router?

A description will be configured on the router interfaces identifying them as belonging to RouterA.

The router will attempt to establish a connection to the host with the name RouterA.

The router will map an IP address to the domain name RouterA.

The router prompt will change from Router(config)# to RouterA(config)#



49
Which cable should be used to connect a PC to the console port of a Cisco router?

serial

crossover

rollover

straight-through
Ucan 05-17-2009
50
The network administrator can ping a remote router but is unable to telnet to it. At what layer of the OSI model does this error occur?

physical

network

data link

application


51
What are two reasons for issuing the show ip protocols command on a router? (Choose two.)

It displays the routing protocol in use.

It displays the routed protocol in use.

It displays the routing activity in real time.

It displays the static routes that are contained in the routing table.

It displays the networks that are being advertised by the router.



52
What is an example of a dedicated point-to-point WAN link?

ISDN

Frame Relay

dialup

T1/E1



53



Refer to the exhibit. What two conclusions can be drawn about the exhibited command output? (Choose two.)

Router RTB is directly connected to a router and a switch.

Router RTB is able to ping its directly connected neighbors.

The network administrator needs to log in to the neighboring devices to gather this information.

Router RTB has Layer 2 connectivity with two neighboring devices.

Router RTB is connected to two Cisco devices by FastEthernet links.



54
Which address does a switch use for implementing port security?

the source IP address

the source MAC address

the destination IP address

the destination MAC address
Ucan 05-17-2009
55



Refer to the exhibit. The interfaces on R1 and R2 have been properly configured with the IP addresses as shown. No dynamic routing protocols have been configured. The network administrator has entered the commands that are shown in the exhibit.

Which two additional commands need to be entered on the routers to enable host A to access the Internet? (Choose two.)

R2(config)# ip route 0.0.0.0 0.0.0.0 S0/0/0

R1(config)# ip route 0.0.0.0 0.0.0.0 S0/0/0

R1(config)# ip route 0.0.0.0 0.0.0.0 198.213.219.1

R2(config)# ip route 192.168.1.0 255.255.255.0 10.1.1.1

R1(config)# ip route 198.133.219.1 255.255.255.0 10.1.1.2



56
Which two parameters are stored in the routing table? (Choose two.)

the best route to reach remote networks

the interfaces used to forward packets

the ARP requests from connected routers

the number of times a route has been used by the router

the packets that are placed in the buffer before being forwarded



Send the answers please!! ucansehzade@hotmail.com Thank you!!!
pco 05-18-2009
Hello all,

First of all, I would like to say that I passed the exam today and second I would like to congratulate 9tut for this very nice website, which gave me some light on how questions in the exam can be! Thank you!

Third, yesterday I got very scared because of this guy (Ucan) that posted here before me, because he is saying that the questions changed, now these are the questions, bla, bla, bla... From what I heard, the questions are selected from a pool of questions and they are not always the same, so how can this questions posted here be the exam questions? CANT! And I would also like to let you know that none of the questions this guy posted here showed up in my exam. The exam was quite easy, so dont be afraid, but of course... know your thing! :)

I got three sims (NAT, Configuration SIM and CCNA ACCESS LIST SIM)

Cheers all, good luck and Thank you, 9tut!
ii tr00f ii 05-18-2009
First of all, those questions Ucan above posted, I got 1/3 of those but they were easy. I mean come on if you cannot answer

"The network administrator can ping a remote router but is unable to telnet to it. At what layer of the OSI model does this error occur?
physical
network
data link
application
"
You have problems. People, for the love of all things tech - if you study the material you will KNOW this stuff. I took the exam, had around 10 minutes to glance at this site as I didn't know about it. I didn't use any other materials. If you don't believe me you can do what I did and pass!

Watch CBT nuggets CCNA course (Make sure to MASTER everything on there, ESPECIALLY SUBNETTING & ACL'S!!!!)

Read Sybex (Todd Lammle) 6th edition. Do ALL the questions at the end of each chapter, do ALL the labs! ALL OF THEM!!!

Watch CBT nuggets again, make sure to build the lab the same way Jeremy does and follow along. I have real equipment (I even have a 3560 switch for layer 3 switching!) but you could do it in packet tracer 5.1 (Not really the same, but it will suffice)

Todd Lammle's 3rd Edition FAST PASS for the CCNA.

When it gets near exam time within a day or 2 at most, read TThis is basically a smaller version of the 6th edition (kind of like an Exam Cram, but way way way better) Read that ENTIRE book from start to finish, do all the chapter review questions. If you are weak on something, better work it out otherwise the test will expose that.

In addition to that, find labs online. Do subnetting.....lots of subnetting. Make sure to spend alot of time with ACL's and over time you will get it.

This site was nice, only thing I used from here was the NAT sim, but didn't even need it since I could already do it! That's my point too - you will take the test and not be scared, you will be confident in your ability and not have to worry about memorizing.

ALL THAT TIME YOU SPENT MEMORIZING DUMPS YOU COULD HAVE LEARNED SOMETHING!

Let that be a lesson to you.
ii tr00f ii 05-18-2009
"I didn't use any other materials" COrrection - I meant to say any other materials besides the following.

that should do it. Study people study the real stuff and you will pass. This stuff helps sure, but if you don't know the concepts you will be screwed.
futu 05-18-2009
Congrat! ii tr00f ii, for passing. pls. which materials do the Questions appears most(p4s 3.22, 400-500 or p4s8.03)?
ii tr00f ii 05-18-2009
@Futu

I am not sure about that since I didn't even look at p4s. I just studied and I looked at this site for the Sims.

Again, if you really want to KNOW HOW to do REAL networking, I suggest you get a lab or at least use packet tracer. Todd lammle 6edition CCNA, CBT Nuggets and Todd Lammle 3rd edition Fast Pass and even Train Signal (I Didn't really use Train Signal, I don't really care for Chris Bryant's methodology of teaching)

Again, I don't know ANYTHING about p4s at all, I never looked at it.

And dude I am WARNING YOU. If you don't know how to subnet, your gonna fail as the SIMS will require you to subnet an address. The IP's on the test are COMPLETELY diff than on this site.

Learn Subnetting, be a MASTER. If you don't know how to do it in your head by now, I would postpone exam. What I mean is if someone gives you an address of 210.18.20.35/28 you should know EXACTLY what the range is.
0 - 1 to 14 (15 is broadcast, 16 is the next network)
16 -17 to 30 (15 is broadcast, 16 is the next network
32 - 33 to 46 (45 is broadcast, 48 is the next network)
so on and so on.

You GOT to be able to look at ANY slash notation or decimal (as in a /28 or a 255.255.255.240) and know what the increment is for the network range.

People complain that the CCNA is hard, but I am telling you if you just would study it wouldn't be so hard. All that time looking at dumps I am telling you will just waste your time on the job.

So there's my answer to your question, No I don't know what/where what's on a p4s but if you want to learn something you let me know.
ii tr00f ii 05-18-2009
*Edit* *Edit* *Edit* *Edit* *Edit*
I just looked at what I wrote and realized I gave false info on the subnet,

here is the correct information (previously incorrect marked by an ^)

0 - 1 to 14 (15 is broadcast, 16 is the next network)
>>> made mistake!! 16 -17 to 30 (31 is broadcast, 32 is the next network
^ ^
>>> Supposed to be 47 not 45
32 - 33 to 46 (47 is broadcast, 48 is the next network)
^
Sorry bout that!
Chang 05-20-2009
I passed the ccna. I got that nat sim and I got it working on first try, it was pretty close to what's shown on here. Wildcard masks were different and the address ranges were different as well. I set it up and soon as I was able to ping I was done. That test was hard, but I studied labs with my own equipment and went through all the material I could find.
Dark Angel 05-29-2009
Hi
if any1 want 2 pass CCNA contect me wid 110% GURRENTY this offer is valid for end of JUNE , contect me on
darkangel115@live.com .
Ucan 06-03-2009
Who can help me in this questions??



What routing protocol would be appropiate to use for exchanging routes between ISPs?


A. RIPv2
B. BGP
C. OSPF
D. EIGRP


Which routing protocol depends on the DUAL algorithm to calculate the shortest path to destination?

A. OSPF
B. EIGRP
C. RIP
D. BGP
Mugi 06-04-2009
I passed the exam today. You want the real q&a pls contact me. munkhuuch2004@yahoo.com.
Ucan this q will not come to the exam!!! But ans is ACD, ABC.
zito 06-05-2009
@9tut

please is it necessary to use the access-list 1 deny command in the sims

because practicing it on packet tracer works without it but in pass4sure it included please what the ideal for the configuration .

Thanks for Ur anticipated response
9tut 06-05-2009
No, we don't need it. You can add that command at the end of an access list but it is no use
mohamed 06-05-2009
Have you some LABs for CCNA security certification (640-553)...??
Dark Angel 06-05-2009
Hi
if any1 want 2 pass CCNA contect me wid 110% GURRENTY this offer is valid for end of JUNE , contect me on
darkangel115@live.com .
ciscoson 06-06-2009
yeah its BGP, and
Ucan 06-07-2009
While troubleshooting a connectivity issue between two directly connected routers, the network administrator checks the encapsulation settings on the serial interfaces of both routers. Which layer of the OSI model is the administrator troubleshooting?

A. application layer
B. network layer
C. data link layer
D. physical layer


How many host addresses can be assigned in each subnetwork when using network address 172.16.0.0 with subnet mask 255.255.252.0?

A. 256
B. 510
C. 512
D. 1022
E. 024

What will a router do with a packet that is destined for a host with the IP address 192.168.1.5/24 if no entry for the 192.168.21.0/24 network exists in the routing table?

A. It will broadcast the packet out of all of its active interfaces that received the packet.
B. It will send the packet back to the source address.
C. It will drop the packet.
D. It will broadcast the packet out of all of its active interfaces.

Contact me please ucansehzade@hotmail.com
Ucan 06-08-2009
More questions from CCNA 2 v4.1 (new)



Which statement correctly describes the difference between HTTP and HTTPS?

A. The maximum number of simultaneous connections that a server can support for HTTPS is more than for HTTP.
B. HTTPS and HTTP use different client request-server response processes.
C. HTTPS authenticates and encrypts the data being transferred between the client and the web server.
D. HTTPS specifies the rules for passing data between the physical layer and the data layer.

Which statement is true about FTP implementations?

A. The protocol interpreter (PI) function engages once the data transfer process (DTP) function is complete.
B. The DTP function is responsible for the login sequence.
C. FTP requires two connections, one for control and one for data.
D. Both the PI and the DTP close automatically when the transfer is complete.


What is an example of a dedicated point-to-point WAN link?

A. ISDN
B. Frame Relay
C. dialup
D. T1/E1




A building has experienced a power outage. When the power returns, none of the devices on one floor can access the Internet. The network administrator checks the switch in the IDF that these devices are connected to and notes that the SYST LED on the front of the switch is amber.

What is a possible cause of this problem?

A. The switch is functioning properly.
B. The switch has failed POST.
C. The switch configuration file was not saved to NVRAM.
D. The connection between the switch and the server did not autonegoitate speed and duplex properly.

When does a router enter the setup mode?

A. When the Cisco IOS is missing in flash
B. When the configuration is missing in NVRAM
C. When the setup command is run from the user mode
D. When the boot system command is missing in the configuration

Which two parameters are stored in the routing table? (Choose two.)

A. the best route to reach remote networks
B. the interfaces used to forward packets
C. the ARP requests from connected routers
D. the number of times a route has been used by the router
C. the packets that are placed in the buffer before being forwarded

What is the effect of issuing the hostname RouterA command on a router?

A. A description will be configured on the router interfaces identifying them as belonging to RouterA.
B. The router will attempt to establish a connection to the host with the name RouterA.
C. The router will map an IP address to the domain name RouterA.
D. The router prompt will change from Router(config)# to RouterA(config)#

If the start-up configuration is not found in NVRAM, where will the router look for it next by default?

A. flash
B. ROM
C. RAM
D. TFTP server

Which address does a switch use for implementing port security?

A. The source IP address
B. The source MAC address
C. The destination IP address
D. The destination MAC address







What are three features of the TCP protocol? (Choose three.)

A. It provides retransmission of data packets if they are lost during transmission.
B. It is a connectionless protocol.
C. It uses a three-way handshake between the sending and receiving systems to establish each conversation.
D. It specifies how messages are reassembled at the destination host.
E. It requires only 8 bytes of overhead.
F. It breaks the data packet into datagrams.

Which two services are required to enable a computer to receive dynamic IP addresses and access the internet usingn domain names? (Choose two.)

A. DNS
B. WINS
C. HTTP
D. DHCP
E. SMTP

Which routing protocol excludes the subnet information from routing updates?

A. EIGRP
B. OSPF
C. RIPv1
D. BGP
jo 06-09-2009
Hi 9tut, i have typed the command as above in the router(weaver) command line interface. When I open the "host for testing pc" and ping I get request time out. Can you help me.
Romain 06-09-2009
Hi, I try to ping from PC1 and it doesn't work (request timed out).

Inotice that I followed the instruction provided.

The thing that I don't understand is that I am able to ping the router Weaver from PC1 and the router is able to ping ISP. Why is the router not doiing the connection between Fa0/0 and S0/0? This problem occured several times and I don't understand why. Could you help me with this?

Thanks in adavances

Romain
ekn 06-09-2009
hi all
passed the exam on 6th june 2009 wid 958/1000 but all i can say pliz b real & smart in subnetting, summulization, connecting cables and also this kind of sims.
do refer to p4s with 503 questions and master them plus d 9tut and am assuring u sure pass!!!!

b blessed as u prepare for it.
Femi 06-11-2009
Hi guys,creating a Standard access list on Weaver using packet tracer gives me

%Pool mypool mask 255.255.255.248 too small; should be at least 248.0.0.0
%Start and end addresses on different subnets
Femi 06-11-2009
its was my error....sry for the stupid complain
Ayyan 06-11-2009
10.06.09 yesterday i attend the exam ccna. I got 958/1000.

Thanks to 9tut. p4s also help me. Any way thanks to all guys.
ratan singh 06-13-2009
hi
9tut.com
we want letest dump in ccna pls healp me
and trik in solv samulater
ajmal 06-17-2009
2 day i pass ccna with 930 marks
thank u
ajmal 06-17-2009
hi
i want latest ccnp dumps
plzzzzzzzz
Bipin 06-17-2009
Hi,
Thanks 9tut.com
I cleared CCNA today with score 958/1000
Zizou 06-17-2009
Something I do not understad...How can 192.0.X.X communicates with 192.168.X.X.Easier...The router has 192.0.X.X address in her Serial interface how it can communicate with his Fast Ethernet 192.168.X.X if 192.0.X.X does not belong to the access list.Please explain me...
Raj 06-18-2009
cleared ccna today....need ny help??
Dark Angel 06-18-2009
Hi
if any1 want 2 pass CCNA contect me wid 110% GURRENTY this offer is valid for JUNE , contect me on
ziakhuram@ymail.com .
Avi 06-19-2009
Hi 9tut and All,
i made the exam today and faild, this Q was part of the
Avi 06-19-2009
Hi 9tut and All,
i made the exam today and faild, this Q was part of the LAB question, should I get as part of the question the pool name and access list number? becuase i didnt.
9tut 06-20-2009
You don't need to type the same, but make sure you understand why. For example, we should use a standard access list here, not extended access list
Haja 06-21-2009
Can anyone send P4s latest dumps for CCNA.
I failed in 2 times.send to :safibe@gamil.com
Thanks
Haja 06-21-2009
Send P4s dumps to : safibe@gmail.com
Vaha 06-23-2009
Send P4s dumps to : vahamark2@rambler.ru
THKS
newCCNA 06-23-2009
Hi 9tut,
Great website, more accurate , better and correct answers given than that in P4S for all lab questions.
keep up the great work.

Is there a link for CCNP ?

For all those that are going to take the CCNA soon , study hard, understand your stuff and listen to 9tut.

Questions that i had were...

Hot spot - frame relay, NAT, RIPV2 and the new access-list question.

Note.....make sure you get through the multiple choice questions, because you might get hit with a LAB question as number 43 out of the 44 with only 5 minutes to go.

I passed with 972

Cheers 9tut.
Kd 06-24-2009
@newCCNA

What was ur new access-list questions ??
i hv my exam tomo. plz help.. :)
Dark Angel 06-24-2009
Hi
if any1 want 2 pass CCNA contect me wid 110% GURRENTY this offer is valid for JULY , contect me on
ziakhuram@ymail.com
galabala06 06-25-2009
Passed the exam today.This question has been in the exam today with a diffrent ip addreses for nat and LAN.
Kd 06-25-2009
Had this lab today.. scored 986/1000.
did it..
Kamran_peshawar 06-26-2009
i have my exame tomorrow.. can any one tell me the shortest way to calculate the Wildcard Mask value for the network mentioned in this lab. plzzzz reply..any one
Bla Bla 06-26-2009
Hi, I want to ask... can i put the "no shutdown"command after declare the ip nat inside/outside in interface configuration command???

Thx B4
abdul fatah 06-27-2009
if any one have latest CCNA dumbs please mail me to abdulfatah41@hotmail.com
kamran_peshawar 06-28-2009
By the Grace of ALLAH on 27/06/09 i passed the exame CCNA (640-802) obtained 944

out of 1000, exame was so simple labs were same RIP V2 and NAT,

MCQs were same as in Pss4sure latest 514 questions dumps, but in

subnetting, VLSM, and in both of labs RIP V2 and NAT the

network/ip addresses were changed so u people need to clear

concept on Subnetting, VLSM, Summerization/superneting

but you should type full commands while sovling a LAB, so no marks

will b deduct then, try to not use TAB key almost, but one thing

more i didnt get any of the VTP SIM questions in exame, the exame was so simple

for me.. any question regarding exame u can ask me on ,

me.mcse@yahoo.com

and bundles of thanx to 9tut. which gave me alot of support and info

about exame.... thanxxx keep it up 9tut....
Dark Angel 06-29-2009
Hi
if any1 want 2 pass CCNA contect me wid 110% GURRENTY this offer is valid for next 3 months, contect me on
ziakhuram@ymail.com .
ravi 06-30-2009
hi,

if any one pass ccna 640-802 exam now a days. please help me to pass the ccna exam. i failed 2 times in june. and i want help from you.
my exam is on 2/07/09.
i have 8.14 p4s with 514 Q & A.
so please any one pass in now a days please contact me on my email id as follows ravindrabhosale85@gmail.com
please .
confused 06-30-2009
hi ppl
can anyone tell me if a stub network = subnetwork ?
what is a stub network?
Paulo (Brazil) 06-30-2009
I ve got the exam today but i'm failed with 776, this sim is still valid.

I will retake the exam (cisco comeback promo) in a few days.

Thanks 9tut!
ekw 07-01-2009
hi i am about to take exam in 5days to come,has the questions changed for those who have done the exam in july? gudluck to all
satish patnaik 07-02-2009
hi


in ccna dump u have some tricky wuistion like drag and drop for

url
nic card
ip address
cable the correcet answar is cable
nic
ip address
url


and in nating password is req. or telnet... u just go foer no password is the answar ...... ok i wrote the exam on 30th june and i got 958 .....all the best to my friend for CCNA exam or is there any dout call me on 09985714525 or mail me patnaik86@gmail.com
Harry 07-04-2009
I gave my CCNA exam yesterday but unfortunately I failed in the exam. All the sims and 80% of the questions were from the dump. I dont know where I got less marks. I scored only 804 marks. I just want to know is there any negative marketing in the sims. Because I completed the the sims successfully. Please tell me is there something else I need to do after completion of the sims.

One more question, is that necessary to enter all the commands shown above in the sim?? because without entering the commands I answered the questions. I had memorized all the questions and answers.

Please help me my exam retake date is 9th july. Please help me.
rejath 07-04-2009
i had my ccna exam yesterday and i passed it with 98.6%.....thank u 9tut!!!
rejath 07-04-2009
there was a question like......

Where would the dynamically learned MAC address frm the sticky command stored???

a) startup-config
b) running-config
c) VLAN database
d) don't remember
e) don't remember
rejath 07-04-2009
ther were some drag on Q's like

eigrp - AD is 90
vendor specific
OSPF - cost as it metrics
elects a DR
rejath 07-04-2009
check out for pass4sure 3.22 dumps frm net
It provided most of the Q's...study it by heart and go and score above 900......
Anonymous 07-05-2009
download latest pass4sure ccna 640-802 dumps v8.14 (514 q)
testing engine included to download this software download the below files
if u want more dumps of any it certification mail at (mahajunction@gmail.com)

http://www.ziddu.com/download/5468061/P4S640-802v8.14.part1.rar.html
http://www.ziddu.com/download/5468166/P4S640-802v8.14.part2.rar.html
http://www.ziddu.com/download/5468254/P4S640-802v8.14.part3.rar.html

for instructions mail me at mahajunction@gmail.com
Dark Angel 07-05-2009
Hi
if any1 want 2 pass CCNA contect me wid 110% GURRENTY this offer is valid for JULY , contect me on
ziakhuram@ymail.com
Abdul 07-07-2009
If anyone has latest dumps please email me to nabdulsalam786@gmail.com
xicohtl 07-09-2009
@Dark Angel

I supose this site was created to share, not to make business.

I already posted a link for the new version of P4S v7.58 in the share your experience section.
Dark Angel 07-09-2009
im not doin anykind of business Okay
U MORON
asked pplz i doin dat 4 free
Aria 07-13-2009
Dear Ever ONe Sallam

please helpe me to pass the exam some body Send update in this e-mial
i will appreciation all

asadullah_afghan@yahoo.com

pleasse please please


aria
Rik 07-14-2009
Harry, you said your retake was 9th july. Did you pass this time? What sims did u get?
kukies86 07-15-2009
hey guys .am plannig to take my exams next week.ND JUST WANNA BE POSITIVE THAT THE SIMULATION TOPOLOGIES ARE STILL VALID REGARDLESS OF TH IP BEING CHANGED.
Dharmabum 07-15-2009
Hey guys, going to take my CCNA for the 2nd time on 7/20/09. Still having troubles with the sims. Thanks for the help.
Rauji 07-16-2009
Hi

I passed today with full marks.all simulation come from this site

Thanks to 9tut.com
David Davidson 07-16-2009
Holla @ 9tut
you rock sir! thanks for all the help!

best of luck in the future
Mr. MCTS 07-16-2009
please help me.... taking exam on 18 July 09.

in 9tut the anwser of NAT SIM
and in P4S 7.58 the anwser of NAT SIM

some diffrence between commands ...
which one is corret ? which one i should follow

plz reply hurry ...
faheem 07-17-2009
i'm going to test on 29 & i can't understand why we write

Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15
NOT

Weaver(config)#access-list 1 permit 192.168.100.17 0.0.0.15
bec. the question is telling me that the inside local addresses 192.168.100.17 ????
Ibe 07-19-2009
الحمد لله
I passed the exam with 986. If you have any questions or need help with subnetting issues, I will be glad to assist you.

I had sim in NAT and RIPv2 and sim with multiple choices in Frame Relay and ACL. Exact same as 9tut but name, ip addresss and password are different.
materials used:
Testout CCNA 802
KillTest Q184
http://www.subnettingquestions.com/ for subnet practices

Thank you 9tut! I am now onto CCNP.
tp 07-19-2009
HI
Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15
Pls can someone give brief explanation on this...0.0.0.15 how do we determine this? Tanx
Ibe 07-19-2009
TP
The question said 192.168.100.17 - 192.168.100.30/28. Convert /28 into subnet mask is 240. Therefore, we have to use wildcard mask for accesslist instead of subnet mask. 255-240 = 15.

subnet mask is 255.255.255.240
wildcard mask is 0.0.0.15
Ibe 07-19-2009
Faheem:

We have to use network address not the host address.

Learn this:
Network Address
Host Address
Broadcast Address
cisco deamer 07-20-2009
thanks ..9tut..i cleared it today.. every things were from pass4sure and 9tut .. but still be careful.coz instaed of 4 options they put 6 options.. so bit confusing..
ayyan 07-21-2009
Hai everybody. I passed my ccna with 960 marks. thanks to 9tut.

Hai guys any one know the mcp (xp) website or forums. please send to my emailid. Advance thanks.

ayyansp@yahoo.com
envy 07-21-2009
Hi
Anyone looking for IT forum for Cisco Microsoft Comptia and others
visit
http://www.certcollection.org
you have to register but the site is helpful for IT exam prep material

Good Luck
jay 07-23-2009
hello everyone...i intend to write ccna within the next few days, whats the latest info, i was just told the dumps have been changed and probably the syllabus....please who knws the latest...
jay.
Denoshan 07-23-2009
Hey guys i going to do my test on sunday there are new pass4sure questions vr 3.23 and i just bought pass 4 sure ccna labs there are 27 easy and somewhat hard labs so if you need these please send me and email to denoshan_08@hotmail.com

also does these labs come on the test the labs on this website does it come on the test
Denoshan 07-23-2009
so if you need any thing please email me denoshan_08@hotmail.com
yoyo 07-24-2009
Are u sure i can pass this exam?
I am so worried abt dis
denoshan 07-24-2009
yoyo just study and u wiil pass this exam
nswai15 07-25-2009
has anyone sat fr the exam currently are the labs still the same? rip version 2 and NAT???
Thanh 07-28-2009
firt of all, i'm full thanks 9tut and examcollection.com, i had passed on 23/07/09 ccna because of you:), now i would like to share take ccna to you.
lab sim: nat, rip v2, access_list, frame_rely, it's all in 9tut and 136q in examcollection.com, still available.

good luck to you.
SkyWalker 07-28-2009
I just passed CCNA 902/1000 - I got Rip V2, ACL, and NAT SIMS.

if u want 2 pass CCNA contact ziakhuram@ymail.com

Thanks Zia
Jmar 07-29-2009
Please can you tell how differents are the Sims IP address.
ACL is it exactly the same here.
Did you type any command to see the configurations or everything was just displayed.

thanks and congrats to both of you SkyWalker and Thanh
Jmar 07-29-2009
i have study the last 4 months
i thinks that i'am ready but seriouslly i'am a bit scared.
i need help buddies
jef_ece 07-29-2009
One of the best days of my life.I have passed my ccna examination this day. There have been changes with the labs. the given IP's have changed. there are also questions about IPV6.
Skywalker 07-30-2009
Jamr the IP addresses were different, but it;s the same concept as explained by 9tut. ACL Sim waws exactly the same. I belive the configurations were displayed already. Good Luck
venccna 07-30-2009
Hi,

I have passed my CCNA exam 640-802 !!!

Thanks a lot to this site.

I had simulations which are given in this site like NAT, access list, RIPv2, Frame-Relay.

Certain changes in IP address only...
concerned 08-01-2009
KNOWLEDGE is FREE
HELP is FREE

Join certcollection.org
MEMBERSHIP is FREE
KNOWLEDGE is FREE
HELP is FREE

You can get the LATEST pass4sure test engines FREE,
cbt nuggets FREE,
pdf files FREE

FREE MEMBERSHIP @ certcollection.org

JOIN NOW and ENJOY the FREEDOM :)
dokhanh85 08-02-2009
interface Fa0/0 have to apply access-list 1 in
Amruth 08-03-2009
Hi everyone,

I had CCNA today and passed with 958 marks.. thanks for 9tut and also for all those who are contributing through this website.
CLAY 08-03-2009
Do you need to do no shutdown on interface when doing ip nat inside/outside??
Tango 08-03-2009
guys plz clear my confussion i have to different question:
question1:
The company has 14 hosts that need to access the internet simultaneously.
The hosts in the company LAN have been assigned private space addresses in the range of 192.168.100.17 – 192.168.100.30.

Solution:

Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15

(as we know the we put network address)

Question2:

The company has 62 hosts that need to access the internet simultaneously.
The hosts in the company LAN have been assigned private space addresses in the range of 192.168.6.65 – 192.168.6.128.

Weaver(config)#access-list 1 permit 192.168.100.64 0.0.0.63

A lot of places they wrote including killer test 137 page 63

Weaver(config)#access-list 1 permit 192.168.100.65 0.0.0.63

What is correct to my understanding it should be permit 192.168.100.64 0.0.0.63

Plz confirm that
9tut 08-04-2009
192.168.100.64 is the network address while 192.168.100.65 is the first host address of this subnet. In the access-list command we need to use network address -> so you must use the command "access-list 1 permit 192.168.100.64 0.0.0.63"
9tut 08-04-2009
To CLAY: No, you don't need to do no shutdown on interface because it has already been turned on
newmoon 08-04-2009
hi admin
r u help me?
i want to know which version is now running?
and how many question r in their?
i want sit for ccna exam...so dear help me
if u have the new version, plz give the link.....
concerned 08-04-2009
newmoon
you will get between 44-48 questions all from this site...
good luck
Ahmed 08-04-2009
Hi 9tut,

Please, help me here I failed the ccna test three times and I don't what to do. can you please advise.
9tut 08-05-2009
To newmoon and Ahmed: you should read the article "Share your experience": http://www.9tut.com/share-your-experience.

Don't be so sad Ahmed, you should master all your weak points, learn subneting skill, write down all commands of the labs posted here, understand all the question in p4s before going to the exam... Good luck to you!
mohammed 08-05-2009
hi bro ahmed i just can advise you that by saying trust yourself and don;t give up keeeppp tryyyingggg man you will do it for sure .....
rahul 08-07-2009
hi friends,
plz my answare this question,
my question is tab key on in simulator.
plz plz plz ans. me
concerned 08-08-2009
rahul

NO: tab key NOT in simulator

YES: ? for help is :~)
rahul 08-09-2009
thanks concerned for give information.
rahul 08-09-2009
This site question useful or not because my exam is 18th aug.
venkat 08-09-2009
my well known friend wrote ccna exam on 8th aug 2009 and just managed to score 830...he told me that 6 to 7 questions came out of dumps...and also he told that on NAT when he gave the command
"ip nat inside source list 1 pool nat_test" it showed error...he got only 52% in NAT...
my question is...
whether any update in dumps...?
and what was the error in that command...?...he used the same commands that u gave in 9tut and the same question only came only with the change in ip address.........
hashim 08-09-2009
Hii 9tut dont know why this question i cant ping my isp. this are my configuration

waver>enable
waver#show run
Building configuration...

Current configuration : 701 bytes
!
version 12.4
no service password-encryption
!
hostname waver
!
!
!
!
!
ip ssh version 1
!
!
interface FastEthernet0/0
ip address 192.168.100.30 255.255.255.0
ip nat inside
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0/0
ip address 192.0.2.113 255.255.255.252
ip nat outside
clock rate 64000
!
interface Serial0/0/1
no ip address
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248
ip nat inside source list 1 pool mypool overload
ip classless
!
!
access-list 1 permit 192.168.100.16 0.0.0.15
!
!
!
line con 0
line vty 0 4
login
!
!
end


waver#
waver#

also i can ping my default gateway no problem and i can ping between serial connection its only from my pc to isp not working and all my nat is above.
rahul 08-11-2009
chang dums ane simulators,
yes or no
fast ans. me
guest 08-11-2009
my config and seem to be working fine

Current configuration : 757 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Weaver
!
!
!
enable password cisco
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
ip address 192.168.100.30 255.255.255.240
ip nat inside
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0
ip address 192.0.2.113 255.255.255.0
encapsulation frame-relay
ip nat outside
!
ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248
ip nat inside source list 1 pool mypool overload
ip classless
!
!
access-list 1 permit 192.168.100.16 0.0.0.15
!
!
!
!
!
!
!
line con 0
password cisco
login
line vty 0 4
login
!
!
!
end
chukky 08-11-2009
please guys whats d latest CCNA pass4sure dumbs. i intend to take d exam dis week.please, respond quickly cos i don't want to take chances.
Hrishi17 08-12-2009
hi..

i am just curious..there are many changes / suggestions made by user here & if any changes to be made are they done in the SUGGESTED / GIVEN ANSWER (on top) or do i have to read every comment made (though every comment does improve my knowledge & makes me skeptic).... let me know if possible.. & i wished i didn't all on myself & went for this exam..i scored 800 & now i know little bit of google help & from you guys would have made my day last week..nevertheless....i'll try again.. :)
Aryan 08-13-2009
I took the exam on 12-Aug and this question appeared for sure.. Thanks 9tut
ashok 08-13-2009
hi 9tut,
my friend take exam on 13th aug,
he say one sim is defferent and some dums was defferent,
he says sny access-list sims.
plz upload this sims,
i m very tens.
9tut 08-13-2009
All the sims were posted here. Please use the search bar to find that sim
hampton 08-14-2009
So I encountered a discrepency in 'sh start' compared to 'sh run' commands after copying running-config to startup during the test

sh start
'''''''''''''
interface Serial0/0
ip address 192.0.2.113 255.255.255.0
encapsulation frame-relay
ip nat outside
!
!
ip nat inside source list 1 pool mypool overload
ip classless
!
!
access-list 1 permit 192.168.100.16 0.0.0.15

line : ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248 was missing, anyone else seen this, is there a problem with the test, tried copying several times
'sh run' was correct
Hi 9tut 08-14-2009
I am taking CCNA exam aug 16-2009, if there is any change would you please update this web page?
george elimu 08-15-2009
i certified on 14 august 2009 but failed (790). all the 4 labs were there. configuring of rip version 2, nat and acls also existed .host sport question also existed.many no. were subneting, drag and drop.
jara 08-15-2009
I did the exam on 13, one day before and same thing that George mentioned, I also failed with 790 jeje.
357 08-16-2009
I am new to your site but have been following it a while i took the the test on the 8th and di not make it. for a guestimation how much change do you all think will be on the second test i 10 or 15 days and i did not have a problem between sh start and sh run
george 08-17-2009
during my configurations completion, i wasn't able 2 turn back 2 the topology, what was the problem. i ended up with only 50% in this section .pliz help
abdulkwordrie 08-17-2009
please i will be writing the exams in a few days time,may God make it easy for all of us.my question is this-
the pass for sure v3.22 answer for this question is different in the sense that the access list cfg came before the global translation.can one answer the question as they did in pass4sure?
abdulkwordrie 08-17-2009
what i mean is below;is this correct?please experts help me.

weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15
weaver(config)#acess-list 1 deny any
weaver(config)#ip nat pool nat_test 198.18.184.105 198.18.184.110 prefix-length 29
weaver(config)#ip nat inside source list 1 pool nat_test overload.
abdulkwordrie 08-17-2009
please any one here with the answer to all Ucan questions?
ashley 08-18-2009
@abdul
am not an expert but as far as i know
access-list 1 permit 192.168.100.16 0.0.0.15 must be configured before
ip nat inside source list 1 pool nat_test overload.
kish 08-18-2009
can we use calculator in the windows in ccna exam
Kumar 08-19-2009
Does the order matter ... ?? I run simulations and they work properly, not matter how what set od command u run first ...

Am i correct ... ??
Stalwart 08-19-2009
Hi guys,
Does the P4S 7.58 still useful after they published the new one yesterday.
Any help would be appreciated.
Thanks.
sanjeev 08-19-2009
hi, friends i want to write my ccna exam in this month . and i has the exam on 28 of this month. please can you send me the latest dumps to my maid-id.
janardhan.sanjeev@gmail.com
sanjeev 08-19-2009
hi, friends i want to write my ccna exam in this month . and i has the exam on 28 of this month. please can you send me the latest dumps to my maid-id.
janardhan.sanjeev@gmail.com
Protect 08-19-2009
this lab was at the exam on date 13 August
spanish 08-23-2009
Hello 9tut,
please i just to confirm in the NAT sim configuration, since the ip nat inside and outside has been configured already, there is no need to configure that(this steps can be skipped).
hence the step ends like this after other configurations have been made:

e.g
weaver(config)#ip nat inside source list 1 pool mypool overload
weaver(config)#copy run start
9tut 08-23-2009
Yes, you got the point, spanish!
omoakin 08-24-2009
please 9tut can you assist me by sending p4s version 7.58 or the latest version i have tried every way getting it but requesting for password. Thank you so much my exam is this week. Email:OMOAKINTWELVEE@YAHOO.COM Thank you i will be expecting from any one
babu 08-24-2009
i prepared well from 9 tut, but my friend told that ccna dump is recently updated on aug 18, i am attending the ccna exam in this month pls.... forward if any latest sims and questions........to baburao.8055@gmail.com pls as early as possible i want latest questions.
ZAK 08-24-2009
Hi can anybody explain me how this command works:

weaver(config)# access-list 1 permit 192.168.100.16 0.0.0.15
khalil 08-24-2009
hey zak. the command access-list 1 permit 192.168.100.16 0.0.0.15 basically translates all the privat address that you have between that particular subnet. basically that statement will allow that range of ip address to access the internet
Radhakrishnan k g 08-26-2009
Hai 9tut.com

Will you able to help me to find out an answer for this question

my question is bellow

" In Distance Vector Protocol how can one control loops of neighbor updates in one interface? "



Please any one can help me in this regard
kafa chris 08-28-2009
hi can you plse help me with latest pass4sure ccna 640-802
update link i wana sit for exam but haven't been able to get it

ktkchris@yahoo.com
Nelson swai 08-29-2009
http://www.ziddu.com/downloadlink/6133698/640-802.part1.rar
http://www.ziddu.com/downloadlink/6133697/640-802.part2.rar

That's the link with the lattest p4s dumps,they run on XP, if you gt a machine running Xp fine,otherwise use any virtualization platform like Vmware,virtual box etc,i cleared mine 21st august,with 930,thanks to the almighty.
Know your thing,prepare well this will give you an easier time in the exam.
All the best guys.
got latest pass4sure 08-30-2009
Pass4sure v7.63 and 7.58 as a PDF

http://www.4shared.com/file/126220438/f79c0752/P4S_640-802_v763-New_Questions.html

http://www.4shared.com/file/126964515/aafcb20e/P4S_640-802_v758_PDF.html
ashley 08-31-2009
hi all ive passed my CCNA 2day ...
pass4sure 7.58 still valid
all lab frm 9 tut..thxx
remember 9tut is the instructor but u hav to drive the car...
i got the ACL,RIP and NAT sim...
but in NAT it did not get the CIDR...prefix-length...
i got 198.18.184.105 198.18.184.110 wizout /29 or /28 etc in exams
u must master sub-netting and IP addressing ...
again thxx 9tut..simply g8..
for any help..... ash270185@yahoo.com OR dj-ashley@hotmail.com...

BTW the exams is easy ..but dnt learn anyfing by heart instead understand it ...i completed the exams in 20 min ...
Nelson swai 09-04-2009
http://www.ziddu.com/download/6341416/p4s640-802.exe.html
link to new p4s questions contains 473 qns.
Daniel 09-04-2009
Hi 9tut,
this site is excellent. Thanks for the collection. i have a question:

with regards to this command "Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15" , i thought the wildcard should be 0.0.0.14 because the question indicates 14 hosts? Furthermore 0.0.0.15 includes the broadcast address which shall not be included (shall include only the usable addresses for hosts? The answer in Testking also shows 0.0.0.14, so is it 14 or 15?
Sadi 09-05-2009
@Daniel: 14 in the wildcard mask (0.0.0.14) is not the number of hosts we need to use. Please read more about access list wild card. Here is a good tutorial: http://www.certprepare.com/forum/index.php?showtopic=2
ahmed 09-06-2009
i have a question concerning the static deafult route on the stub network shouldnt it be ip route 0.0.0.0 0.0.0.0 s0/0 on the router conceted to the ISP
abdul basit 09-06-2009
i have question tooo
in the NAt SIM

we have Host range 192.168.100.17- 192.168.100.30 what will be wild card bit for this I think this should be 0.0.0.13 but in the example it is 0.0.0.15 can any body tell me why it is so???
osbserver 09-06-2009
@basit,
0.0.0.15 is the correct wild card mask for this host range cos subnet itself is 192.168.100.16 and the block size is 16,so its cant be 0.0.0.13
Daniel 09-06-2009
Sadi,
Thanks a lot. i will use 0.0.0.15 in exam.
HELP ! 09-07-2009
@ BASIT

A wildcard mask is referred to as an inverse mask. In this case, it is the inverse mask of /28 ( = 255.255.255.240 )

240=1111 0000
15 = 0000 1111

I hope it helped.... just want to tell you, you shoud know subnetting, you can't use 0.0.0.15 be'coz in the exam there will be different IP addresses...

I got my exam in dis week.... I hope i'll do well just like others...! =).. GUD LUCK 2 every1....!
training 09-07-2009
hi guys

it's a blog for CCNA and CCNP training video and Cisco IP Communicator


http://traning4all.*.com/

http://traning4all.*.com/

http://traning4all.*.com/
abdul basit 09-07-2009
@t Osbserver.........Thanks
abdul basit 09-09-2009
Hi 9tut and every one...

i have question regarding subnatting
suppose we need to create 300 sub-networks and 50 hosts for each using class B address

calculation on the base of hosts right....... as it is VLSM

2 power 9 = above 300.... it means last 9 bit is open like this

11111111-11111111-11111110-00000000
255.255.254.0
but it is wrong can you explain me why.... thanks.......

what subnet mask suppose to for this...... plz explain me as well
9tut 09-09-2009
The default subnet mask of class B address is /16 (=11111111-11111111-00000000-00000000) so with your subnet mask, you only use 7 bits for network mask. Therefore 2^7=128 < 300 and is not sufficient for sub-networks.
The correct subnet mask should be 255.255.255.128 or 255.255.255.192
David 09-09-2009
I have a question.

can i replace numbered access list with a named access list ?

for example ,
replace "access-list 1 permit 192.168.100.16 0.0.0.15" with
"ip access-list standard ADDRESSES"
"permit 192.168.100.16 0.0.0.15"

and
replace
"ip nat inside source list 1 pool mypool overload"
with
"ip nat inside source list ADDRESSES mypool overload"
?
mani 09-10-2009
i ther..
well i wanna ask da admin whether the retake of ccna exaqm is free ov cost or not.. i mean if i fail once wud i b able to take da second chance free ??
Zak 09-11-2009
Hi 9tut, thanks for your effort. I just want to know how you determined the mask for either the (inside local addresses range- 255.255.255.240) and the (inside global range 255.255.255.248). In spite of the question made no mention about it.

I just wanted to know how u calculate the Netmask or the prefix length for global address given. Also the subnet mask for the access list. Because in real exam they dont specify the / values or netmask they just give the range of ips for global & local. Please any expert can help me how u get this.. Please my friends..
Druid 09-11-2009
Hello all,

Well,
I've almost passed the CCNA twice now 805/794 respectively. My experience was that the second test was even harder than the first attempt. What can I expect for my next attempt next month? Can anyone suggest a fail proof way to pass for sure!!! Any help would greatly be appreciated.

agr13_13@yahoo.com

thanks
9tut 09-11-2009
To Zak: The question mentioned these masks as /28 and /29.

To Druid: You should read the "Share your experience" to get more information http://www.9tut.com/share-your-experience
Zak 09-12-2009
To 9tut: One of my colleague attended the exam 2 days ago. He said the prefix length or netmask was not given it seems is it so, 9 tut please help me shortly i will be taking my exams..

Or may be he has not scroll down the question properly till the end & read properly. But my doubt is when he is given the net mask its very easy just 4 commands we need to remember for this we get 200 marks please reply me 9 tut.
Zak 09-12-2009
Hi 9 tut please reply your reply builds our moral & confidence to everyone who is taking CCNA. Please its a humble request for u to reply & clear our doubts. Then only this website rockkkkkkkzzzzzz my friend.....

Thanks in Anticipation
abdul basit 09-12-2009
Hi Every one and 9tut

Questions....
i am using packet tracer from where i can test the Ping command from user mode and its working.......

but in the Pass4sure question

its written ping command is used on privlage mode

which one is the correct answer

appreciate ur usual support.... as my exam in next week

and hello every one is there any updated version for pass4sure
i am concentrating on 7.58 is it ok....
abdul basit 09-12-2009
i have OS XP and trying to install pass4sure version 7.73 but at the end ,installation has been freezed can any one tell me from where i can get the pdf directly or send it to me at basitstar@hotmail.com


thank you.... thanks very much
Sherif 09-12-2009
why did we use the wildcard mask 0.0.0.15?
i'm confused
9tut 09-13-2009
To Zak: Surely the question will give you the netmask. Make sure you read the question carefully and pay attention to the "/" after the given IP addresses. They are the subnet masks you need.

To Sherif: In short, wildcard masks are the inverse of subnet mask in binary form. The subnet mask of this question is /28 (255.255.255.240) so the wildcard mask must be 0.0.0.15. Please write these subnet mask and wildcard mask in binary form, you will see the inverse.
9tut 09-13-2009
To abdul basit: you can use the "ping" command in both modes. But in this question, you have entered privileged mode so you should use the "ping" command in this mode.
Sherif 09-13-2009
Thank you very much.
Zak 09-13-2009
Thanks 9tut its clear now that netmask will be given in the exam.
abdull basit 09-14-2009
thanks.... 9tut
vukispasic 09-18-2009
Thank you 9tut. I passes today with 972 points. I had 44 questions. All questions and sims were from pass4sure 8.14 and 9tut site. I had access-list sim, this NAT sim, frame-relay sim and configuration RIPv2 sim. Thanks to all people for the effort thay are making to help CCNA candidates pass exam more easely.
Srinath 09-21-2009
In this nat sim, i have doubts:
a) What is the ip route 0.0.0.0 0.0.0.0 192.0.2.114 - if present in basic configurations explain
b) how will the remote host know where to send the packet containing destination as 198. when the outside global address is configured with 192.
baby4 09-21-2009
is it necessary to add "copy run start" to ur configuration...does it mean that the configuration is not complete without it
Anonymous 09-22-2009
I got this question today, diferent Ip of course, most of the questions from 9tut and P4S (Kill test 640 802 - V13.02 by sohail) Passed!!! Thanx everyone and Good luck!
mani 09-28-2009
hey guys pass4sure has updated dumps on 26th sept.. can any 1 provide me da link ?? i cudnt find it after a huge search..
hii 09-29-2009
Is dere any Q. in dumps 7.58,7.63,7.73 which is wrongly answrd....plz tell
specify Q. no.
kirn 09-30-2009
To 9tut.com:Great website guys really helping all of us....i got a doubt.everyone says get ur concepts thorough ,read dumps and go thru 9tut.com

so the dumps and 9tut.com questions valid all over the world as i live in US i don't know if we can use the same dumps for passing CCNA exam here in US.

Can someone pls clarify...

Thanks
9tut 09-30-2009
Yes, no matter where you live, the exam is the same.
EKNATHA REDDY (SAINATH) 10-01-2009
Hi.... every one :)

With God's Grace n with ur(9tut n visiters) timely guidance n queries .
I hav passed CCNA 802 With 958 TODAY . i m :) .

i got ripv2 and nat simulation lab , framerelay and acl hotspots ........

my advice to future ccna takers is
First understand concepts completely n master subnetting ..
and then refer p4s latest n not the least a must 9TUT WEBSITE....
:)
main 10-01-2009
hi i gave my CCNA xam yestarday.. this sim came wid 62 hosts... i passed my xam wid 96%...
SAFWAN RIYAZUDEEN 10-02-2009
TO : 9 TUT

few doubts

is it needed to config ip nat inside in fa 0/0 and ip nat outside in s 0/0.. in NAT LAB.. THEY GIVEN THIS CONFIGURATIONS ARE ALREADY MADE AND ASKED THEM TO CONFIGURE ONLY ACCESS LIST AND NAT POOL.. BUT IN DUMPS THEY CONFIGURED IP NAT INSIDE AND IP NAT OUTSIDE TOO..

now my question is if we configure this commands in exam it will go wrong ?? or no problem in configuring his commands again in exam??



2.can we give just copy run start command instead of copy- running config startupconfig ???

3.
SAFWAN RIYAZUDEEN 10-02-2009
to :9tut

3. can we use short cuts like config t for config terminal

4. i heard their is seperate timing will run for lab ?? may i knw th time period??

5. i heard from friend frame relay lab is added.. but i seen here only EIGR , RIP , NAT , TELNET LABS.. no FRAME RELAY LAB GIVEN in 9 tut... can u give me where is frame rlay lab in 9 tut ???
9tut 10-02-2009
1. You don't need to configure nat inside and outside.
2 & 3. You can use shortcuts but no one can guarantee it will cost some points or not, so you should use the full commands.
4. No seperate timing for labs.
5. Here you will find the frame relay lab: http://www.9tut.com/ccna-hotspot-questions and go to "Hotspot Frame-relay Question"
SAFWAN RIYAZUDEEN 10-03-2009
TO : 9TUT

TANXS FOR UR CLARIFICATION.. but i want to know few things very clear.. i know it is no needed to configure ip nat inside and ip nat outside.. but in DUMPS they added that too... so leaving this command will make us lost some score ?? or saftey to do the commands??

2. for labs where we have to configure the commands the IN THE SPACE PROVIDIED FOR THAT OR WE HAVE TO DOUBLE CLICK THE SPECIFIC ROUTER OR SWITCH AND CONFIGURE OUR COMMANDS ???

LOOKING BACK U R REPLY..
shrikool 10-05-2009
hey yaar I am studying pass4sure dumps v7.78. Is there any latest advancement ??

@9tut.... your efforts are really appreciable
going to appear for exam after 2 days.
Alfred from Ghana 10-07-2009
thanks @9tut for the SIM Question i had it in my Exam today but i got 790 instead of 820 i dont know where the 30 pass
ltrevino18 10-08-2009
Hi ! 9tut and all members
I just passed my CCNA exam, I got 986/1000 marks.

Some of the highlights of the exam:
NAT Lab Sim
Ripv2 Lab Sim
Frame-Relay Sim

And also a couple of normal questions that I didn't not see
during my study journey.

The exam is not too dificult. I studied Pass4sure v8.14 and Lab sims
from this Site.

Thanks 9tut, you're the man!
Oh! by the way , I would like you to give me your address I got some furniture to send you!! lol.
Peace Folks
shrikant 10-09-2009
@9tut thanks .... you are providing great support for ccna material

I appeared for ccna today and got 986/1000.
This activity was in my paper.

I lost 14 marks, because I didn't issued command
Router#copy run start
(I know it's silly)
at the end. Don't forget to issue copy run otherwise the host willn't be able to ping the ISP .

hey thanks once again www.9tut.com
MOHAMMED AWAD 10-10-2009
HI EVERY ONE I PASS MY CCNA EXAM BY 972 / 1000


NAT OVERLOAD
FRAME RELAY
RIP VERSION 2
ACCESS-LIST


THA,K YOU FOR 9tut.com for greatfull hellp ....
my next plan is CCNA Security .....



wish u all the best
Anonymous 10-11-2009
which lap do u mean exatily ?

i wanna do it tomorrow ?

plz tell me
Anonymous 10-12-2009
i passed exam with 958
there are some diffirnt >>> but don;t warry man

do the best


NAT OVE

ACCESS-LIST

FRAME RELAY
RIP VERSION 2
THA,K YOU
FOR 9tut.com for greatfull hellp ....
Jesus666 10-12-2009
Hi 9tut,

I passed my CCNA today 972/100.
I had the Configuration SIM, the NAT SIM and the frame relay hotspot questions.
Thanks to you I and to this wonderful site I prepared well and all went good.

cheers
Anonymous 10-14-2009
i had mine yes2day but failled with 776, i had some issues with the frame relay. iwas trying to input the command but it wasn't going so i skipped it hoping to back when i'm tru with other questions not knowing that once you skipped a question you cant go back to it. but much tnx to 9tut.com. advice is needed from ppl as i will try and gather some money to rewrite the exam.holarlaykon@yahoo.com
George 10-15-2009
Today, I made my exam with 930/1000 !!
This lab was part of my exam today.

Check also the PDF of Certifyme. I just leaned this book with 185 questions and of course 9tut. This is valid.

If you have more questions, just ask me Email: g@georgeandsilentpartner.com
O'timehin 10-16-2009
the address is not included in the given address, how would ping 192.0.2.114 work
dammy@nigeria 10-16-2009
i made my CCNA today with 902 this lab was part of my sim....thanks to 9tut
thanks to todd lamm .........CCNP next
Vikram 10-16-2009
Hey guys i gave my CCNA exam on the 15 th of oct and i passed with 944 score...i`ll like to tell u guys the SIMS on 9tut r all there int the CCNA exam but the MCQs were really confusing ..of the 48 questions about 20 questions were from pass4sure but with 6 or 7 choices so it was a bit confusing...THNX 9tut for all the help
Vikram 10-16-2009
Hey guys i gave my CCNA exam on the 15 th of oct and i passed with 944 score...i`ll like to tell u guys the SIMS on 9tut r all there int the CCNA exam but the MCQs were really confusing ..of the 48 questions about 20 questions were from pass4sure but with 6 or 7 choices so it was a bit confusing...THNX 9tut for all the help
Quaid 10-19-2009
I have my exam in 4 days...any recomendations?
ABB 10-19-2009
I wrote today but unfortunately got 804 against 825, this very question came and I got it well. Where I made mistake was Frame-Relay. Please guys preparing to write should understand Frame-Relay very well. Goodluck.
Highlight of Labs:
NAT, RIPv2, Frame-Relay and Drad-and-drop Questions. The rest: Pass4sure v8.14
chansana singhavong 10-20-2009
Thank 9tut team so much, yesterday i pass my exam, really say thanks for your helpful information. So how about next exam infor like CCNP sir!
Edo 10-20-2009
Hi everyone,
I made it on 19 Oct 2009.
48 Qs for 90min
986/1000 missed I think I only missed one Drag and Drop question
9tut... you are my hero

That Q was to match one Advantage and one Disadvantage of each WAN technology (Packet Switching, Circuit-Switching and Point -to-point) with choises like: low speed,quality, efficient, cost,...
I didn't see such a test before..has anyone did before?
maybe 9tut can help.


SIM Qs:
NAT
Router basic config +RIPv2
Frame-Relay hotspot (the same as 9tut scenarion..thanx again 9tut)
All the same as 9tut scenario except for IPs....
Some hints for those about to start:
1-Timing is everything...don't forget that, if you can not answer regular tests in less than 1 minute don't go for the exam.
2-Timing is everything again
3-Master subnetting...YOU HAVE TO MEMORIZE ALL NUMBERS FROM 0-255 IN BINARY FORMAT
4-Don't forget 9tut, pass4sure and ofcourse Testking...they are gods.

Please let me know if I can do anything for you guys.

9tut is it possible to put a seperate section for geneal comments rather than in different parts? or I don't find it?

thanx 2 9tut...keep on going...ur the best
Shamir 10-21-2009
Hi Every1,

I passed my CCNA exam on 1000/1000. 9tut is a great site..
If you need to know anything contact me.
shamir_79@yahoo.com
Mary 10-21-2009
Can anyone tell me which is the latest pass4sure.
Nadeeem_Calgary 10-21-2009
Hi I just passed my exam two hours ago. All Labs came from
9tut, I am really thank full for the 9tut to help us.
I got 4 simulation and time was very short, to be carefull
practice a lot. Any Question email me chatonline12345@yahoo.ca
Ali 10-21-2009
Can anyone please tell me the easy way to master subnetting because this is giving me hard time to understand.

Please share any helpful link OR anyway to master subnetting...

I failed on my CCNA exam last week with 720 marks because I haven't visited your website and LAB questions troubled me on my test.

What are the chances to get the same IP addresses on the real test as mentioned on your LAB? OR if someone get the same IP addresses so please let us know...
Nadeem_Calgary 10-22-2009
yes I got same IP address on my NAT lab, but dont rely on that, I really help
you if you live at same city (Calgary, Canada), but its really hard to help on email, but send me email I will send you some exercise you can practice
chatonline12345@yahoo.ca, (I got 4 Sim type question and this 9tut website make
it possible to make it in time. Otherwise I can also fail)
Ali 10-22-2009
my email address is amjad640802@yahoo.com

@ Nadeem, How about other LAB questions? did you also got the same IP addresses?

I am sure that I didn't answered any LAB on my exam and that was the reason of my failing with 720 marks.

any short notes to master subnetting?
proud to be muslim 10-22-2009
hi everybody, yesterday, i worte my ccna exam with score 902/1000

"Al hamd le ALLAH " ..of course with help of 9tut and p4s with 473q was more than enough......labs here and hotspot are great help ..

Exam highlights:
RIPV2
NAT
FRAME-RELAY
in this lab the ip addresses arent tha same, other questions are simple and easy to answer
jay 10-26-2009
please send me latest pdf from certfy me
arabian_tiger03@hotmail.com

thanks guys
arbaz_ahmad 10-26-2009
can any one please send me the p4s latest dumps in pdf form!!
urgently need!!
as i have failed first time!

arbazaahmad@live.com
arbazahmad2106@gmail.com

thanks in advance!
Ndu-B 10-26-2009
Good site I wrote my CCNA today and I passed.........Organizers of this great site more grace to your elbow.



I lost my memory when I tackled this particular Nat question for almost 35mins in my exam today.
If you want to write please read all these SIM very they are your cause to pass.

Rejoice with me for I passed.White men didn't take my money for nothing.

I love 9tut,and I still love you all.

"Study Hard My People"
unik b 10-26-2009
does the ccna exam came as 640-802 came as one exam or its two parts, cause i saw some sites sayin yu write ICND 1 and 2
ERIC 10-29-2009
Even if we fail in CCNA exam will be get the certificate from cisco . I got 804 . Jus missed by a silly mistake . I made a blunder in NAT simulation . Made a mistake in wild card mask . I wanna know will i get certi from cisco . plz reply
Ayinla John 10-29-2009
Just wrote and passed my CCNA. Got 985!! the dumps are 97% valid. just about 3 new(simple though) questions.
Thanks so much 9tut. Hope CCNP materials are coming on board soon.
lol
ABB 10-29-2009
Passed today with 916/1000. Labs were NAT, RIPv2 and Frame Relay
Used TestInside (293q) and Pass4sure. Questions were mainly from TestInside. Thank you verymuch 9tut, Hassan and others using this site. I'm grateful.
Shree 10-30-2009
Hello Friends...I have got some doubt with this simulation...when I was giving my exam, I sort of tried creating a named access-list..after typing "IP Access-" and press tab I could see the "Access-List" command but after completing the whole command I did get a error saying "access-list" is not supported...

Also, I couldn' see the network diagram even after exiting from the router...could you shed any light on this pls...I couldn' clear my CCNA as I have spent more than 20 min or so in figuring out this question...I shouldn' have but I did...I am giving the exam next week and I don' want this thing to repeat again...I really appreciate any help from yourside...

Thanks in advance,
Shree
ABB 10-30-2009
@ Shree. Just understand the way 9tut solved it here, don't cram because if you cram, you might miss one word and get error message like 'this command not supported' It came in my exams yesterday and I spent just about 8 mins on it. Everything works fine in my case. If you input the right commands, you will get it.
Shree 10-30-2009
ABB - yeah that is something I learnt in a hard-way..good that you got the question...could you tell me how did you move between the router and the pc..U know, once you completed the configuration on the router and tried to check the same using a ping from the PC? is there a tab button or something...please let me know..Thanks in advance!
beeafrica 10-30-2009
hi everyone i am taking my ccna exam on 5 november i am soo nervous to my guts. i really need help with the latest dumps for the exam next week.down here in africa its difficult and expensive to get hold of the staff.i am studying on my own at home and i seem to problems understanding the sim questions.please help with tips on sims and it works in the exam.
my e-mail address is b.kwarayi@gmail.com
thanks in advance
do you think i should move forward the exam?
GRiN 11-01-2009
I'm just wondering what the difference between echo and echo reply in extended accessl-list? Thanks!
hieu vn 11-02-2009
i got this question in my exam today.i had 48 questions,most of them(47/48) are available in pass4sure 7.73.the only new question was on the advantage and disadvantege of point-to-point connection,SVC and PVC.
lab on: Ripv2
Nat
FR
i got 986/1000
thanks 9tut very much!
hola 11-03-2009
Hi guys could you please send me the latest pass4sur CCNA Exam 640-802
My E-mail address: muskrose_2001@hotmail.com
Many thanks
Shree 11-04-2009
Thank you so much for the moderator and for all the active participants. I have cleared the exam today.

cheers!
Ramon 11-06-2009
I passed with 874. thanks to 9tut.com.
this question was in my exam but with different ip numbers.
Jhen 11-07-2009
hi to all, i am taking my ccna exam on november 13 pls help me pass
my email add: jhenrd1407@yahoo.com. THANKs
floorpunch 11-09-2009
Hi guys could you please send me the latest pass4sur CCNA Exam 640-802
My E-mail address: justasch@yahoo.com
Many thanks
carl 11-12-2009
Hi to all.

Is the subnet mask given on the question for the inside local & inside global addresses in the real exam?

Thanks!
herts 11-13-2009
hi! all i had this question in my exams today.the only difference was there were 30 hosts and the different ip.unfortunatly i could not pass but will try again next week.
herts 11-13-2009
can some body help me to clear concept in data travel from one source to destination passing through different router and switch.what will be the ip and mac address of the source and destination at each stage.i am totaly lost. this question was in my exams too.thanks in advance
Jan 11-16-2009
Can I ask the what was the latest pass4sure version?
janem 11-17-2009
hi there

can some please help me with latest pass4sare or certfieds or any 640 - 802 exam questions im planning to take my exam next week wednesday

my emails mosoeujane@yahoo.co.uk
Zeus 11-17-2009
Hello All,

I cleared my CCNA Exam with a score of 1000/1000 recently.

I would sincerely like to Thank 9tut admins and tech guys for providing very good explanations to the questions especially LAB SIMS.


Some highlights of my EXAM.

Lab Sims:

Frame Relay
RIPv2
NAT with 32 host addresses

Split:

70% Questions came from Pass4sure 8.14
15% LAB SIMS given in 9tut.com
15% Questions came from TCP/IP basic concepts and WLAN, VLan concepts

Suggestions to Test Takers:

Read and Practice from the following resources and you will definitely score 100%

1. CCNA: Cisco Certified Network Associate Study Guide: Exam 640-802, 6th Edition, Todd Lammle
2. CCENT/CCNA ICND1 Official Exam Certification Guide, 2nd Edition
3. CCNA ICND2 Official Exam Certification Guide (CCNA Exams 640-816 and 640-802) (2nd Edition)

4. Pass4sure : Latest Dumps. See pass4sure site for the Latest dumps version.

5. 9tut : LAB SIMS. These guys have accurate explanations.

Also, Practice Subnetting very very hard. Understand the concepts and practice daily on subnetting

That's it.

Happy certification.

Cheers ! ! !
funny 11-19-2009
Friends I failed my CCNA yesterday i found this same lab question in my exam but after completing all the configuraiton in router i try to ping form the host it was not pinging & the mistake i have done it... is i have given the nat inside and outside command on ethernet and serial interface i think this is the reason it was not ping as question is saying it already configured. Please clearify this as i am planning to appear again on this exam in 2 weeks.
funny 11-23-2009
please anybody let me know where from i download the new version for 640-802 v 8.14

Cheers
Gaurav Sharma 11-24-2009
after completing all the configuration, when i give the command
sh ip nat translation
It gives a blank output.
Is there any configuration which i am missing here..??
Anonymous 11-25-2009
Hi guys could you please send me the latest pass4sur CCNA Exam 640-802 or 8.14
My E-mail address: bouy123@yahoo.com
Many thanks to all
jeev2008 11-26-2009
Hi guys I just passed my ccna with 986. Thanks 9 tut for the confidence u gave me.

CBT nuggets for CCNA
OSPF and EIGRP form CBT nuggets CCNP
I used pass4sure latest version 7.73
link hxxp://www.ciscokid.4t.com/box_widget.html for pass4sure. Make sure run it in a virtual machine.

I got the NAT sim RIP sim and Framerelay qestion
80% from p4s
there was 2 questions about ipv6. one asking about the loop back address which is ::1

80% from p4s
there was 2 questions about ipv6. one asking about the loop back address which is ::1

? mark works in labs... but make sure you know the commands and mainly where to apply like in global config mode or interface mode.

Exam was pretty easy....
GERMAIN 11-26-2009
i'm planning to take my exam today but in french. diid you have any idea for french exam?
Ali 11-26-2009
Hi guys could you please send me the : Visual CertExam Suite 1.9 : My E-mail address: bouy123@yahoo.com
Many thanks for all
Deepy 11-26-2009
hay guys im looking 4 answers as well ill help u guys out theres about 50% of the answers on these site so far ..

http://zufriska.*.com/
http://learn-ccna.com/?p=973


with this second site there are some spelling errors and you may have to delete some of the questions when ur find them ( CTR F )

http://www.gradarom.com/cisco/index.php?lang=en&module=DsmbISP_Chapter_9_Final_Exam

good luck every one
jmar 11-30-2009
Read and understand the concept, you also will pass
like i did with 1000
on the 24/11/09
Ali 11-30-2009
HI guys


i want to no How many q&a for pass4sure v7.58
thank
i958t 12-01-2009
Thank you 9tut!!!