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:
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