Skip to main content

CCENT Simulation RIPv2

Central Florida Widgets recently installed a new router in their Apopka office. Complete the network installation by performing the initial router configurations and configuring RIPv2 routing using the router command line interface (CLI) on the Apopka router.

ripsim

Configure the router per the following requirements:

  • Name of the router is Gotha
  • Enable-secret password is cisco
  • The password to access user EXEC mode using the console is class
  • The password to allow telnet access to the router is class
  • IPv4 addresses must be configured as follows:
    • Ethernet network 209.165.201.0/27 – router has second assignable host address in subnet.
    • Serial network is 192.0.2.128/28 – router has last assignable host address in the subnet.
  • Interfaces should be enabled.
  • Routing protocol is RIPv2.

Instruction:

To configure the router (Gotha) 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).

Each of the windows can be minimized by clicking on the [-]. You can also reposition a window by dragging it by the title bar.

The “Tab” key and most commands that use the “Control” or “Escape” keys are not supported and are not necessary to complete this simulation. The help command does not display all commands of the help system.


Explanation:

Step1:

Click on the console host.

Router>
Configure the new router as per the requirements provided in Lab question


Requirement 1:
Name of the router is Gotha

Router>en
Router# conf t
Router(config)# hostname Gotha
Gotha(config)#


Requirement 2:
Enable-secret password is cisco

Gotha(config)# enable secret cisco

 

Requirement 3:
The password to access user EXEC mode using the console is class

Gotha(config)# line con 0
Gotha(config-line)# password class
Gotha(config-line)# login
Gotha(config-line)# exit
Gotha(config)#

Requirement 4:
The password to allow telnet access to the router is class

Gotha(config)# line vty 0 4
Gotha(config-line)# password class
Gotha(config-line)# login
Gotha(config-line)# exit
Gotha(config)#

Requirement 5:
a. Ethernet network 209.165.202.128 /27 – Router has the last assignable host address in subnet.

rip

This IP address (209.165.201.158) which we need to configure on Fast Ethernet0/0 of the router using the subnet mask 255.255.255.224

Gotha(config)# interface fa0/0
Gotha(config-if)# ip address 209.165.201.158 255.255.255.224
Gotha(config-if)#no shutdown
Gotha(config-if)#exit


b. Serial Network is 192.0.2.16 /28 - Router has the last assignable host address in subnet.

ripsim2

Serial Network is 192.0.2.16 /28 - Router has the last assignable host address in subnet. We

need to configure Last assignable host address(192.0.2.30) on serial 0/0/0 using the subnet mask 255.255.255.240

Gotha(config)#interface serial 0/0/0
Gotha(config-if)#ip address 192.0.2.30 255.255.255.240
Gotha(config-if)#no shutdown
Gotha(config-if)#exit


Requirement 6:

Router protocol is RIPv2

Need to enable RIPv2 on router and advertise its directly connected networks

Gotha(config)#router rip
Gotha(config-router)# version 2
Gotha(config-router)# no auto-summary
Gotha(config-router)#network 192.0.2.16
Gotha(config-router)#network 209.165.202.128
Gotha(config-router)#end

Step 7:

Important please do not forget to save your running-config to startup-config

Gotha# copy run start

Comments

  1. Is there a mixed up here? Question says following, but configurations on interfaces are different?
    Ethernet network 209.165.201.0/27 – router has second assignable host address in subnet.
    Serial network is 192.0.2.128/28 – router has last assignable host address in the subnet.

    ReplyDelete

Post a Comment

Popular posts from this blog

New Questions in CCNA 200-120 (HSRP, VRRP, NetFlow, SNMP)

The below are mock questions that were about to appear in exam CCNA 200-120. Updated : 14 th October 2013 Download the Latest 200-120 dumps : Click Here This file requires Visual Cert Exam Suite: Click Here Download the latest 200-120 dumps in DOCX format : Chapter 1 , Chapter 2 , Chapter 3 , Chapter 4 , Chapter 5, Chapter 6, Chapter 7, Chapter 8 , Chapter 9, Chapter 10, Chapter 11, Chapter 12 CCNA EIGRP Simulation CCNA ACL2 Simulation Question 1 Which three are the components of SNMP? (Choose three) A. MIB B. SNMP Manager C. SysLog Server D. SNMP Agent E. Set Answer : A, B, D Question 2 What are the Popular destinations for syslog messages to be saved? A. Flash B. The logging buffer .RAM C. The console terminal D. Other terminals E. Syslog server Answer: B, C, E Question 3 Syslog was configured with a level 3 trap. Which 3 types of logs would...

Cisco Packet Tracer Multi User Connection

Multiuser communication allows multiple point-to-point (peer) connections between multiple instances of Packet Tracer. By allowing communication between Packet Tracer instances, a new door has been opened to a fun, interactive, social, collaborative, and competitive learning environment. Instructors will now be able to create a variety of activities for students to learn in groups that will facilitate greater social interaction between students. Students will benefit from this environment by working together to solve problems and share ideas. Both students and teachers should take full advantage that Multiuser will offer in their learning environment. Technical Information Communicates between instances using PTMP. PTMP is TCP based. By default, uses TCP port 38000, is customizable, and each new instances on the same PC will use the next available port. On by default. UPnP will attempt to establish port forwarding to facilitate home networks. All network co...

CCNA RIPv2 Simulation

Central Florida Widgets recently installed a new router in their Apopka office. Complete the network installation by performing the initial router configurations and configuring RIPv2 routing using the router command line interface (CLI) on the Apopka router. To configure the router (Apopka) 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). Each of the windows can be minimized by clicking on the [-]. You can also reposition a window by dragging it by the title bar. The “Tab” key and most commands that use the “Control” or “Esc” keys are not supported and are not necessary to complete this simulation. The help command does not display all commands of the help system. Configure the router per the following requirements: Name of the router is Apopka Enable-secret password is ish555ana The password to access user EXEC mode using the console is New2Rtr The password to allow te...