CCNA Configuration SIM Question
Question:
To configure the router (R2-RC) click on the console host icon that is connected to a router by a serial console cable (shown in the diagram as a dashed black line)

CCNA Training Company recently installed a new router in their office. Complete the network installation by performing the initial router configurations and configuring RIPV2 routing using the router command line interface (CLI) on the R2-RC.
Name of the router is R2-RC
Enable-secret password is cisco1
The password to access user EXEC mode using the console is cisco2
The password to allow telnet access to the router is cisco3
IPV4 addresses must be configured as follows:
Ethernet network 209.165.202.128/27 – router has last assignable host address in subnet
Serial network is 192.0.2.16/28 – router has last assignable host address in the subnet. Interfaces should be enabled.
Router protocol is RIP V2
| Attention : In practical examinations, please note the following, the actual information will prevail. 1. Name of the router is xxx 2. Enable-secret password is xxx 3. Password to access user EXEC mode using the console is xxx 4. The password to allow telnet access to the router is xxx 5. IP information |
Solution
(Note: If you are not sure how RIP works, please read my RIP tutorial: http://www.9tut.com/rip-routing-protocol-tutorial. Note: You can download this sim to practice here: http://www.9tut.com/download/9tut.com_CCNA_RIP_Configuration.zip)
1) Name the router:
Router>enable
Router#configure terminal
Router(config)#hostname R2-RC
2) Set secret password:
R2-RC(config)# enable secret cisco1
3) Set password for the console:
R2-RC(config)#line console 0
R2-RC(config-line)#password cisco2
R2-RC(config-line)#login
R2-RC(config-line)#exit
4) Set the Telnet password:
R2-RC(config)#line vty 0 4
R2-RC(config-line)#password cisco3
R2-RC(config-line)#login
R2-RC(config-line)#exit
5) Assign IP address for Ethernet interface (Fa0/0):
The Ethernet network 209.165.202.128/27 has:
Increment:32 (/27 = 255.255.255.224 or 1111 1111.1111 1111.1111 1111.1110 0000)
Network address: 209.165.202.128
Broadcast address: 209.165.202.159 (because 128 + 32 – 1 = 159)
Therefore the last assignable host address in this subnet is 209.165.202.158 and we will assign it to Fa0/0 interface with these commands:
R2-RC(config)# interface fa0/0
R2-RC(config-if)#ip address 209.165.202.158 255.255.255.224
R2-RC(config-if)#no shutdown
R2-RC(config-if)#exit
6) Assign IP address for Serial interface (S0/0/0):
Serial network 192.0.2.16/28 has:
Increment:16 (/28 = 255.255.255.240 or 1111 1111.1111 1111.1111 1111.1111 0000)
Network address: 192.0.2.16
Broadcast address: 192.0.2.31 (because 16 + 16 – 1 = 31)
So the last assignable host address in this subnet is 192.0.2.30. Finally we assign it to s0/0/0 interface:
R2-RC(config)# interface s0/0/0
R2-RC(config-if)#ip address 192.0.2.30 255.255.255.240
R2-RC(config-if)#no shutdown
R2-RC(config-if)#exit
7) Configure RIP v2 routing protocol:
R2-RC(config)#router rip
R2-RC(config-router)#version 2
R2-RC(config-router)#network 209.165.202.0
R2-RC(config-router)#network 192.0.2.0
R2-RC(config-router)#end
R2-RC#copy running-config startup-config
Note: We should use classful networks (209.165.202.0 & 192.0.2.0) when configuring RIP. If we use detailed networks (209.165.202.128 & 192.0.2.16) the router will automatically convert them into classful networks.
Other lab-sims on this site:
Forgot “no autosummary” in rip conf.
and after this configuration routers will not ping, because “clock rate” and “bandwidth” doesn’t configurate on the serial interfaces….
agree
1 – In question no. 7
why : network 209.165.202.128
network 192.0.2.16
I think it must : network 209.165.202.0 , because it is a network not host
network 192.0.2.0 , because it is a network not hostIs
2- Should we write ” end ” in the end of commands?
The 7th step cannot hav the following router config commands
R2-RC(config-router)#network 209.165.202.128
R2-RC(config-router)#network 192.0.2.16
b’cuz in the eigrp network commands u must enter a “classful” address which means that it must be one of the Class A or B or C address depending on the first octet
so here as the addresses are class C addresses the network commands shud be
network 209.165.202.0
network 192.0.2.0
the answer given will be correct if the respective wildcard mask is given which are 0.0.0.127 and 0.0.0.15 respectively.
Does this convince anybody ??
9tut do u think the xplanation was sound ?? i’m jus a begginer n dis is wat i think it shud be please reply so dat i learn.
RIP v2 can carry subnet information /VLSM/,thus supporting classless inter-domain routing /CIDR/.
In that case you don’t need to use no auto-summary command.I hope this could help.
small mistake in d xplanation ……but d xplanation still holds its not “eigrp” it is “Rip version 2″
hi 9tut
i think we should ping both router in exam..?? plz reply.. b\c there is no point off configure r2 router.. ..
Neo with eigrp you can have
R2-RC(config-router)#network 209.165.202.128
R2-RC(config-router)#network 192.0.2.16
as your setting as long as you add this line into your eigrp
R2-RC(config-router)no auto-summary
the no auto summary makes eigrp classless
is “no autosummary” cmd is required for rip v2…….(above question)
hi i think that there is no need of no auto summary
bcz rip will support classless
is 9tut simulation(9 simulation question) and mashti & acme (354) enough for exam…?
In the cisco.com example shows, that in version 2 int valuable to use no auto-summary
Prooflink for no auto-summary:
http://www.cisco.com/en/US/docs/ios/12_0/np1/command/reference/1rrip.html#wp1017389
http://www.cisco.com/en/US/docs/ios/12_0/np1/configuration/guide/1crip.html#wp4775
Yes, i support that Rv2 requires no auto -summary bcos by default d CIDR has 2 b manual.
Also, there shud be a clock rate 4 d host 2 ping.
this login statement
isnt this an invalid command
“no auto-summary” is used for discontiguous networks for EIGRP and RIPv2
How to verify this lab?
goygoygoioi
lkljlkролдрод момпромпорм пл
ромрммп
209.165 network is not even needed in real life, what about exam? Rip will send entire routing table regardless of network statements and the switch does not need it, in face it would normally be a passive interface in other protocols.
How to verify this lab?
because i define network ..
R2-RC(config-router)#network 209.165.202.128
R2-RC(config-router)#network 192.0.2.16
but in running config is show
R2-RC(config-router)#network 209.165.202.0
R2-RC(config-router)#network 192.0.2.0
if i config this wan then
R2-RC(config-router)#network 209.165.202.128 255.255.255.224
R2-RC(config-router)#network 192.0.2.16 255.255.255.240
kindly confirm me about this lab thanks
my paper on 22 jan kindly confim me
thanks
can we add this command
R2-RC(config-router)no auto-summary
thanx
9tut and ACME
i pass today ccna 936
labs
VTP , ACL, Eigrp
zulfiqarsoomro@yahoo.com
thanks alot .
hi zulfiqar ali,
is ACME same with Test Inside 17.14 (356Q)?
Thanks!
Just to confirm, if i do say “no auto-summary” will it still be marked correct?
I have done configuring R2-RC router, but after that i can’t ping both neigbor networks….
How to test this sim if it works fine? anybody?
(i think we should stick to the questions requirements only, wut you think? no need to config R1 and no checking?.. hayz)
@zulfiqar: Yes, the router will auto summary your address, you can use either address.
Hurray..!!! I’ve cleared CCNA xam…frndz download the dumps from following link http://www.examcollection.com/cisco/Cisco.TestInside.640-802.v17.14.by.Acme.356q.vce. 356 qestions of dump & 9tut is more than enough to pass the xam with 99%..THANKS 2 9tut….in lab sims are VTP,ACL2 & EIGRP…in ACL2 the acl has to be applied to Host A instead of Host C is the only change i got in xam…frndz go thru that 356 qes…throughly..& c the lab config..in 9tut…U will pass with good marks….Thank U…for ur support..ALL THE BEST…!!!
can u help plz about how u know about increment method??it”s the fisrt look it;s look easy than wt i know??can u help me to learn it?? as above…..The Ethernet network 209.165.202.128/27 has:
Increment:32 (/27 = 255.255.255.224 or 1111 1111.1111 1111.1111 1111.1110 0000)
Network address: 209.165.202.128
Broadcast address: 209.165.202.159 (because 128 + 32 – 1 = 159)???plz reply!!!
@Rer… yes you got it, this is how it works.
And just a little hint: If you need the wildcard mask (for acl, ospf, eigrp) just use the increment – 1.
In your example: increment 32 – 1 = 31 => wildcard-mask 0.0.0.31
Have fun :-)
Dark
Does one need to configure the bandwidth.
and by what?
thanx njyRT,,but can u get me more details about my question
i saw @above once increment 32 once 16 ..how is that?? thanx an advance to whom will reply!!
Please validated with the help of this site. Can one take me to a CCNP site like this?
It says: “The password to ACCESS(not allow) user EXEC mode using the console is cisco2.” The “login” command should not be used for the console password.
why can’t we ping the other network and test if we have the answers?? thnx :)
is it not necessary to give no auto summary in ripv2??
hi guys – i heard the that the exam have changed – can anyone confirm it ?
how do we do sim questions from 9tut??
please can someone send the dump to my e.mail franciskamwamba@yahoo.com.
iwnt to seat for exams soon.
Thank you for all this fantastic information in preparing for this exam. I took it for my first time last week and passed with a 96.1%. WOOOHOO!
I used the Cisco Press Cert Guide book, this site, several online tutorial sites (ccnaworkbook), and test-inside engine for final prep. It worked great. I’m moving on and scheduled to take my CCNP SWITCH exam in about two months.
My Labs were EIGRP, ACLv2, and VTP Lam sim (5 mult choice questions)
Good Luck to you all!
thank you for all useful info. in preparing for CCNA exam.i visit it my first time. really i m very greatful to u thanx thanx thanx
For this lab, it doesnt ACTUALLY matter what network commands you put in, the IOS automatically will summarise to the classful boundary. This is the nature of RIPv2. This has nothing to do with no auto-summary. no auto-summary just says if the network is advertised at its classful or classless boundary or not.
Hope this helps.
Helps a bit but still confused. Please elaborate further. Thanx in advance
Hi guys please tell me, is the exam updated or not? I wanna write next month can you please direct me to the correct link where i can get the relevant stuff for CCNA exam.
HI 9tut I took my test and passed with a 987 and completed within 45 mins. Thank you all — you are doing a great job. I could not do it without your help, I got Access-List 2; Sim, Nat, and EIGRP. I appreciate all the comments it help me get prepared.. Study, study, and get good understanding of the LAN; WAN and IP addressing.
Is there a site like this for the CCNP..? I am going for it.
I have completed my CCNA exams today got 961..SIM was of EIGRP, ACL & VTP..Thanks to 9tut.. All my question were from this site only with little change.I once again thanks to 9tut for creating & maintaing this site…
Hey, Are all the answers given to questions in Acme & Mashti dumps accurate??
Hi Everybody,
Can anyone please provide me the Latest CCNA Dumps, I am going to write the exam with in 1 week.
Please mail me at aditya30.09@gmail.com or adi_007_var@yahoo.co.in
Thanks in advance, hey guys please help me.
Hi!
I have a question concerning the provided solution:
in #4 you enter the line configuration for “vty 0 4″
why not “vty 0 15″?
and will the inline help work in the sim, to be sure (i mean, may i enter “vty 0 ?” to see the top line number)?
Thanks!
Hi Everybody,
Can anyone please provide me the Latest CCNA Dumps, I am going to write the exam with in 1 week.
Please mail me at sandy.jag@gmail.com or sandy.jag@yrediffmail.com
Thanks in advance, hey guys please help me.
I got 100% today. SIMS given was EIGRP AS 23, VTP (configuration revision number of Sw-AC3 is higher than Swx), and ACL with only host B can access the web server.
Thanks to 9tut!!! All sims came from this site.
Review Materials: ACME (356q) and pass4sure
Hello please can someone send me the packet tracer sim for this question and other useful ones, have exam on 17th of march. Thanks for helping me out email== markdganish@yahoo.com
i can’t find 356 questions in acme vte file . only 5 questions show up. can you please help.
Hi 9tut. I’m gaining confidence to take the exam while learning from your website. Hope to pass soon. Thanks
i need recent dump ccna exam can anybody help me. may mail ID is singaraju_narayana@yahoo.com
@mr.annt@gmail.com
dont believe them it’s fake
there can be no 100% new questions
i want to know the latest version of 640-802 ccna exam anybody help me
my email ID is karim_mahgoup@yahoo.com
great thanks for you
can anyone send me the latest version of 640-802 ccna exam…my e mail is kuhan_182@hotmail.com….tq
can anyone send me the latest version of 640-802 ccna exam…my e mail is rajput_zaid@hotmail.com
I cleared my CCNA on 28th March with 974\1000 . 9tut really helped me a lot . best of luck for u guys …..
did anyone write exam on 1st of April ? Did the questions change alot ?
plz someone tell does the question set changes from April or same 17.14 version question plz I m giving exam tomoro
please what aare the questions bin set in recent ccna exam 4 the month of april let me know please. thanks
Hi every one Plz can anyone please provide me the Latest CCNA Dumps, I am going to write the exam within 2 week as from today. and i believe this will help me a lots
Please mail me at nas_247@msn.com
As i wait to a soonest response,
Thanks
Nas.
@ babu :
Hi didu giv the xam??? are the questions from v17.14???? Plz let me knw asap, m giving my xam in couple of days….
How can i assign multiple ip addresses to a single interface???
Hi every one Plz can anyone please provide me the Latest CCNA Dumps, I am going to write the exam within 2 week as from today. and i believe this will help me a lots
Please mail me at ghool_27145@yahoo.com
As i wait to a soonest response,
Thanks
Nas.
I took exam today, I used TestInside 17.14 and 21.24. I failed 256/1000. Most of the questions are new. Only 5 came from 17.14 and 21.24 that I remember. Please come up with a new dump cause I need to take the CCNA exam again.
Hi every one Plz can anyone please provide me the Latest CCNA Dumps,I am going to write the exam with in 1 week.
Please mail me at amit_34865@yahoo.com
plz help me dear frd’s
Hi every one Plz can anyone please provide me the Latest CCNA Dumps,I am going to write the exam with in 1 week.
Please mail me at amit_34865@yahoo.com
plz help me dear frd’s
Hi Guys, Can you please send me simulator for CCNP. Please send it to my email address chris_thugs06@yahoo.com
(( Another issue ccna )) ghool_27145@yahoo.com
http://www.examcollection.com/cisco/Cisco.PrepKing.640-802.v2011-03-25.by.Royal.366q.vce.file.html
Приглашаем посетить правовой цент “НАУКА”. Юридические консультации, тренинги, семинары, видеоматериалы, а также форум где возможно Вы сразу найдете ответы на Ваши вопросы.Трудовой кодекс, работник и закон, заработная
плата, квалификации работников, модернизация, Юридическое зеркало модернизации, Юридический механизм, обеспечивающий рост производительности труда” , а также ответы на немало других юридических вопросов.http://www.inauka.net/spravka
Hi every one Plz can anyone please provide me the Latest CCNA Dumps, I am going to write the exam within 2 week as from today. and i believe this will help me a lots
Please mail me at ghool_27145@yahoo.com
As i wait to a soonest response,
Hi every one Plz can anyone please provide me the Latest CCNA Dumps, I am going to write the exam this week and i believe this will help me a lots
in short, in this case, should we add command “no auto-summary” or not?
in short, in this case, should we add command “no auto-summary” or not?
Hello can anyone please email me the latest dumps as I am planning to take exam in next two weeks. My email address is iffi_101@hotmail.com I will be very thankful for your help. Take care. Rana
HI again, Sorry i forgot to mention what exam i am taking, I am planning to take CCNA exam in next two weeks time, can you please email me latest dump questions as I heard that there are some changes in the questions since 15th april. I have the old ones and was preparing with them. My email is iffi_101@hotmail.com, I will be very thankful for email. Take care.
Hi every one Plz can anyone please provide me the Latest CCNA Dumps, I am going to write the exam on Friday as from today. and i believe this will help me a lots.
My email is liemhoangtrinh_2007@yahoo.com.vn, I will be very thankful for email. Take care.
Hi,
Can someone send me the latest dumps to virusx47@gmail.com
Thank you,
Regards,
hi!
i just noticed that there is no “clock rate” command assigned on serial 0/0/0
so i just want to know whether it will work without it or not
for those people who had exam and pass congratulation. May God bless you mightly and grant you the job according to your heart desire. could you kindly send me the lattes acme dump please. as I went to do exam couple of times but fail. So I feel luck to find this site which help those with desire to be network certified. my email address is narajoly02@yahoo.co. UK. Many thanks I will appreciate you help
pls, can anyone help me with current dumb. i amm prepari ng for the exams nextweek. dis is my e-mail abayomioyewo@yahoo.com
@Hitesh,if the clock rate is no mentioned so you shouldn’t worry about,meaning that s0/0/1 on R1-RT has it.
i would like to know if it is still correct if we configure the Ripv2 for network as follow:
network 208.165.202.0
network 192.0.2.0
@jnbasstango: Yes, you can configure like that. In fact, when typing
network 209.165.202.128
network 192.0.2.16
the router will auto convert them to
network 209.165.202.0
network 192.0.2.0
so they are equivalent
Thank you 9tut.I am taking my exam for the second time on Friday 6th .so far I’m happy with 9tut hopefully I’ll make it this time.if anyone have any advice please send it to me at jnbasstango@yahoo.fr
i see this web first time,very nice
please some body send me latest dums on my e-mail address i am preparing for the exams nextweek
pllllllzzzzzzzzzzz……. affaf_t@yahoo.com
hi all can anybody help me by dumping z latest dump i have an exam on firday this week
pls
how i make a correction if z interface is passive in EIGRP lab simulation pls give me ans
Hie Has anyone taken the exam this May and can somebody advise on the sims that were in the exam as of this May
the so called latest dumps 21.24,there is a question for rip that says,the Ethernet network 209.165.201.0/27-router has fourth assignable host address in the subnet.And they user is 209.165.201.1 255.255.255.224.Is the correct answer was not suppose to be 209.165.201.4 255.255.255.224
Again for the serial subnet is 192.0.2.176/28-router has las assignable host address in the subnet,their solution is 192.0.2.176 255.255.255.240.Is the write answer was not suppose to be 192.0.2.190 255.255.255.240.
Just be careful this these dumps you better not memorize them.Guys ,i need you view on this.
the so called latest dumps 21.24,there is a question for rip that says,the Ethernet network 209.165.201.0/27-router has fourth assignable host address in the subnet.And their answer is 209.165.201.1 255.255.255.224.Is the correct answer was not suppose to be 209.165.201.4 255.255.255.224
Again for the serial subnet is 192.0.2.176/28-router has last assignable host address in the subnet,their solution is 192.0.2.176 255.255.255.240.Is the write answer was not suppose to be 192.0.2.190 255.255.255.240.
Just be careful with these dumps you better not memorize them.Guys ,i need you view on this.
what is meen by subnet mask?
Hello,
I am taking my CCNA test for the 2nd time next Monday. There were a lot of WAN questions on the last exam re: Frame Relay, OSPF, EIGRP, and RIP, and know their differences…
Lab was on access-list, switching but I didn’t have time to finish the exam so not sure if there was a 3rd lab or not. I had 8 questions left and got 750 so really hope to get it next time. Would you someone kindly please send me the latest dumps?
Much appreciated… Thank you!
Markbmi@gmail.com
9tut rocks!!!!let’s meet in CCNP level.
hi guys. am nervous to take the exam pliz need courage can sam1 help me pliz….