The most viewed items
The example of how to configure the Frame Relay in Cisco Networking Devices is shown in the below with the picture together. I hope this example will be benefit for brothers and sisters who are learning Cisco Networking.
Router1
en
config t
hostname Router1
int s0/0/0
encap frame-relay
no shut
exit
int s0/0/0.102 point-to-point
description Link From Router1 to Router2
ip address 223.200.100.5 255.255.255.252
frame-relay interface-dlci 102
no shut
exit
int s0/0/0.103 point-to-point
description Link From Router1 to Router3
ip address 223.200.100.9 255.255.255.252
frame-relay interface-dlci 103
no shut
exit
router rip
version 2
network 223.200.100.4
network 223.200.100.8
end
copy run start
Router2
en
config t
hostname Router2
int s0/0/0
description Link from Router2 to Router1
ip address 223.200.100.6 255.255.255.252
encap frame-relay
frame-relay lmi-type cisco
frame-relay interface-dlci 202
no shut
exit
router rip
version 2
network 223.200.100.4
network 223.200.100.8
end
copy run start
Router3
en
config t
hostname Router3
int s0/0/0
description Link from Router3 to Router1
ip address 223.200.100.10 255.255.255.252
encap frame-relay
frame-relay lmi-type cisco
frame-relay interface-dlci 303
no shut
exit
router rip
version 2
network 223.200.100.4
network 223.200.100.8
end
copy run start
You can see how to configure frame relay in cloud. We will set dlci number in each serial port and link to corresponding routers.
If you want to do testing in Cisco packet tracer, please click here to download packet tracer file.