Lab 8: Frame Relay - NetwaxLab

Breaking

Facebook Popup

BANNER 728X90

Saturday, January 3, 2015

Lab 8: Frame Relay


Task

Topology

  1. Configure Frame-Relay DLCI on frame-relay switch as per given in topology.
  2. Configure IP Addresses as per given in topology. Make sure R1 to R2 used point to point link in frame-relay encapsulations.
  3. Make Sure R3 and R4 not assigned DLCI Dynamically. 
  4. Configure EIGRP over this scenario.
  5. Make sure R3 loopback and R4 loopback addresses are ping each other. (You are not allowed to disable EIGRP split horizon)

Solution

Task 2: Configure IP Addresses as per given in topology. Make sure R1 to R2 used point to point link in frame-relay encapsulations.

On R1
=====

interface Serial0/0
 no ip address
 encapsulation frame-relay IETF
 no shut
 exit

interface Serial0/0.2 point-to-point
 ip address 10.0.12.1 255.255.255.0
 frame-relay interface-dlci 102
 no shut
 exit

interface Serial0/0.3 multipoint
 ip address 10.0.134.1 255.255.255.0
 frame-relay map ip 10.0.134.4 104 broadcast
 frame-relay map ip 10.0.134.3 103 broadcast
 no shut
 exit

On R2
=====

interface Loopback1
 ip address 2.2.1.1 255.255.255.0

interface Loopback2
 ip address 2.2.2.1 255.255.255.0

interface Loopback3
 ip address 2.2.3.1 255.255.255.0

interface Loopback4
 ip address 2.2.4.1 255.255.255.0

interface Serial0/0
 ip address 10.0.12.2 255.255.255.0
 encapsulation frame-relay
 frame-relay interface-dlci 201
 no shut
 exit


On R3
=====

interface Loopback1
 ip address 3.3.1.1 255.255.255.0

interface Loopback2
 ip address 3.3.2.1 255.255.255.0

interface Loopback3
 ip address 3.3.3.1 255.255.255.0

interface Loopback4
 ip address 3.3.4.1 255.255.255.0

interface Serial0/0
 ip address 10.0.134.3 255.255.255.0
 encapsulation frame-relay
 frame-relay map ip 10.0.134.1 301 broadcast

On R4
=====

interface Loopback1
 ip address 4.4.1.1 255.255.255.0

interface Loopback2
 ip address 4.4.2.1 255.255.255.0

interface Loopback3
 ip address 4.4.3.1 255.255.255.0

interface Loopback4
 ip address 4.4.4.1 255.255.255.0

interface Serial0/0
 ip address 10.0.134.4 255.255.255.0
 encapsulation frame-relay
 frame-relay map ip 10.0.134.1 401 broadcast

 
Task 3: Make Sure R3 and R4 not assigned DLCI Dynamiclly.

On R3
=====

interface serial0/0
 no frame-relay inverse-arp
 exit

On R4
=====

interface serial0/0
 no frame-relay inverse-arp
 exit

 
Task 4: Configure Eigrp over this senerio.

On R1
=====

router eigrp 100
 network 10.0.12.0 0.0.0.255
 network 10.0.134.0 0.0.0.255
 no auto-summary


On R2
=====

router eigrp 100
 network 2.2.1.0 0.0.0.255
 network 2.2.2.0 0.0.0.255
 network 2.2.3.0 0.0.0.255
 network 2.2.4.0 0.0.0.255
 network 10.0.12.0 0.0.0.255
 no auto-summary

On R3
=====

router eigrp 100
 network 3.3.1.0 0.0.0.255
 network 3.3.2.0 0.0.0.255
 network 3.3.3.0 0.0.0.255
 network 3.3.4.0 0.0.0.255
 network 10.0.134.0 0.0.0.255
 no auto-summary

On R4
=====

router eigrp 100
 network 4.4.1.0 0.0.0.255
 network 4.4.2.0 0.0.0.255
 network 4.4.3.0 0.0.0.255
 network 4.4.4.0 0.0.0.255
 network 10.0.134.0 0.0.0.255
 no auto-summary

Task 5: Make sure R3 loopback and R4 loopback addressess are ping each other. (You are not allowed to disable eigrp split horizon)

On R3
=====

interface serial0/0
 frame-relay map ip 10.0.134.4 304 broadcast
 exit

On R4
=====

interface serial0/0
 frame-relay map ip 10.0.134.3 403 broadcast
 exit

No comments:

Post a Comment