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 5 6 7 8 25
  1. Patrick
    September 18th, 2013

    In RIP v2 we can use classless networks? Only in RIP v1 we can use classful networks.

  2. vijay
    September 19th, 2013

    in this sim y cant we dont use the command “no auto sammary”

  3. Anonymous
    September 19th, 2013

    btw in the packet tracer sim that you provided, the other router has some config problems.
    The serioal interface has no clock rate set and there is no RIP configured at all.

    Besides that, very nice!

  4. Dervain
    September 19th, 2013

    Where is the command “no auto-summary” in your answer?

  5. ahmad
    September 19th, 2013

    rip v2 is classless so why to config routing protocol like classful

  6. Vic
    September 22nd, 2013

    By this question there isn’t disscontigous networks for the use of no auto-summary.

  7. aya
    September 23rd, 2013

    configuration here must be from console pc??
    and how?
    when i open pc can’t find cli for configuration????????????

  8. Anonymous
    September 24th, 2013

    download latest dumps from
    9 t u t . w e e b l y . c o m

  9. B/Gen.
    September 24th, 2013

    why can’t I ping the R1-RT interface?

  10. B/Gen.
    September 24th, 2013

    DCE was actually missing Clock rate its the reason i cant communicate with s0/0/1 int

  11. Anonymous
    September 27th, 2013

    Passed ccna 640-802 with 947.
    VTP,ACL-2 and EIGRP were the simulations.
    Thank you,9tut.Really helpful.

  12. Anonymous
    October 28th, 2013

    download latest dumps from
    9
    t
    u
    t
    .
    c
    o
    m
    x
    a
    .
    c
    o
    m

  13. Yogi
    October 29th, 2013

    how increment 32

  14. russ
    October 30th, 2013

    in actual test do we need to configure the clock rate?

  15. Rafael Lacerda
    November 7th, 2013

    the clock is configured on the DTE instead of DCE, and the R1-T1 has no RIPv2.
    Great lab for training

  16. S
    December 23rd, 2013

    @9tut……..It is not possible to ping to 192.0.2.17 ,which is on s0/0/1 of R1-Rt…….how can this be fixed…..thanks in advance…….

  17. bobby
    January 1st, 2014

    how R2-RC’s ser 0/0/0 become 2.30 when the increment is 16, shouldn’t it be 192.0.2.31, the last usable ip on this network?

  18. bobby
    January 1st, 2014

    Oops my bad, it is 2.30 just tired maybe. hihi.

  19. XeonCide
    January 3rd, 2014

    The downloaded pratice sim, router R1-RT need to configure “clock rate” and “RIP”.

  20. Anonymous
    January 16th, 2014

    download free latest dumps from
    9
    t
    u
    t
    .
    w
    e
    b
    s
    .
    c
    o
    m

  21. CCNA
    January 19th, 2014

    There’s nothing on the SIM that states configuring the “Clock Rate” or “Rip” on router R1-RT

  22. Barry
    January 25th, 2014

    Need to add no auto summary command in RIP2
    Also it is classless hence it the commands in RIP would be :
    network 209.165.202.128
    network 192.0.2.16
    no auto-summary

    Thank you.

  23. James K. Stevens
    February 4th, 2014

    really great

  24. brahmanand
    March 25th, 2014

    Hello all,

    Rip protocol topic is included in ccna 200-120 exam?

    Is this CCNA Configuration SIM Question had asked in the CCNA 200-120 exam?

    Kindly revert

    Thanks in Advance

  25. Navi
    March 29th, 2014

    Exactly my question. I thought RIP is not included in 200-120 syllabus, atleast that’s what cisco website says.

  26. Muhammad Firdaus Bin Abdul Rahman
    April 4th, 2014

    Hi,
    Please send the latest CCNA dummies to me.(muhammadfirdaus1346@gmail.com)
    really appreciate.thanks

  27. prasath
    April 7th, 2014

    its not included in ccna 200-120 no RIP at all dont worry…

  28. Talha
    April 12th, 2014

    Can any one email me the latest video training of labs i need it on urgent bases at haroon.talha@gmail.com

  29. Anonymous
    April 18th, 2014

    hey guys just need to know something, everytime am doing my CCNA Configuration SIM Question, when i do the command show ip interface brief to view if the IP address and assgned correctly and to see if the serial interface is up, i usually find it as down, in the reall exam am i allowed to configure the clock rate so that my network can be fully fuctional.. tomphony@gmail.com any one with an answer please respond ASAP am writting on the 23rd of April..

  30. Anonymous
    April 25th, 2014

    Can anybody answer if it’s right?: It’s not needed to configure no auto-summary for this topology, cause they all are in the C class and router will set the wild card mask automatically to 0.0.0.255 though RIPv2 support VLSM

  31. Tasnim
    May 9th, 2014

    hello ..can anybody tell me that what is “Increment”???I really need to know…

  32. reema
    May 11th, 2014

    how can I test these commands? or how will I know if my password configurations are correct? i was able to test my enable secret, as well as telnet access by the command telnet 209.165.202.158 23 at R2-RC, but I was unable to test it on user exec-mode.. thanks in advance

  33. Sarah
    June 22nd, 2014

    @ Tasnim increment means:
    increment of these numbers will not see each others, cuz they will be on different subnet.

    16+16 = ?

    =32

    so the second subnet will begin with 32.
    Hope it helpful for you..

  34. caxap01
    August 21st, 2014

    Please send the latest CCNA dummies to me.(caxap01@gmail.com)
    really appreciate.thanks

  35. Rahul
    September 16th, 2014

    Hello friends… Go to ccnalearn.cf to know all about ccna / dumps / exam problems / new questions.. etc all for free.
    Hope it helps all to learn and clear ccna 200-120 exam. http://www.ccnalearn.cf

  36. tuan anh
    October 1st, 2014

    full video lap sim acl1 acl2 eigrp and dump ccna 120-200 question 314
    please share or subscribed
    thanks you
    https://www.youtube.com/watch?v=Q7cTJsVxebc&list=PLF3JXcGq4iLEYCucsr8acdiUvZ-AF198e&index=1

  37. Asanka
    October 22nd, 2014

    Dumps can be downloaded from ‘examcollection’ website. You need VCE player 1.1.6 to run those files. Just google search for VCE player 1.1.6 or 7

  38. reji
    November 21st, 2014

    some of the files wont work from exam collection.com… please visit “exam4all” website thanks.. it ll work sure in player 1.1.6… and another info 1.1.7 doesnt work anywhere

  39. kylie
    November 23rd, 2014

    i cant ping 198.18.1.1. even the answered file, still not work. please fix the issue. thanks

  40. Isha
    December 1st, 2014

    Hi guys i would like to have the installation file of the new CCNA curriculum. Can you help me please? #Pressing

  41. bilal
    December 7th, 2014
  42. Guru
    December 15th, 2014

    Hello all,
    Rip protocol topic is included in ccna 200-120 exam?
    pls i need urgent answer as am preparing to write my CCNA R & S on Wednesday

  43. Azeem
    December 27th, 2014

    Latest CCNA 200-120 dumps 316 Questions & Answers available.
    316 question dumps are 100% valid. I already purchased that If you needed, share nominal fee.
    azeemsarwar1@hotmail.com

  44. nvc
    December 27th, 2014

    can someone send me Latest CCNA 200-120 dumps please
    me email : nvc.ks.net@gmail.com

  45. Nick
    January 3rd, 2015

    When configuring the router R2-RC I had configured it correctly, but thought I hadn’t because I was not receiving any RIP updates from router R1-RT. I turns out that RIP is not configured on that router, so unless you configure that router as well you won’t see the routing table being updated with remote networks.

  46. Saleem
    January 6th, 2015

    Did anyone actually get this on the exam??

  47. ha
    January 7th, 2015

    hello

Comment pages
1 5 6 7 8 25
  1. No trackbacks yet.
Add a Comment