Wednesday, December 13, 2017

Configuring Frame Relay in Cisco Devices (Example 1)


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


                                               ***Cloud***

 

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 .pkt file.

No comments:

Post a Comment