Home > CCNA Configuration SIM Question

CCNA Configuration SIM Question

January 10th, 2014 Go to comments

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__configuration_sim_lab_4

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.

Comments
Comment pages
1 2 3 8 25
  1. Dark
    December 8th, 2010

    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….

  2. cizmo
    December 9th, 2010

    agree

  3. kamel
    December 10th, 2010

    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?

  4. Neo
    December 11th, 2010

    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.

  5. Pete
    December 12th, 2010

    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.

  6. Neo
    December 12th, 2010

    small mistake in d xplanation ……but d xplanation still holds its not “eigrp” it is “Rip version 2″

  7. rayan
    December 14th, 2010

    hi 9tut

    i think we should ping both router in exam..?? plz reply.. b\c there is no point off configure r2 router.. ..

  8. JC
    December 15th, 2010

    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

  9. win
    December 16th, 2010

    is “no autosummary” cmd is required for rip v2…….(above question)

  10. lokeswarreddy
    December 16th, 2010

    hi i think that there is no need of no auto summary
    bcz rip will support classless

  11. win
    December 16th, 2010

    is 9tut simulation(9 simulation question) and mashti & acme (354) enough for exam…?

  12. Qrsa
    December 25th, 2010

    In the cisco.com example shows, that in version 2 int valuable to use no auto-summary

  13. Curios
    January 1st, 2011

    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.

  14. ARQ:
    January 1st, 2011

    this login statement

    isnt this an invalid command

  15. Fred
    January 3rd, 2011

    “no auto-summary” is used for discontiguous networks for EIGRP and RIPv2

  16. Dead Guy!
    January 10th, 2011

    How to verify this lab?

  17. iuyeriwq
    January 15th, 2011

    goygoygoioi
    lkljlkролдрод момпромпорм пл
    ромрммп

  18. Jeff
    January 20th, 2011

    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.

  19. zulfiqar
    January 21st, 2011

    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

  20. zulfiqar
    January 21st, 2011

    my paper on 22 jan kindly confim me
    thanks

  21. zulfiqar
    January 21st, 2011

    can we add this command

    R2-RC(config-router)no auto-summary

  22. zulfiqar ali
    January 22nd, 2011

    thanx

    9tut and ACME
    i pass today ccna 936
    labs
    VTP , ACL, Eigrp

    zulfiqarsoomro@yahoo.com

  23. asma alamin
    January 23rd, 2011

    thanks alot .

  24. xplod
    January 24th, 2011

    hi zulfiqar ali,

    is ACME same with Test Inside 17.14 (356Q)?

    Thanks!

  25. Ceaser
    January 26th, 2011

    Just to confirm, if i do say “no auto-summary” will it still be marked correct?

  26. gl3n025
    January 28th, 2011

    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)

  27. 9tut
    January 30th, 2011

    @zulfiqar: Yes, the router will auto summary your address, you can use either address.

  28. imaws
    January 31st, 2011

    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…!!!

  29. Rer
    February 1st, 2011

    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!!!

  30. njyRT
    February 1st, 2011

    @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 :-)

  31. prime
    February 2nd, 2011

    Dark
    Does one need to configure the bandwidth.

    and by what?

  32. Rer
    February 4th, 2011

    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!!

  33. brown
    February 17th, 2011

    Please validated with the help of this site. Can one take me to a CCNP site like this?

  34. Tiramola
    February 18th, 2011

    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.

  35. ashley
    February 18th, 2011

    why can’t we ping the other network and test if we have the answers?? thnx :)

  36. dfdf
    February 22nd, 2011

    is it not necessary to give no auto summary in ripv2??

  37. drake
    February 22nd, 2011

    hi guys – i heard the that the exam have changed – can anyone confirm it ?

  38. dfdf
    February 24th, 2011

    how do we do sim questions from 9tut??

  39. francis
    February 25th, 2011

    please can someone send the dump to my e.mail franciskamwamba@yahoo.com.
    iwnt to seat for exams soon.

  40. ixfnx
    February 25th, 2011

    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!

  41. sayeed
    February 26th, 2011

    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

  42. Sarah
    February 28th, 2011

    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.

  43. Bruno
    February 28th, 2011

    Helps a bit but still confused. Please elaborate further. Thanx in advance

  44. NathyKaMbally
    March 3rd, 2011

    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.

  45. pubs_57@yahoo.com
    March 4th, 2011

    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.

  46. pubs_57@yahoo.com
    March 4th, 2011

    Is there a site like this for the CCNP..? I am going for it.

  47. Raj
    March 10th, 2011

    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…

  48. Akshay
    March 11th, 2011

    Hey, Are all the answers given to questions in Acme & Mashti dumps accurate??

  49. Den
    March 13th, 2011

    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!

Comment pages
1 2 3 8 25
  1. No trackbacks yet.
Add a Comment