Master CCNA

How to Master CCNA Ebook

 

 

My book will help you Master CCNA

Master CCNP SWITCH

How to master CCNP SWITCH ebook

 

 

My book will help you Master CCNP SWITCH

Master CCNP ROUTE

How to master CCNP ROUTE Ebook

 

 

My book will help you Master CCNP ROUTE

Print

Frame-Relay Back to Back

Written by Rene Molenaar on . Posted in Frame Relay

Scenario

You are working for a huge international car company as the senior network engineer. You need to connect a new branch office to the Headquarters. Since the company believes in proven technology they want you to connect the 2 sites by using Frame-Relay without a Frame-Relay switch.

Goal:

  • You are not allowed to use the 'Frame-Relay Switching' command on any router.
  • Configure Frame-Relay encapsulation on both Routers.
  • Configure the IP addresses as specified in the topology picture.
  • Use the DLCI numbers as specified in the topology picture.
  • Achieve IP connectivity across the frame-relay link.

IOS:

c3640-jk9s-mz.124-16.bin

Topology:

Frame-Relay Back to Back

Video Solution:

You need to a flashplayer enabled browser to view this YouTube video

 You need to register to download the GNS3 Topology File. (Registration is Free!)

Only registered users can write comments!

Comments (8)

  • avatar
    Kader

    Hi

    If we are connecting Point-to-Point connection and enable the encapsulation as FR and in this case what is the use DLCI.Please explain

    Thanks
    KD

  • avatar
    ReneMolenaar

    Good question!

    Keep in mind the DLCI is a layer 2 identifier for frame-relay, just like a MAC address is for Ethernet.

    Frame-relay needs to map IP addresses (layer3) to a DLCI (layer2), and you are unable to use an empty value for DLCI. The DLCI's make up the 'logical link' aka the PVC.

    You also don't send Ethernet frames on a LAN with empty mac addresses, even if it's p2p. If you want to get funky you could create multiple PVC's over this single physical p2p link...

    Kind Regards,

    Rene


  • avatar
    frogger79

    Maybe I'm wrong but the lab says to use the DLCI numbers specified (102 and 201) but in a back to back frame relay connection, don't the DLCI numbers need to be the same?

    I tried this out and could only get it to work when the DLCI numbers were the same. Am I missing something?

  • avatar
    ReneMolenaar

    Hi Bob,

    You are completely right, the DLCI numbers have to be same.

    I just changed it.

    Thanks!

    Rene

  • avatar
    talaltk

    interface Serial0/0
    no ip address
    encapsulation frame-relay
    no keepalive
    serial restart-delay 0
    !
    interface Serial0/0.1 point-to-point
    ip address 192.168.12.2 255.255.255.252
    frame-relay interface-dlci 102

  • avatar
    talaltk

    Bumblebee

    interface Serial0/0
    no ip address
    encapsulation frame-relay
    no keepalive
    serial restart-delay 0
    !
    interface Serial0/0.1 point-to-point
    ip address 192.168.12.1 255.255.255.252
    frame-relay interface-dlci 102

  • avatar
    francois van abkoude

    bumblebee#
    interface Serial0/0
    ip address 192.168.12.1 255.255.255.252
    encapsulation frame-relay
    no keepalive
    serial restart-delay 0
    frame-relay map ip 192.168.12.2 102
    frame-relay interface-dlci 102
    no frame-relay inverse-arp
    !
    ironhide#
    interface Serial0/0
    ip address 192.168.12.2 255.255.255.252
    encapsulation frame-relay
    no keepalive
    serial restart-delay 0
    frame-relay map ip 192.168.12.1 102
    frame-relay interface-dlci 102
    no frame-relay inverse-arp
    !

  • avatar
    stemrikar

    Good Challenging task!!!