Monday, October 22, 2012

Lab 202 - OSPFv3 in NBMA Networks

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
Configure manual IPv6 addresses on Frame-Relay connections between R3, R4, and R6. IPv6 global addresses should reflect the topology diagram. Host portion of the address should be ::X. For link-local addresses use: FE80::X. In both cases 'X' is the router's number (3, 4, and 6).

Task 2
Enable OSPFv6 area 0 between the routers mentioned in Task 1 using the default OSPF mode. OSPF router's IDs should be as follows:
  • R3 - 3.3.3.3
  • R4 - 4.4.4.4
  • R6 - 6.6.6.6 
Task 3
Advertise into OSPF the following Loopback addresses:
  • R3 - FC00:A:A:A::3/128
  • R4 - FC00:A:A:A::4/128
  • R6 - FC00:A:A:A::3/128
Solution

Task 1
Configure manual IPv6 addresses on Frame-Relay connections between R3R4, and R6. IPv6 global addresses should reflect the topology diagram. Host portion of the address should be ::X. For link-local addresses use: FE80::X. In both cases 'X' is the router's number (3, 4, and 6).

R3 Config:

!
interface Serial0/1
 encapsulation frame-relay
 ipv6 address FE80::3 link-local
 ipv6 address FC00::3/64
 ipv6 ospf neighbor FE80::6
 ipv6 ospf neighbor FE80::4
 clock rate 2000000
 frame-relay map ipv6 FC00::4 314
 frame-relay map ipv6 FC00::6 316
 frame-relay map ipv6 FE80::6 316
 frame-relay map ipv6 FE80::4 314
 no frame-relay inverse-arp
!


R4 Config:

!
interface Serial0/0
 encapsulation frame-relay
 ipv6 address FE80::4 link-local
 ipv6 address FC00::4/64
 ipv6 ospf priority 0
 clock rate 2000000
 frame-relay map ipv6 FE80::6 413
 frame-relay map ipv6 FE80::3 413
 frame-relay map ipv6 FC00::6 413
 frame-relay map ipv6 FC00::3 413
 no frame-relay inverse-arp
!


R6 Config:

!
interface Serial0/0
 encapsulation frame-relay
 ipv6 address FE80::6 link-local
 ipv6 address FC00::6/64
 ipv6 ospf priority 0
 clock rate 2000000
 frame-relay map ipv6 FE80::4 613
 frame-relay map ipv6 FE80::3 613
 frame-relay map ipv6 FC00::4 613
 frame-relay map ipv6 FC00::3 613
 no frame-relay inverse-arp
!

Task 2
Enable OSPFv6 area 0 between the routers mentioned in Task 1 using the default OSPF mode. OSPF router's IDs should be as follows:
  • R3 - 3.3.3.3
  • R4 - 4.4.4.4
  • R6 - 6.6.6.6 
R3 Config:
!
ipv6 unicast-routing
!
ipv6 router ospf 1
 router-id 3.3.3.3
!
interface Serial0/1
 ipv6 ospf neighbor FE80::6
 ipv6 ospf neighbor FE80::4
 ipv6 ospf 1 area 0


R4 Config:
!
ipv6 unicast-routing
!
ipv6 router ospf 1
 router-id 4.4.4.4
!
interface Serial0/0
 ipv6 ospf 1 area 0
 ipv6 ospf priority 0
!

R6 Config:
!
ipv6 unicast-routing
!
ipv6 router ospf 1
 router-id 6.6.6.6
!
interface Serial0/0
 ipv6 ospf 1 area 0
 ipv6 ospf priority 0
!

Verification:

Pic.2 - R3's OSPFv3 Neighbors.


Task 3
Advertise into OSPF the following Loopback addresses:
  • R3 - FC00:A:A:A::3/128
  • R4 - FC00:A:A:A::4/128
  • R6 - FC00:A:A:A::3/128
R3 Config:
!
interface Loopback0
 ipv6 address FC00:A:A:A::3/128
 ipv6 ospf 1 area 0
!

R4 Config:
!
interface Loopback0
 ipv6 address FC00:A:A:A::4/128
 ipv6 ospf 1 area 0
!

R6 Config:
!
interface Loopback0
 ipv6 address FC00:A:A:A::6/128
 ipv6 ospf 1 area 0
!

Verification:

Pic. 3 - Ping Test.