CCNA 1 v6.0 Final Skills Assessment Option A

CCNA 1 v6.0 Introduction to Networks

Practice Skills Assessment – Packet Tracer Option A

Download PKZ: https://mega.nz/#!l4IjEZSB!iBXtmxlfmtnMVBuFVTnQ3BAgnNvTGwSd_9DChi_PokE
CCNA 1 v6.0 Final Practice Skills Assessment Option A

A few things to keep in mind while completing this activity:
1. Do not use the browser Back button or close or reload any exam windows during the exam.
2. Do not close Packet Tracer when you are done. It will close automatically.
3. Click the Submit Assessment button in the browser window to submit your work.

Introduction

In this assessment, you will configure devices in an IPv4/IPv6 network. For the sake of time, you will not be asked to perform all configurations on all network devices as you may be required to do in a real network or other assessment. Instead, you will use the skills and knowledge that you have learned in the labs in this course to configure the Town Hall router . In addition, you will address the hosts on two LANs with IPv4 and IPv6 addresses, activate and address the management interface of the Administration Switch , and back up a device configuration to a TFTP server.

You will receive one of several topologies.

You are not required to configure the IT Department Switch, and you will not be able to access it in this practice skills assessment activity.

All IOS device configurations should be completed from a direct terminal connection to the device console. In addition, many values that are required to complete the configurations have not been given to you. In those cases, create the values that you need to complete the requirements. For values that have been supplied to you, they must be entered exactly as they appear in order for you to get full credit for your configuration.

You will practice and be assessed on the following skills: 
• Configuration of initial IOS device settings
• Design and calculation of IPv4 addressing
• Configuration of IOS device interfaces including IPv4 and IPv6 addressing when appropriate
• Addressing of network hosts with IPv4 and IPv6 addresses
• Enhancing device security, including configuration of the secure transport protocol for remote device configuration
• Configuration of a switch management interface

Requirements by device:

Town Hall router :

• Configuration of initial router settings
• Interface configuration and IPv4 and IPv6 addressing
• Device security enhancement or device hardening
• Secure transport for remote configuration connections as covered in the labs
• Backup of the configuration file to a TFTP server

Administration Switch :

• Enabling basic remote management by Telnet

PC and Server hosts:

• IPv4 full addressing
• IPv6 addressing

Addressing Table

CCNA 1 v6.0 Final Practice Skills Assessment Option A Table 1

Instructions

Step 1: Determine the IP Addressing Scheme.

Design an IPv4 addressing scheme and complete the Addressing Table based on the following requirements. Use the table to help you organize your work.

CCNA 1 v6.0 Final Practice Skills Assessment Option A Table 2
a. Subnet the 192.168.1.0/24 network to provide 30 host addresses per subnet while wasting the fewest addresses.
b. Assign the fourth subnet to the IT Department LAN.
c. Assign the last network host address (the highest) in this subnet to the G0/0 interface on Town Hall/CS Department . (192.168.1.126)
d. Starting with the fifth subnet, subnet the network again so that the new subnets will provide 14 host addresses per subnet while wasting the fewest addresses.
e. Assign the second of these new 14-host subnets to the Administration LAN.
f. Assign the last network host address (the highest) in the Administration LAN subnet to the G0/1interface of the Town Hall router. (192.168.1.158)
g. Assign the second to the last address (the second highest) in this subnet to the VLAN 1 interface of the Administration Switch . (192.168.1.157)
h. Configure addresses on the hosts using any of the remaining addresses in their respective subnets.

Step 2: Configure the Town Hall router .

a. Configure the Town Hall router  with all initial configurations that you have learned in the course so far:
• Configure the router hostname: Middle
• Protect device configurations from unauthorized access with the encrypted privileged exec password.
• Secure all access lines into the router using methods covered in the course and labs.
• Require newly-entered passwords must have a minimum length of 10 characters.
• Prevent all passwords from being viewed in clear text in device configuration files.
• Configure the router to only accept in-band management connections over the protocol that is more secure than Telnet, as was done in the labs. Use the value 1024 for encryption key strength.
• Configure local user authentication for in-band management connections. Create a user with the name netadmin and a secret password of Cisco_CCNA5 Give the user the highest administrative privileges. Your answer must match these values exactly.
b. Configure the two Gigabit Ethernet interfaces using the IPv4 addressing values you calculated and the IPv6 values provided in the addressing table.
• Reconfigure the link local addresses to the value shown in the table.
• Document the interfaces in the configuration file.

