Tuesday, September 18, 2012

Lab 187 - IPv6 On Frame-Relay Links

Prerequisites: CCNP level skills.

Topology


Pic2. Layer3 Topology Diagram.

Click the picture to enlarge it.

Task 1
You plan on using IPv6 in your network. As an experiment, you want to enable dual stack on Frame-Relay enabled links between R1, and R2 which will support RIPng protocol. Below are the addresses you should use:

R1 Serial0/0:
link local address = FE80::1
Globally aggregatable address: 2001:0:0:123::1/64

R2 Serial0/0:
link local address = FE80::2
Globally aggregatable address: 2001:0:0:123::2/64


Task 2
Ensure basic layer 3 connectivity and make sure that RIPng will be able to exchange updates using Frame-Relay interfaces.


Solution

R1 Config:
!
ipv6 unicast-routing
!
interface Serial0/0
 ip address 172.16.123.1 255.255.255.0
 encapsulation frame-relay
 ipv6 address FE80::1 link-local
 ipv6 address 2001:0:0:123::1/64
 clock rate 2000000
 frame-relay map ipv6 FE80::2 102 broadcast
 frame-relay map ipv6 2001:0:0:123::2 102
 frame-relay map ip 172.16.123.2 102 broadcast
 no frame-relay inverse-arp
!


R2 Config:
!
ipv6 unicast-routing
!
interface Serial0/0
 ip address 172.16.123.2 255.255.255.0
 encapsulation frame-relay
 ipv6 address FE80::2 link-local
 ipv6 address 2001:0:0:123::2/64
 clock rate 2000000
 frame-relay map ipv6 FE80::1 201 broadcast
 frame-relay map ipv6 2001:0:0:123::1 201
 frame-relay map ip 172.16.123.1 201 broadcast
 frame-relay map ip 172.16.123.2 201
 frame-relay map ip 172.16.123.3 203 broadcast
 no frame-relay inverse-arp

!