Wednesday, September 26, 2012

Lab 190 - RIPng Prefix Summarization


Prerequisites: CCNP level skills.

Topology

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

Pic1. Layer3 Topology Diagram.

Click the picture to enlarge it.

Task 1
Configure IPv6 addresses between SW2 and BB2 as follows:
  • SW2 (Vlan 208): 2001:0:0:D0::8/64 
  • BB2 (Fa0/0): 2001:0:0:D0::FE/64
Task 2
In BB2 configure four loopbacks using the following addresses:
  • Loopback 0: 2001:2:2:0::1/64
  • Loopback 1: 2001:2:2:1::1/64
  • Loopback 2: 2001:2:2:2::1/64
  • Loopback 3: 2001:2:2:3::1/64
Task 3
Enable RIPng with the identifier 'CCIE' between SW2 and BB2. Ensure that SW2 advertises only one learned from BB2. All other RIPng devices should be able to reach more specific prefixes advertised by BB2.

Solution

Task 1
Configure IPv6 addresses between SW2 and BB2 as follows:
  • SW2 (Vlan 208): 2001:0:0:D0::8/64 
  • BB2 (Fa0/0): 2001:0:0:D0::FE/64
SW2 Config:
!
ipv6 unicast-routing
!
interface Vlan208
 ip address 198.18.100.8 255.255.255.0
 ipv6 address 2001:0:0:D0::8/64
!

BB2 Config:
!
ipv6 unicast-routing
!
interface FastEthernet0/0
 ip address 198.18.100.254 255.255.255.0
 speed 100
 full-duplex
 ipv6 address 2001:0:0:D0::FE/64
!

Task 2
In BB2 configure four loopbacks using the following addresses:
  • Loopback 0: 2001:2:2:0::1/64
  • Loopback 1: 2001:2:2:1::1/64
  • Loopback 2: 2001:2:2:2::1/64
  • Loopback 3: 2001:2:2:3::1/64

BB2 Config:
!
int Loopback 0
 ipv6 address 2001:2:2:0::1/64
!
int Loopback 1
 ipv6 address 2001:2:2:1::1/64
!
int Loopback 2
 ipv6 address 2001:2:2:2::1/64
!
int Loopback 3
 ipv6 address 2001:2:2:3::1/64
!

Task 3
Enable RIPng with the identifier 'CCIE' between SW2 and BB2. Ensure that SW2 advertises only one learned from BB2. All other RIPng devices should be able to reach more specific prefixes advertised by BB2.

SW2 Config:
!
interface Vlan208
 ip address 198.18.100.8 255.255.255.0
 ipv6 address 2001:0:0:D0::8/64
 ipv6 rip CCIE enable
!

BB2 Config:
!
interface FastEthernet0/0
 ip address 198.18.100.254 255.255.255.0
 speed 100
 full-duplex
 ipv6 address 2001:0:0:D0::FE/64
 ipv6 rip CCIE enable
 ipv6 rip CCIE summary-address 2001:2:2::/62
!
interface Loopback0
 no ip address
 ipv6 address 2001:2:2::1/64
 ipv6 rip CCIE enable
!
interface Loopback1
 no ip address
 ipv6 address 2001:2:2:1::1/64
 ipv6 rip CCIE enable
!
interface Loopback2
 no ip address
 ipv6 address 2001:2:2:2::1/64
 ipv6 rip CCIE enable
!
interface Loopback3
 no ip address
 ipv6 address 2001:2:2:3::1/64
 ipv6 rip CCIE enable
!

Verification:
Pic. 02 - Summary Prefix.

Pic. 03 - Ping Test.