CCNPv7 - ROUTE - Lab2-3 - EIGRP-IPv6 - Student UNAD
CCNPv7 - ROUTE - Lab2-3 - EIGRP-IPv6 - Student UNAD
CCNPv7 - ROUTE - Lab2-3 - EIGRP-IPv6 - Student UNAD
UNIDAD 1
ESTUDIANTE
RENZO ROGELIO COAVAS BELTRAN
CODIGO 1102120381
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
CCNPv7 ROUTE
Objectives
Configure EIGRP for IPv6.
Verify EIGRP for IPv6.
Configure and verify passive routes using EIGRP for IPv6.
Configure and verify summary routes using EIGRP for IPv6.
Configure and verify default route using EIGRP for IPv6.
Background
EIGRP for IPv6 has the same overall operation and features as EIGRP for IPv4. However, there are a few major
differences between them:
EIGRP for IPv6 is configured directly on the router interfaces.
In the absence of the router having any IPv4 addresses, a 32-bit router ID must be configured for the routing
process to start.
IPv6 unicast routing must be enabled before the routing process can be configured.
In this lab, you will configure the network with EIGRP routing for IPv6. You will also assign router IDs, configure
passive interfaces, a summary route, and verify the network is fully converged.
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 2 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
Note: This lab uses Cisco 1941 routers with Cisco IOS Release 15.2 with IP Base. The switches are Cisco WS-
C2960-24TT-L with Fast Ethernet interfaces, therefore the router will use routing metrics associated with a 100 Mb/s
interface. Depending on the router or switch model and Cisco IOS Software version, the commands available and
output produced might vary from what is shown in this lab.
Required Resources
4 routers (Cisco IOS Release 15.2 or comparable)
3 switches (LAN interfaces)
Serial and Ethernet cables
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 3 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
b. Verify connectivity by pinging across each of the local networks connected to each router.
c. Issue the show ipv6 interface brief command on each router. This command displays a brief listing of the
interfaces, their status, and their IPv6 addresses. Router R1 is shown as an example.
R1# show ipv6 interface brief
Em0/0 [administratively down/down]
unassigned
GigabitEthernet0/0 [up/up]
FE80::1
2001:DB8:CAFE:1::1
GigabitEthernet0/1 [administratively down/down]
unassigned
Serial0/0/0 [up/up]
FE80::1
2001:DB8:CAFE:2::1
Serial0/0/1 [administratively down/down]
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 4 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
unassigned
R1#
Step 3: Configure EIGRP for IPv6 on Serial, Gigabit Ethernet and Loopback interfaces on all
routers.
a. Issue the ipv6 eigrp 1 command on the interfaces that participate in the EIGRP routing process. EIGRP for IPv6
does not use the network command. IPv6 prefixes are enabled on the interface. Similar to EIGRP for IPv4, the
AS number must match the neighbor’s configuration for the router to form an adjacency.
R1(config)# interface g0/0
R1(config-if)# ipv6 eigrp 1
R1(config-if)# exit
R1(config)# interface s0/0/0
R1(config-if)# ipv6 eigrp 1
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 5 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
b. When you assign EIGRP for IPv6 on R2’s serial 0/0/0 interface you will see the neighbor adjacency message as
the interface is added to the EIGRP routing process.
R1#
*Sep 24 15:28:13.911: %DUAL-5-NBRCHANGE: EIGRP-IPv6 1: Neighbor FE80::2 (Serial0/0/0) is up:
new adjacency
R1#
What address on R2 is used to form the neighbor adjacency with R1? What type of IPv6 address is used to
establish the adjacencies?
______________________________________________________________________________
The link-local address FE80::2 of the neighbor’s interface, which was manually configured in Step 1.
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 6 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 7 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
R1#
Why are there no feasible successors?
___________________________________________________________________________________
R1 does not have any other paths to these networks. There are no redundant paths in this topology.
Why are there two more entries in R1’s EIGRP topology table than there is when displaying R1’s EIGRP routes
with the show ipv6 route eigrp command?
___________________________________________________________________________________
The show ipv6 route eigrp command does not include the directly connected networks.
e. Issue the show ipv6 protocols command to verify the configured parameters. Examining the output, EIGRP for
IPv6 is the configured IPv6 routing protocol with 1.1.1.1 as the router ID for R1. This routing protocol is associated
with autonomous system 1 with two active interfaces: G0/0 and S0/0/0.
R1# show ipv6 protocols
IPv6 Routing Protocol is "connected"
IPv6 Routing Protocol is "application"
IPv6 Routing Protocol is "ND"
IPv6 Routing Protocol is "eigrp 1"
EIGRP-IPv6 Protocol for AS(1)
Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
NSF-aware route hold timer is 240
Router-ID: 1.1.1.1
Topology : 0 (base)
Active Timer: 3 min
Distance: internal 90 external 170
Maximum path: 16
Maximum hopcount 100
Maximum metric variance 1
Interfaces:
GigabitEthernet0/0
Serial0/0/0
Redistribution:
None
R1#
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 8 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
What would be the result if the ipv6 eigrp 1 commands were removed from the G0/0 interfaces instead of using
the passive-interface command? _____________________
The routers would not include their G0/0 IPv6 prefixes in their EIGRP updates to their neighbors.
b. Issue the show ipv6 protocols command on R1 and verify that G0/0 has been configured as passive.
R1# show ipv6 protocols
IPv6 Routing Protocol is "connected"
IPv6 Routing Protocol is "application"
IPv6 Routing Protocol is "ND"
IPv6 Routing Protocol is "eigrp 1"
EIGRP-IPv6 Protocol for AS(1)
Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
NSF-aware route hold timer is 240
Router-ID: 1.1.1.1
Topology : 0 (base)
Active Timer: 3 min
Distance: internal 90 external 170
Maximum path: 16
Maximum hopcount 100
Maximum metric variance 1
Interfaces:
Serial0/0/0
GigabitEthernet0/0 (passive)
Redistribution:
None
R1#
c. Issue the show ipv6 route eigrp command on R3 to verify it is still receiving EIGRP updates containing the IPv6
prefixes that were configured as passive-interfaces.
R3# show ipv6 route eigrp
IPv6 Routing Table - default - 18 entries
Codes: C - Connected, L - Local, S - Static, U - Per-user Static route
B - BGP, R - RIP, H - NHRP, I1 - ISIS L1
I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary, D - EIGRP
EX - EIGRP external, ND - ND Default, NDp - ND Prefix, DCE - Destination
NDr - Redirect, O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1
OE2 - OSPF ext 2, ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2
a - Application
D 2001:DB8:CAFE:1::/64 [90/2684416]
via FE80::2, Serial0/0/1
D 2001:DB8:CAFE:2::/64 [90/2681856]
via FE80::2, Serial0/0/1
D 2001:DB8:CAFE:3::/64 [90/2172416]
via FE80::2, Serial0/0/1
R3#
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 9 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
c. Examine R1’s routing table and verify that R1 is now only receiving a summary route for R3’s loopback prefixes.
R1# show ipv6 route eigrp
IPv6 Routing Table - default - 9 entries
Codes: C - Connected, L - Local, S - Static, U - Per-user Static route
B - BGP, R - RIP, H - NHRP, I1 - ISIS L1
I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary, D - EIGRP
EX - EIGRP external, ND - ND Default, NDp - ND Prefix, DCE - Destination
NDr - Redirect, O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1
OE2 - OSPF ext 2, ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2
a - Application
D 2001:DB8:ABCD::/61 [90/2809856]
via FE80::2, Serial0/0/0
D 2001:DB8:CAFE:3::/64 [90/2172416]
via FE80::2, Serial0/0/0
D 2001:DB8:CAFE:4::/64 [90/2681856]
via FE80::2, Serial0/0/0
D 2001:DB8:CAFE:5::/64 [90/2684416]
via FE80::2, Serial0/0/0
R1#
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 10 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
d. From R1, ping R3’s loopback addresses to verify reachability to each address.
R1# ping 2001:db8:abcd:1::1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2001:DB8:ABCD:1::1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 52/55/56 ms
R1# ping 2001:db8:abcd:2::1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2001:DB8:ABCD:2::1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 52/55/56 ms
R1# ping 2001:db8:abcd:3::1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2001:DB8:ABCD:3::1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms
R1# ping 2001:db8:abcd:4::1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2001:DB8:ABCD:4::1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms
R1#R1# ping 2001:db8:abcd:5::1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2001:DB8:ABCD:5::1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 52/56/60 ms
R1#
e. Issue the show ipv6 protocols command on R3 to verify the configured summary route. From the output, EIGRP
for IPv6 is still advertising the loopback addresses and that there is address summarization in effect.
R3# show ipv6 protocols
IPv6 Routing Protocol is "connected"
IPv6 Routing Protocol is "application"
IPv6 Routing Protocol is "ND"
IPv6 Routing Protocol is "eigrp 1"
EIGRP-IPv6 Protocol for AS(1)
Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
NSF-aware route hold timer is 240
Router-ID: 3.3.3.3
Topology : 0 (base)
Active Timer: 3 min
Distance: internal 90 external 170
Maximum path: 16
Maximum hopcount 100
Maximum metric variance 1
Interfaces:
Serial0/0/1
Loopback1
Loopback2
Loopback3
Loopback4
Loopback5
GigabitEthernet0/0 (passive)
Redistribution:
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 11 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
None
Address Summarization:
2001:DB8:ABCD::/61 for Se0/0/1
Summarizing 5 components with metric 128256
R3#
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 12 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
The show ipv6 cef command can be used to verify the status of CEF for IPv6. If CEF is disabled, it can be
enabled with the ipv6 cef global configuration command. The output below shows an example of CEF currently
disabled and then enabled.
Note: CEF for IPv4 is enabled by default.
R1# show ipv6 cef summary
IPv6 CEF is disabled.
VRF Default
1 prefix (1/0 fwd/non-fwd)
Table id 0x1E000000
Database epoch: 0 (1 entry at this epoch)
R1# conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)# ipv6 cef
R1(config)# exit
R1# show ipv6 cef summary
IPv6 CEF is enabled and running centrally.
VRF Default
14 prefixes (14/0 fwd/non-fwd)
Table id 0x1E000000
Database epoch: 0 (14 entries at this epoch)
Initial Configurations
Router R1
hostname R1
!
interface GigabitEthernet0/0
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:CAFE:1::1/64
no shutdown
!
interface Serial0/0/0
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:CAFE:2::1/64
clock rate 64000
no shutdown
!
end
Router R2
hostname R2
!
interface GigabitEthernet0/0
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:CAFE:3::1/64
no shutdown
!
interface Serial0/0/0
ipv6 address FE80::2 link-local
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 13 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
Router R3
hostname R3
!
interface Loopback1
ipv6 address 2001:DB8:ABCD:1::1/64
!
interface Loopback2
ipv6 address 2001:DB8:ABCD:2::1/64
!
interface Loopback3
ipv6 address 2001:DB8:ABCD:3::1/64
!
interface Loopback4
ipv6 address 2001:DB8:ABCD:4::1/64
!
interface Loopback5
ipv6 address 2001:DB8:ABCD:5::1/64
!
interface GigabitEthernet0/0
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:CAFE:5::1/64
no shutdown
!
interface Serial0/0/1
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:CAFE:4::2/64
no shutdown
!
interface Serial0/1/0
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:FEED:77::2/64
clock rate 64000
no shutdown
!
end
Router R4
hostname R4
!
interface Serial0/0/0
ipv6 address FE80::4 link-local
ipv6 address 2001:DB8:FEED:77::1/64
no shutdown
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 14 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
!
ipv6 route 2001:DB8:ABCD::/48 2001:DB8:FEED:77::2
ipv6 route 2001:DB8:CAFE::/48 2001:DB8:FEED:77::2
!
end
Final Configurations
Router R1
hostname R1
!
ipv6 unicast-routing
ipv6 cef
!
interface GigabitEthernet0/0
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:CAFE:1::1/64
ipv6 eigrp 1
!
interface Serial0/0/0
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:CAFE:2::1/64
ipv6 eigrp 1
clock rate 64000
!
ipv6 router eigrp 1
passive-interface GigabitEthernet0/0
eigrp router-id 1.1.1.1
!
end
Router R2
hostname R2
!
ipv6 unicast-routing
ipv6 cef
!
interface GigabitEthernet0/0
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:CAFE:3::1/64
ipv6 eigrp 1
!
interface Serial0/0/0
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:CAFE:2::2/64
ipv6 eigrp 1
!
interface Serial0/0/1
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:CAFE:4::1/64
ipv6 eigrp 1
clock rate 64000
!
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 15 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
Router R3
hostname R3
!
ipv6 unicast-routing
ipv6 cef
!
interface Loopback1
ipv6 address 2001:DB8:ABCD:1::1/64
ipv6 eigrp 1
!
interface Loopback2
ipv6 address 2001:DB8:ABCD:2::1/64
ipv6 eigrp 1
!
interface Loopback3
ipv6 address 2001:DB8:ABCD:3::1/64
ipv6 eigrp 1
!
interface Loopback4
ipv6 address 2001:DB8:ABCD:4::1/64
ipv6 eigrp 1
!
interface Loopback5
ipv6 address 2001:DB8:ABCD:5::1/64
ipv6 eigrp 1
!
interface GigabitEthernet0/0
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:CAFE:5::1/64
ipv6 eigrp 1
!
interface Serial0/0/1
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:CAFE:4::2/64
ipv6 eigrp 1
ipv6 summary-address eigrp 1 2001:DB8:ABCD::/61
!
interface Serial0/1/0
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:FEED:77::2/64
clock rate 64000
!
ipv6 route ::/0 Serial0/1/0 2001:DB8:FEED:77::1
ipv6 router eigrp 1
passive-interface GigabitEthernet0/0
eigrp router-id 3.3.3.3
redistribute static
!
end
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 16 of 17
CCNPv7 ROUTE Lab 2-3, EIGRP for IPv6
Router R4
hostname R4
!
interface Serial0/0/0
ipv6 address FE80::4 link-local
ipv6 address 2001:DB8:FEED:77::1/64
!
ipv6 route 2001:DB8:ABCD::/48 2001:DB8:FEED:77::2
ipv6 route 2001:DB8:CAFE::/48 2001:DB8:FEED:77::2
!
end
© 2014 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 17 of 17