Basic Frame Relay Point-to-Point Configuration

  • February 12, 2012
AS you know Frame-Relay is a well-known WAN technology that generally used for backbone routers. To understand the basic configuration of Frame-Relay, there is a configuration below with three Cisco 3600 Series Router and one Frame-Relay Switch. First of all, we will start with Frame-Relay Switch. On GNS3 create a Frame-Relay Switch and right click the Frame-Relay Switch. Configure the DLCI – port mapping like below:
1:101 10:202
 
1:102 11:203
After mapping, connect the routers to the Frame-Relay Switch port mentioned in the mapping via serial connection. ( R1 to port 1, R2 to port 10, R3 to port 11)
It is time to configure our routers. Starting with the R1 make the below configuration. Here, the Hub Router is R1. R1 Configuration
R1(config)# no logging console
R1 (config)# int s 0/0
R1 (config-if)# no shut
R1 (config-if)# encapsulation frame-relay
R1 (config-if)# interface s0/0.1 point-to-point
R1 (config-subif)# ip address 192.168.100.1 255.255.255.252
R1 (config-subif)# frame-relay interface-dlci 101
R1 (config-fr-dlci)# exit
R1 (config-subif)# interface s0/0.2 point-to-point
R1 (config-subif)# ip address 192.168.100.5 255.255.255.252
R1 (config-subif)# frame-relay interface-dlci 102
R1 (config-fr-dlci)# exit
R1 (config-subif)# write
Now, configure the R2 for Frame-Relay. Here you can get help from “show frame-relay pvc” command. R2 Configuration
R2 (config)# no logging console
R2 (config)# int s 0/0
R2 (config-if)# no shut
R2 (config-if)# encapsulation frame-relay
R2 (config-if)# interface serial 0/0.1 point-to-point
R2 (config-subif)# ip address 192.168.100.2 255.255.255.252

[sc name=”ContentRMessage”] You can reach the other Frame-Relay articles below: Basic Frame-Relay Configuration with both Inverse-ARP and Frame-Relay Map Command Basic Point-to-Point Frame-Relay Configuration Basic Multipoint Frame-Relay Configuration  

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

SFP

SFP (Small Form-factor Pluggable) is a hot-pluggable network interface module used in the network devices of today’s computer networks. In...
CCNP ENCOR 350-401 Exam is the required exam for CCNP ENCOR (Implementing Cisco Enterprise Network Core Technologies) or CCIE Enterprise...
Networking Certifications has served as a stepping stone for those seeking to advance their careers in Networking, h they are...
In this article, we will focus on File Transfer Protocol (FTP), FTP Ports and FTP Modes. We will firstly learn...