Sie sind auf Seite 1von 4

CCNA Configuration SIM Question http://www.9tut.

com/ccna-lab-sim/59-ccna-configuration-sim-question

search...

Ads by Google CCNA CCNA Practice Exam Cisco CCNA Tests CCNA Books PDF

Friday, 29 August 2008 15:45 administrator

(Updated from real CCNA exam on Jan-05-2010)

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:

1 of 52 6/30/2010 12:17 PM
CCNA Configuration SIM Question http://www.9tut.com/ccna-lab-sim/59-ccna-configuration-sim-question

Authorized Cisco Training


ccna,ccnp,ccsp,ccvp,ccie Security, Wireless, CCNA EXAM 640-802
Unified Comm
www.networkershome.com CCNA - WAN
WiMax Router
Same Day Shipping 877-642-9168 Toll Free CCNA - Lab Sim
Tech Support
WirelessNWiFi.com CCNA - Troubleshooting
CCNA / CCNP Boot Camps 1
in Kerala, the God's Own Country Best lab
facilities, Best faculty CCNA - Troubleshooting
www.ipsr.org
2
Online Networking tips
computer hardware,networking operating CCNA - Drag and Drop 1
system tips and tricks
networkingtips.info CCNA - Drag and Drop 2

CCNA - Drag and Drop 3


1) Name the router:
CCNA - Drag and Drop 4
Router>enable CCNA - Subnetting
Router#configure terminal
CCNA - Hotspot
Router(config)#hostname R2-RC
CCNA - Access List
2) Set secret password:
CCNA - Operations 1
R2-RC(config)# enable secret cisco1
CCNA - Operations 2
3) Set password for the console: CCNA - IPv6

R2-RC(config)#line console 0 Share your CCNA


R2-RC(config-line)#password cisco2 experience
R2-RC(config-line)#login
R2-RC(config-line)#exit

4) Set the Telnet password: NETWORK


RESOURCES
R2-RC(config)#line vty 0 4
R2-RC(config-line)#password cisco3 Free Router Simulators
R2-RC(config-line)#login
R2-RC(config-line)#exit CCNA FAQs & Tips

ICND 1 - ICND 2 - New


5) Assign IP address for Ethernet interface (Fa0/0):
CCNA Questions
The Ethernet network 209.165.202.128/27 has:
CCNA Voice Website
Increment:32 (/27 = 255.255.255.224 or 1111 1111.1111 1111.1111 1111.1110 0000) CCNP - BSCI Website
Network address: 209.165.202.128
CCNP - BCMSN Website
Broadcast address: 209.165.202.159 (because 128 + 32 - 1 = 159)
CCNP - ISCW Website
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: 9tut Forum

R2-RC(config)# interface fa0/0


R2-RC(config-if)#ip address 209.165.202.158 255.255.255.224 Support 9tut
R2-RC(config-if)#no shutdown
R2-RC(config-if)#exit

6) Assign IP address for Serial interface (S0/0/0):


Your contribution will help
Serial network 192.0.2.16/28 has: keep this site updated!

2 of 52 6/30/2010 12:17 PM
CCNA Configuration SIM Question http://www.9tut.com/ccna-lab-sim/59-ccna-configuration-sim-question

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.128
R2-RC(config-router)#network 192.0.2.16
R2-RC(config-router)#end
R2-RC#copy running-config startup-config

Authorized Cisco Training


ccna,ccnp,ccsp,ccvp,ccie Security, Wireless,
Unified Comm
www.networkershome.com
WiMax Router
Same Day Shipping 877-642-9168 Toll Free
Tech Support
WirelessNWiFi.com
CCNA / CCNP Boot Camps
in Kerala, the God's Own Country Best lab
facilities, Best faculty
www.ipsr.org
Online Networking tips
computer hardware,networking operating
system tips and tricks
networkingtips.info

Other lab-sims on this site:

CCNA Access List Sim

CCNA NAT SIM Question 1

CCNA NAT SIM Question 2

CCNA Frame Relay Sim

CCNA VTP SIM

CCNA EIGRP LAB

CCNA Drag and Drop SIM

CCNA Implementation SIM

Comments
Maha 08-29-2008

3 of 52 6/30/2010 12:17 PM
CCNA Configuration SIM Question http://www.9tut.com/ccna-lab-sim/59-ccna-configuration-sim-question

tnxxxxxxxx :D

Maha 08-30-2008
hey
why u choose ip address 209.165.202.158 ? why not .159? i think it must be 159
if not,, why u choose ip address 192.0.2.31? why not 30?! :p

Admin 08-30-2008
We can not choose ip address 209.165.202.159 for the Fa interface because it is the
broadcast address of this subnet.
For the ip address 192.0.2.31, I am sorry, it is a mistake. It should be 192.0.2.30 because
192.0.2.31 is also a broadcast address. Thank for your detection. I updated the page.

Fred 09-24-2008
Should you also use the command no auto summary after version 2?

9tut 09-24-2008
You can use no auto summary command but in this case we don't need it because we
don't have discontinuous networks

Paula 10-05-2008
For RIP version 2 configuration should be?

network 209.165.202.0
network 192.0.2.0

9tut 10-06-2008
Yes, but we should configure according to what the question requested

Paula 10-06-2008
Thank you very much!!!
Now i understand it!!!
Wonderful website!!!
:)

mizovsky2304 10-10-2008
well done

anastasia 10-13-2008
Hi, in CCNA curriculum is a specific note where it's said that for RIP V2 we should write
router rip v2
network 209.165.202.0
network 192.0.2.0
You said we can write like this, but can I write after this "no suto-summary"?
Will all this be correct?

9tut 10-13-2008
If you see this question in your CCNA exam, please write
network 209.165.202.128
network 192.0.2.16
as the question requested

You can use "no auto-summary" command after them but it is not necessary because we
don't have discontinuous network

bogeyman 10-19-2008
I can't see anywhere in the question that tells you to configure the networks for ripV2 as
network 209.165.202.128
network 192.0.2.16
Although RIPv2 is classless protocol it autosumarrises by default and if you do a show

4 of 52 6/30/2010 12:17 PM

Das könnte Ihnen auch gefallen