Sunday, October 21, 2012

Lab 198 - EIGRPv6 Default Route 2

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 R1, R5, and SW2. Use addresses presented in the topology diagram. Host portion should follow our previous labs (here: R1=1, R5=5, SW2=8).

Task 2
Allow R5 and SW2 learn all IPv6 prefixes enabled in the previous labs. Configure R1 as a default gateway for all unknown addresses. Do not use summarization to accomplish the goal. You are allowed to use a static route in R1's configuration. 

Solution


Task 1
Enable EIGRPv6 Autonomous System 1 between R1R5, and SW2. Use addresses presented in the topology diagram. Host portion should follow our previous labs (here: R1=1, R5=5, SW2=8).

R1 Config:
!
interface FastEthernet0/1
 ip address 172.16.215.1 255.255.255.0
 speed 100
 full-duplex
 ipv6 address FC00:1:1:D7::1/64
 ipv6 eigrp 1
!

R5 Config:
!
ipv6 unicast-routing
!
ipv6 router eigrp 1
 no shutdown
!
interface FastEthernet0/1
 ip address 172.16.215.5 255.255.255.0
 speed 100
 full-duplex
 ipv6 address FC00:1:1:D7::5/64
 ipv6 eigrp 1
!

SW2 Config
!
ipv6 unicast-routing
!
ipv6 router eigrp 1
 no shutdown
!
interface Vlan215
 ip address 172.16.215.8 255.255.255.0
 ipv6 address FC00:1:1:D7::8/64
 ipv6 eigrp 1
!

Task 2
Allow R5 and SW2 learn all IPv6 prefixes enabled in the previous labs. Configure R1 as a default gateway for all unknown addresses. Do not use summarization to accomplish the goal. You are allowed to use a static route in R1's configuration.

R1 Config:
!
ipv6 route ::/0 null0
!
ipv6 router eigrp 1
 no shutdown
 redistribute static
!

Verification:
Pic. 2 - Default Route in R5.