6.2.4.5 Lab - Configuring IPv6 Static and Default Routes
6.2.4.5 Lab - Configuring IPv6 Static and Default Routes
Demonstreer aan de docent de real-time werkende lab en lever de antwoorden op papier in.
De lab wordt eventueel goedgekeurd en afgetekend.
De afgetekende lab `s zijn te zien op de spreadsheet op: www.misc.hro.nl/telematica/Uitslagen.
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 1 of 11
Topology
Addressing Table
Device
R1
Interface
Default Gateway
G0/1
2001:DB8:ACAD:A::/64 eui-64
N/A
S0/0/1
FC00::1/64
N/A
G0/1
2001:DB8:ACAD:B::/64 eui-64
N/A
S0/0/0
FC00::2/64
N/A
PC-A
NIC
SLAAC
SLAAC
PC-C
NIC
SLAAC
SLAAC
R3
Objectives
Part 1: Build the Network and Configure Basic Device Settings
Enable IPv6 unicast routing and configure IPv6 addressing on the routers.
Disable IPv4 addressing and enable IPv6 SLAAC for the PC network interfaces.
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 2 of 11
Background / Scenario
In this lab, you will configure the entire network to communicate using only IPv6 addressing, including
configuring the routers and PCs. You will use stateless address auto-configuration (SLAAC) for configuring
the IPv6 addresses for the hosts. You will also configure IPv6 static and default routes on the routers to
enable communication to remote networks that are not directly connected.
Note: The routers used with CCNA hands-on labs are Cisco 1941 Integrated Services Routers (ISRs) with
Cisco IOS Release 15.2(4)M3 (universalk9 image). The switches used are Cisco Catalyst 2960s with Cisco
IOS Release 15.0(2) (lanbasek9 image). Other routers, switches, and Cisco IOS versions can be used.
Depending on the model and Cisco IOS version, the commands available and output produced might vary
from what is shown in the labs. Refer to the Router Interface Summary Table at the end of this lab for the
correct interface identifiers.
Note: Make sure that the routers and switches have been erased and have no startup configurations. If you
are unsure, contact your instructor.
Required Resources
2 Routers (Cisco 1941 with Cisco IOS Release 15.2(4)M3 universal image or comparable)
2 Switches (Cisco 2960 with Cisco IOS Release 15.0(2) lanbasek9 image or comparable)
Console cables to configure the Cisco IOS devices via the console ports
Step 1: Enable IPv6 unicast routing and configure IPv6 addressing on the routers.
a. Using console into the router labeled R1 in the topology diagram and assign the router the name R1.
b. Within global configuration mode, enable IPv6 routing on R1.
R1(config)# ipv6 unicast-routing
c.
Configure the network interfaces on R1 with IPv6 addresses. Notice that IPv6 is enabled on each
interface. The G0/1 interface has a globally routable unicast address and EUI-64 is used to create the
interface identifier portion of the address. The S0/0/1 interface has a privately routable, unique-local
address, which is recommended for point-to-point serial connections.
R1(config)# interface g0/1
R1(config-if)# ipv6 address 2001:DB8:ACAD:A::/64 eui-64
R1(config-if)# no shutdown
R1(config-if)# interface serial 0/0/1
R1(config-if)# ipv6 address FC00::1/64
R1(config-if)# no shutdown
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 3 of 11
Configure the network interfaces on R3 with IPv6 addresses. Notice that IPv6 is enabled on each
interface. The G0/1 interface has a globally routable unicast address and EUI-64 is used to create the
interface identifier portion of the address. The S0/0/0 interface has a privately routable, unique-local
address, which is recommended for point-to-point serial connections. The clock rate is set because it is
the DCE end of the serial cable.
R3(config)# interface gigabit 0/1
R3(config-if)# ipv6 address 2001:DB8:ACAD:B::/64 eui-64
R3(config-if)# no shutdown
R3(config-if)# interface serial 0/0/0
R3(config-if)# ipv6 address FC00::2/64
R3(config-if)# clock rate 128000
R3(config-if)# no shutdown
R3(config-if)# exit
Step 2: Disable IPv4 addressing and enable IPv6 SLAAC for the PC network interfaces.
By default, an IPv6 address is configured in Ubuntu using SLAAC. Then privacy addressing became the default.
Instellen:
Linux desktop, rechts, bovenaan,
Klik op Opslaan.
klik op Opslaan.
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 4 of 11
j.
From PC-C, use the ping -6 command to ping the PC-C default gateway.
Did PC-C receive replies to the pings from PC-C to R3? __________
k.
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 5 of 11
View the IPv6 routing table information for R1 using the show ipv6 route command. The IPv6 routing
table should have two connected routes, one for each interface, and three local routes, one for each
interface and one for multicast traffic to a Null0 interface.
In what way does the routing table output of R1 reveal why you were unable to ping PC-C from PC-A?
____________________________________________________________________________________
Directly Connected IPv6 Static Route A directly connected static route is created when specifying the
outgoing interface.
Recursive IPv6 Static Route A recursive static route is created when specifying the next-hop IP
address. This method requires the router to execute a recursive lookup in the routing table in order to
identify the outgoing interface.
Default IPv6 Static Route Similar to a quad zero IPv4 route, a default IPv6 static route is created by
making the destination IPv6 prefix and prefix length all zeros, ::/0.
Now that the static route has been configured on R1, is it now possible to ping the host PC-C from PC-A?
____________________________________________________________________________________
These pings should fail. If the recursive static route is correctly configured, the ping arrives at PC-C. PC-C
sends a ping reply back to PC-A. However, the ping reply is discarded at R3 because R3 does not have a
return route to the 2001:DB8:ACAD:A::/64 network in the routing table. To successfully ping across the
network, you must also create a static route on R3.
d. On router R3, configure an IPv6 static route to the 2001:DB8:ACAD:A::/64 network, using the R3 outgoing
S0/0/0 interface.
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 6 of 11
View the IPv6 routing table on R1 to verify the new static route entry.
What is the code letter and routing table entry for the newly added route in the routing table?
____________________________________________________________________________________
View the IPv6 routing table on R1 to verify the new static route entry.
What is the code letter and routing table entry for the newly added default route in the routing table?
____________________________________________________________________________________
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 7 of 11
Reflection
1. This lab focuses on configuring IPv6 static and default routes. Can you think of a situation where you would
need to configure both IPv6 and IPv4 static and default routes on a router?
_______________________________________________________________________________________
2. In practice, configuring an IPv6 static and default route is very similar to configuring an IPv4 static and default
route. Aside from the obvious differences between the IPv6 and IPv4 addressing, what are some other
differences when configuring and verifying an IPv6 static route as compared to an IPv4 static route?
Demonstreer aan de docent de real-time werkende lab en lever de antwoorden op papier in.
De lab wordt eventueel goedgekeurd en afgetekend.
Ethernet Interface #1
Ethernet Interface #2
Serial Interface #1
Serial Interface #2
1800
1900
2801
2811
2900
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many
interfaces the router has. There is no way to effectively list all the combinations of configurations for each router
class. This table includes identifiers for the possible combinations of Ethernet and Serial interfaces in the device.
The table does not include any other type of interface, even though a specific router may contain one. An
example of this might be an ISDN BRI interface. The string in parenthesis is the legal abbreviation that can be
used in Cisco IOS commands to represent the interface.
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 8 of 11
Note: You may receive a prompt to save the running configuration prior to reloading the router. Respond
by typing no and press Enter.
System configuration has been modified. Save? [yes/no]: no
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 9 of 11
Step 5: Determine if there have been any virtual local-area networks (VLANs) created.
Use the show flash command to determine if any VLANs have been created on the switch.
Switch# show flash
Directory of flash:/
2
3
4
5
6
-rwx
-rwx
-rwx
-rwx
-rwx
1919
1632
13336
11607161
616
Mar
Mar
Mar
Mar
Mar
1
1
1
1
1
1993
1993
1993
1993
1993
00:06:33
00:06:33
00:06:33
02:37:06
00:07:13
+00:00
+00:00
+00:00
+00:00
+00:00
private-config.text
config.text
multiple-fs
c2960-lanbasek9-mz.150-2.SE.bin
vlan.dat
You will be prompted to verify the file name. At this point, you can change the file name or just press Enter
if you have entered the name correctly.
b. When you are prompted to delete this file, press Enter to confirm the deletion. (Pressing any other key will
abort the deletion.)
Delete flash:/vlan.dat? [confirm]
Switch#
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 10 of 11
Note: You may receive a prompt to save the running configuration prior to reloading the switch. Type no
and press Enter.
System configuration has been modified. Save? [yes/no]: no
2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Page 11 of 11