CCNA Routing and Switching v3
CCNA Routing and Switching v3
CCNA Routing and Switching v3
0
Routing and Switching Essentials
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
[[labelOrg]] 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 [[labelOrg]] 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 [[SRVname]] 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.
© 2016 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 8
Routing and Switching Essentials CCNA v3.0
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
128.107.0.1/30
S0/0/0 2001:DB8:2:1::1/64
FE80::1
128.107.0.5/30
[[R1name]] S0/0/1 2001:DB8:3:1::1/64
FE80::1
10.10.20.1/30
S0/1/1 2001:DB8:1:1::1/64
FE80::1
10.10.20.2/30
S0/0/0 2001:DB8:1:1::2/64
FE80::2
10.10.1.254/24
[[R2name]] Gig0/0 2001:DB8:1:A::1/64
FE80::2
10.10.2.254/24
Gig0/1 2001:DB8:1:B::1/64
FE80::2
[[SRVname]] 64.100.100.10/24
NIC
(DNS Server) 2001:DB8:FF:F::10/64
© 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 2 of 8
Routing and Switching Essentials CCNA v3.0
Instructions
[[R1name]]:
Configure interfaces of the [[R1name]] router with IPv4 and IPv6 addressing based on the Addressing
Table.
Configure two directly connected static routes on [[R1name]] to reach the two IPv4 LAN networks on
router [[R2name]].
Configure two directly connected static routes on [[R1name]] to reach the IPv6 LAN networks on
router [[R2name]].
Configure directly connected IPv4 default static routes to reach hosts outside of the network.
o Configure the primary path through Serial0/0/0.
o 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.
o Configure the Primary path through Serial0/0/0.
o Configure the Backup path through Serial0/0/1 with a metric of 2.
[[R2name]]:
Configure interfaces on the [[R2name]] router with IPv4 and IPv6 addressing based on the Addressing
Table.
Configure a directly connected IPv4 default static route on [[R2name]] to reach the Internet.
Configure a directly connected IPv6 default static route on [[R2name]] to reach the Internet.
© 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 3 of 8
Routing and Switching Essentials CCNA v3.0
Configure the DNS server address for both IPv4 and IPv6.
All PC hosts should be able to reach the [[SRVname]] server.
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
service password-encryption
!
hostname [[R1name]]
!
!
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
!
!
no ip cef
ipv6 unicast-routing
!
no ipv6 cef
!
!
license udi pid CISCO2911/K9 sn FTX15248N99
!
!
!
!
no ip domain-lookup
!
!
spanning-tree mode pvst
!
!
!
interface GigabitEthernet0/0
no ip address
duplex auto
speed auto
shutdown
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
shutdown
© 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 4 of 8
Routing and Switching Essentials CCNA v3.0
!
interface GigabitEthernet0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0/0
description PRIMARY CONNECTION TO INTERNET
ip address 128.107.0.1 255.255.255.252
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:2:1::1/64
!
interface Serial0/0/1
description BACKUP CONNECTION TO INTERNET
ip address 128.107.0.5 255.255.255.252
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:3:1::1/64
!
interface Serial0/1/0
no ip address
clock rate 2000000
shutdown
!
interface Serial0/1/1
description CONNECTION TO R2
ip address 10.10.20.1 255.255.255.252
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:1:1::1/64
clock rate 128000
!
interface Vlan1
no ip address
shutdown
!
ip classless
ip route 10.10.1.0 255.255.255.0 Serial0/1/1
ip route 10.10.2.0 255.255.255.0 Serial0/1/1
ip route 0.0.0.0 0.0.0.0 Serial0/0/1 2
ip route 0.0.0.0 0.0.0.0 Serial0/0/0
!
ip flow-export version 9
!
ipv6 route 2001:DB8:1:B::/64 Serial0/1/1
ipv6 route 2001:DB8:1:A::/64 Serial0/1/1
ipv6 route ::/0 Serial0/0/0
ipv6 route ::/0 Serial0/0/1 2
!
!
banner motd ^C
Any banner text.^C
© 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 5 of 8
Routing and Switching Essentials CCNA v3.0
!
!
line con 0
password 7 0822404F1A0A
login
!
line aux 0
!
line vty 0 4
password 7 0822404F1A0A
login
!
!
end
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname [[R2name]]
!
!
!
no ip cef
ipv6 unicast-routing
!
no ipv6 cef
!
!
license udi pid CISCO1941/K9 sn FTX1524DM20
!
!
!
!
spanning-tree mode pvst
!
!
!
interface GigabitEthernet0/0
ip address 10.10.1.254 255.255.255.0
duplex auto
speed auto
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:1:A::1/64
!
interface GigabitEthernet0/1
ip address 10.10.2.254 255.255.255.0
duplex auto
© 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 6 of 8
Routing and Switching Essentials CCNA v3.0
speed auto
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:1:B::1/64
!
interface Serial0/0/0
ip address 10.10.20.2 255.255.255.252
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:1:1::2/64
!
interface Serial0/0/1
no ip address
clock rate 2000000
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0/0
!
ip flow-export version 9
!
ipv6 route ::/0 Serial0/0/0
!
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end
IPv4
--------------
Address: 10.10.1.1 to 10.10.1.253
Mask: 255.255.255.0
Gateway: 10.10.1.254
DNS: 64.100.100.10
IPv6
-------------
Address: 2001:DB8:1:A::A
Prefix: 64
Gateway: FE80::2
DNS: 2001:DB8:FF:F::10
© 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 7 of 8
Routing and Switching Essentials CCNA v3.0
IPv6
-------------
Address: 2001:DB8:1:B::A
Prefix: 64
Gateway: FE80::2
DNS: 2001:DB8:FF:F::10
© 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 8 of 8