Sunday, October 21, 2012

Lab 197 - EIGRPv6 Default Route 1

Prerequisites: CCNP level skills.

Topology

Notice!
IPv6 addresses have changed. Follow the below topology diagram and tasks to accomplish the goals.

Pic1. IPv6 Topology Diagram.

Task 1
Enable EIGRPv6 Autonomous System 1 between R2 and SW1. Does not receive any specific IPv6 prefixes but a default route instead. Use only one command on R2 to accomplish the goal. Vlan 27 should use the addresses as per topology diagram. Host portion of IPv6 address should be: 2 and 7 on R2 and SW1 respectively.

Solution

Task 1
Enable EIGRPv6 Autonomous System 1 between R2 and SW1. Does not receive any specific IPv6 prefixes but a default route instead. Use only one command on R2 to accomplish the goal. Vlan 27 should use the addresses as per topology diagram. Host portion of IPv6 address should be: 2 and 7 on R2 and SW1 respectively.

R2 Config:
!


interface FastEthernet0/0
 ip address 172.16.27.2 255.255.255.0
 speed 100
 full-duplex
 ipv6 address FC00:1:1:1B::2/64
 ipv6 eigrp 1
 ipv6 summary-address eigrp 1 ::/0 5
!


SW1 Config:
!
ipv6 unicast-routing
!
ipv6 router eigrp 1
 no shutdown
!
interface Vlan27
 ip address 172.16.27.7 255.255.255.0
 ipv6 address FC00:1:1:1B::7/64
 ipv6 eigrp 1
!

Verification:
Pic. 2 - IPv6 Routing Table in SW1.