Step 3: Configure the Administration Switch .

Configure Administration Switch  for remote management over Telnet.

Step 4: Configure and Verify Host Addressing.

a. Use the IPv4 addressing from Step 1 and the IPv6 addressing values provided in the addressing table to configure all host PCs with the correct addressing.
b. Use the router interface link-local address as the IPv6 default gateways on the hosts.

Step 5: Backup the Configuration of the Town Hall router  to TFTP.

a. Complete the configuration of the TFTP server using the IPv4 addressing values from Step 1 and the values in the addressing table.
b. Backup the running configuration of Town Hall  to the TFTP Server. Use the default file name.

Answer:

Town Hall router

Router>enable
Router#configure terminal
Router(config)#hostname Middle
Middle(config)#enable secret class
Middle(config)#service password-encryption
Middle(config)#banner motd "Authorized Access Only"
Middle(config)#security passwords min-length 10
Middle(config)#login block-for 120 attempts 2 within 30
Middle(config)#no ip domain-lookup
Middle(config)#ip domain-name cisco.com
Middle(config)#crypto key generate rsa
The name for the keys will be: Middle.cisco.com
How many bits in the modulus [512]: 1024


Middle(config)#line console 0
Middle(config-line)#password cisco12345
Middle(config-line)#login
Middle(config-line)#logging synchronous
Middle(config-line)#exec-timeout 60
Middle(config-line)#exit


Middle(config)#line vty 0 15
Middle(config-line)#password cisco12345
Middle(config-line)#transport input ssh
Middle(config-line)#login local
Middle(config-line)#logging synchronous
Middle(config-line)#exec-timeout 60
Middle(config-line)#exit


Middle(config)#line aux 0
Middle(config-line)#password cisco12345
Middle(config-line)#login
Middle(config-line)#logging synchronous
Middle(config-line)#exec-timeout 60
Middle(config-line)#exit


Middle(config)#ip ssh version 2
Middle(config)#ip ssh time-out 120
Middle(config)#username netadmin privilege 15 secret Cisco_CCNA5


Middle(config)#interface g0/0
Middle(config-if)#ip address 192.168.1.126 255.255.255.224
Middle(config-if)#description IT Department LAN
Middle(config-if)#ipv6 address 2001:DB8:ACAD:A::1/64
Middle(config-if)#ipv6 address fe80::1 link-local
Middle(config-if)#no shutdown
Middle(config-if)#exit


Middle(config)#interface g0/1
Middle(config-if)#ip address 192.168.1.158 255.255.255.240
Middle(config-if)#description Administration LAN
Middle(config-if)#ipv6 address 2001:DB8:ACAD:B::1/64
Middle(config-if)#ipv6 address fe80::1 link-local
Middle(config-if)#no shutdown
Middle(config-if)#exit
Middle(config)#ipv6 unicast-routing
Middle(config)#exit
Middle#write

Administration Switch

Switch>enable
Switch#conf terminal
Switch(config)#interface Vlan1
Switch(config-if)# ip address 192.168.1.157 255.255.255.240
Switch(config-if)# no shutdown
Switch(config-if)# exit
Switch(config)#ip default-gateway 192.168.1.158
Switch(config)#
Switch(config)#line vty 0 4
Switch(config-line)# password cisco12345
Switch(config-line)# login
Switch(config-line)#end
Switch#write

Reception Host

IPv4 192.168.1.97 255.255.255.224
Gateway-v4 192.168.1.126
IPv6 2001:DB8:ACAD:A::FF/64
Gateway-v6 FE80::1

Operator Host

IPv4 192.168.1.98 255.255.255.224
Gateway-v4 192.168.1.126
IPv6 2001:DB8:ACAD:A::15/64
Gateway-v6 FE80::1

IT Host

IPv4 192.168.1.145 255.255.255.240
Gateway-v4 192.168.1.158
IPv6 2001:DB8:ACAD:B::FF/64
Gateway-v6 FE80::1

TFTP Server

IPv4 192.168.1.146 255.255.255.240
Gateway-v4 192.168.1.158
IPv6 2001:DB8:ACAD:B::15/64
Gateway-v6 FE80::1

Backup the Configuration of the Town Hall router to TFTP.

Middle#copy running-config tftp: 
Address or name of remote host []? 192.168.1.146
Destination filename [Middle-confg]? 
Press Enter
0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x