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
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.
c3640-jk9s-mz.124-16.bin

You need to register to download the GNS3 Topology File. (Registration is Free!)
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
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
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?
Hi Bob,
You are completely right, the DLCI numbers have to be same.
I just changed it.
Thanks!
Rene
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
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
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
!
Good Challenging task!!!