CCNA 2 v6.0 RSE Chapter 2 SIC Practice Skills Assessment Option 1 – Packet Tracer

CCNA 2 v6.0 R&E Chapter 2 SIC: Static Routing and Basic Router Configuration Type 1

(Answers)

Chapter 2 SIC Practice Skills Assessment

A few things to keep in mind while completing this activity:

  1. Do not use the browser Backbutton 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

New Corp. is preparing to convert its network to use IPv6. It is experimenting with the transition, and has set up a test network that is configured with both IPv4 and IPv6 addressing on all hosts and device interfaces. The company will be using default, static, and floating static routes to create connectivity in the network.

In this practice skills assessment, you will configure the New Corp. network with IPv4 and IPv6 interface and host addressing, and IPv4 and IPv6 default, static, and floating static routes. In addition, you will complete a basic configuration on a router.

You are not required to configure the Internet server, or the switches.

Note: In order to keep the assessment activity as brief as possible, you will only be partially configuring some devices, as directed in the instructions. In a real network, all devices would be fully configured to function in the network. You are only responsible for completing the tasks covered in the instructions. Any configuration that you do beyond the requirements will not result in additional credit.

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.

 

You will practice and be assessed on the following skills:

  • Basic router configuration
  • IPv4 and IPv6 router interface activation and addressing
  • Directly attached IPv4 and IPv6 static route configuration
  • Directly attached IPv4 and IPv6 default route configuration
  • Directly attached IPv4 and IPv6 floating static route configuration
  • IPv4 and IPv6 host addressing

Addressing Table

Instructions

Step 1: Basic Device Configuration

Perform a basic device configuration on Main.

  • Configure the router hostname to the value in the addressing table.
  • Prevent the router from attempting to resolve unrecognized CLI entries as domain names.
  • Protect device configurations from unauthorized access with the encrypted secret password of cisco.
  • Secure the router console and vty lines with the password class.
  • Prevent all passwords from being viewed in clear text in device configuration files.
  • Add a message-of-the-day banner of your choice.
  • Provide descriptions on all active interfaces.
Step 2: Configure Default, Static, and Floating Static Routes.

Configure static, default, and floating static routes on the routers.

Main:

  • Configure interfaces of the Main router with IPv4 and IPv6 addressing based on the Addressing Table.
  • Configure two directly connected static routes on Main to reach the two IPv4 LAN networks on router Bldg-1.
  • Configure two directly connected static routes on Main to reach the IPv6 LAN networks on router Bldg-1.
  • Configure directly connected IPv4 default static routes to reach hosts outside of the network.
    • Configure the primary path through Serial0/0/0.
    • Configure a floating default static route for the backup path through Serial0/0/1 with a metric of 2.
  • Configure directly connected IPv6 default static routes to reach hosts outside of the network.
    • Configure the Primary path through Serial0/0/0.
    • Configure the Backup path through Serial0/0/1 with a metric of 2.

Bldg-1:

  • Configure interfaces on the Bldg-1 router with IPv4 and IPv6 addressing based on the Addressing Table.
  • Configure a directly connected IPv4 default static route on Bldg-1 to reach the Internet.
  • Configure a directly connected IPv6 default static route on Bldg-1 to reach the Internet.
Step 3: Configure Host Addressing
  • Configure the Host A and Host B hosts with both IPv4 and IPv6 addresses based on the Addressing Table.
  • IPv6 default gateway addresses should be the link local address of the LAN router interface.
  • Configure the DNS server address for both IPv4 and IPv6.
  • All PC hosts should be able to reach the Internet server.

Intruction – Answers

Main or Central (Router 1)

en
conf ter
hostname Main (Central)
no ip domain-lookup 
enable secret cisco

line console 0
password class
login
line vty 0 15
password cisco
login
exit
service password-encryption 
banner motd $ccna5.net$

int s0/0/0
description PRIMARY CONNECTION
ip address 128.107.0.1 255.255.255.252
ipv6 address 2001:DB8:2:1::1/64
ipv6 address FE80::1 link-local 
no shutdown 

int s0/0/1
description BACKUP CONNECTION
ip address 128.107.0.5 255.255.255.252
ipv6 address 2001:DB8:3:1::1/64
ipv6 address FE80::1 link-local 
no shutdown 

int s0/1/1
description Connect to Bldg-1
ip address 10.10.20.1 255.255.255.252
ipv6 address 2001:DB8:1:1::1/64
ipv6 address FE80::1 link-local 
no shutdown 
exit 

ip route 10.10.1.0 255.255.255.0 s0/1/1

ip route 10.10.2.0 255.255.255.0 s0/1/1

ipv6 route 2001:DB8:1:A::/64 s0/1/1
ipv6 route 2001:DB8:1:B::/64 s0/1/1

ip route 0.0.0.0 0.0.0.0 s0/0/0
ip route 0.0.0.0 0.0.0.0 s0/0/1 2
ipv6 route ::/0 s0/0/0
ipv6 route ::/0 s0/0/1 2
ipv6 unicast-routing

Bldg-1 or Quest (Router 2)

enable 
conf terminal 

int s0/0/0
ip address 10.10.20.2 255.255.255.252
ipv6 address 2001:DB8:1:1::2/64
ipv6 address FE80::2 link-local 
no shutdown 

int g0/0
ip address 10.10.1.254 255.255.255.0
ipv6 address 2001:DB8:1:A::1/64
ipv6 address FE80::2 link-local 
no shutdown 
int g0/1
ip address 10.10.2.254 255.255.255.0
ipv6 address 2001:DB8:1:B::1/64
ipv6 address FE80::2 link-local 
no shutdown 

exit 
int s0/0/0
description Connection to Main
int g0/0
description LAN A
int g0/1
description LAN B
exit
ip route 0.0.0.0 0.0.0.0 s0/0/0
ipv6 route ::/0 s0/0/0

Configure Host Addressing

Host A:

IPv4 Configuration:
– IP Address: 10.10.1.10
– Subnet Mask: 255.255.255.0
– Gateway: 10.10.1.254
– DNS Server: 64.100.100.10
IPv6 Configuration:
– IPv6 Address: 2001:DB8:1:A::A / 64
– IPv6 Gateway: FE80::2
– IPv6 DNS Server: 2001:DB8:FF:F::10

Host B:

IPv4 Configuration:
– IP Address: 10.10.2.10
– Subnet Mask: 255.255.255.0
– Gateway: 10.10.2.254
– DNS Server: 64.100.100.10
IPv6 Configuration:
– IPv6 Address: 2001:DB8:1:B::A / 64
– IPv6 Gateway: FE80::2
– IPv6 DNS Server: 2001:DB8:FF:F::10

3 Comments

  1. Stephen Comeau 15 May, 2019
    • Mr. R 1 September, 2019
    • Hi 12 October, 2019

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.