0% found this document useful (0 votes)
231 views4 pages

Configuracion gns3

The document describes the configuration of a frame relay network connecting four routers - Bogota, Medellin, Bucaramanga and Cali. It configures frame relay switching on the Bogota router to connect the remote sites with DLCI assignments. It also sets up OSPF routing between the routers to enable communication over the frame relay network. Hosts are configured in each location for connectivity over the frame relay network.

Uploaded by

Gabriel Alarcon
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
231 views4 pages

Configuracion gns3

The document describes the configuration of a frame relay network connecting four routers - Bogota, Medellin, Bucaramanga and Cali. It configures frame relay switching on the Bogota router to connect the remote sites with DLCI assignments. It also sets up OSPF routing between the routers to enable communication over the frame relay network. Hosts are configured in each location for connectivity over the frame relay network.

Uploaded by

Gabriel Alarcon
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

switch frame relay

config t
frame-relay switching //se comporte como un switch frame relay
interface serial 0/0
encapsulation frame-relay
frame-relay lmi-type cisco // que se trabajara sobre el frame relay de cisco
frame-relay intf-type dce // esto solo va en el switch frame relay cable hembra
frame-relay route 101 interface serial 0/1 102
frame-relay route 111 interface serial 0/3 112
frame-relay route 121 interface serial 0/2 122
no shutdown
exit

interface serial 0/1


encapsulation frame-relay cisco
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 102 interface serial 0/0 101
no shutdown
exit

interface serial 0/3


encapsulation frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 112 interface serial 0/0 111
no shutdown
exit

interface serial 0/2


encapsulation frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
frame-relay route 122 interface serial 0/0 121
no shutdown
end
wr

///////////////////////////////////////////////////////////
Router bogota (central)

config t
interface f0/0
ip address 192.168.1.1 255.255.255.0
no shut
exit

interface s0/0
encapsulation frame-relay
router ospf 3
network 10.0.0.0 0.0.0.3 area 0
network 11.0.0.0 0.0.0.3 area 0
network 12.0.0.0 0.0.0.3 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 192.168.3.0 0.0.0.255 area 0
network 192.168.4.0 0.0.0.255 area 0
no shutdown
exit

interface s0/0.101 point-to-point


ip address 10.0.0.1 255.255.255.252
frame-relay interface-dlci 101
exit
exit

interface s0/0.111 point-to-point


ip address 11.0.0.1 255.255.255.252
frame-relay interface-dlci 111
exit
exit

interface s0/0.121 point-to-point


ip address 10.0.0.2 255.255.255.252
frame-relay interface-dlci 102
exit
exit
///////////////////////////////////////////////////////////
Router medellin
interface f0/0
ip address 192.168.2.1 255.255.255.0
no shut
exit

interface s0/0
encapsulation frame-relay
router ospf 3
network 10.0.0.0 0.0.0.3 area 0
network 11.0.0.0 0.0.0.3 area 0
network 12.0.0.0 0.0.0.3 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 192.168.3.0 0.0.0.255 area 0
network 192.168.4.0 0.0.0.255 area 0
no shutdown
exit

interface s0/0.102 point-to-point


ip address 10.0.0.2 255.255.255.252
frame-relay interface-dlci 102
exit
exit

//////////////////////////////////////////////////////////
Router bucaramanga

config t
interface f0/0
ip address 192.168.3.1 255.255.255.0
no shut
exit

interface s0/0
encapsulation frame-relay
router ospf 3
network 10.0.0.0 0.0.0.3 area 0
network 11.0.0.0 0.0.0.3 area 0
network 12.0.0.0 0.0.0.3 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 192.168.3.0 0.0.0.255 area 0
network 192.168.4.0 0.0.0.255 area 0
no shutdown
exit

interface s0/0.112 point-to-point


ip address 11.0.0.2 255.255.255.252
frame-relay interface-dlci 112
exit
exit

//////////////////////////////////////////////////////////
Router cali
interface f0/0
ip address 192.168.4.1 255.255.255.0
no shut
exit

interface s0/0
encapsulation frame-relay
router ospf 3
network 10.0.0.0 0.0.0.3 area 0
network 11.0.0.0 0.0.0.3 area 0
network 12.0.0.0 0.0.0.3 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 192.168.3.0 0.0.0.255 area 0
network 192.168.4.0 0.0.0.255 area 0
no shutdown
exit

interface s0/0.122 point-to-point


ip address 12.0.0.2 255.255.255.252
frame-relay interface-dlci 112
exit
exit

host servidor bogota

ip 192.168.1.2 255.255.255.0

host medellin

ip 192.168.2.2 255.255.255.0

host bucaramanga
ip 192.168.3.2 255.255.255.0

host cali

ip 192.168.4.2 255.255.255.0

You might also like