Wednesday, September 26, 2012

Lab 189 - IPv6 Address Auto-Configuration


Prerequisites: CCNP level skills.

Topology


Pic2. Layer3 Topology Diagram.

Click the picture to enlarge it.

Task 1
Ensure, that you have configured previous lab correctly (lab 188). Configure SW1, SW2 and R5 such that they automatically configure their IPv6 addresses in Vlans 27 and Vlans 215. 

Task 2
Enable RIPng with the identifier 'CCIE' in SW1, SW2 and R5. Verify that SW1 can reach all the hosts in VLAN 215.

Notice!
In order to proceed to the next lab you must first complete all the previous labs (from lab 188 onwards).

Solution


Task 1
Ensure, that you have configured previous lab correctly (lab 188). Configure SW1SW2 and R5 such that they automatically configure their IPv6 addresses in Vlans 27 and Vlans 215. 

SW1 Config:
!
ipv6 unicast-routing
!
interface Vlan27
 ip address 172.16.27.7 255.255.255.0
 ipv6 address autoconfig
!

SW2 Config:
!
ipv6 unicast-routing
!
interface Vlan215
 ip address 172.16.215.8 255.255.255.0
 ipv6 address autoconfig
!

R5 Config:
!
ipv6 unicast-routing
!
interface FastEthernet0/1
 ip address 172.16.215.5 255.255.255.0
 speed 100
 full-duplex
 ipv6 address autoconfig
!

Using 'debug ipv6 nd' and 'debug ipv6 packet detail' inspect what happens when you enable autoconfig.


Task 2
Enable RIPng with the identifier 'CCIE' in SW1SW2 and R5. Verify that SW1 can reach all the hosts in VLAN 215.

SW1 Config:
!
interface Vlan27
 ip address 172.16.27.7 255.255.255.0
 ipv6 address autoconfig
 ipv6 rip CCIE enable
!

SW2 Config:
!
interface Vlan215
 ip address 172.16.215.8 255.255.255.0
 ipv6 address autoconfig
 ipv6 rip CCIE enable
!


R5 Config:
!
interface FastEthernet0/1
 ip address 172.16.215.5 255.255.255.0
 speed 100
 full-duplex
 ipv6 address autoconfig
 ipv6 rip CCIE enable
!