Você está na página 1de 14

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

Tema:
Grupo :

TS Frame Relay

Rack2

Integrantes:

Luis Pallazhco Castro.


Mara A. Vaccaro.
Christhian Heredero Parrales.
Domingo Villegas.
Melina Mora Prez.
Jennifer Mora Loor.

Objetivo General :

Hallar los errores y Resolver los problemas en la Red propuesta.

TECNOLOGAS DE REDES WAN

1. Situacin inicial de la red

Figura 1.1 Topologa inicial de la red

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

Configuracin inicial del Router 1:


enable
configure terminal
hostname R1
enable secret class
no ip domain lookup
interface Loopback0
ip address 172.18.11.254 255.255.255.0
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto

TECNOLOGAS DE REDES WAN

interface Serial0/0/1
no ip address
shutdown
no fair-queue
clockrate 125000
interface Serial0/0/0
ip address 172.18.221.1 255.255.255.252
encapsulation frame-relay
frame-relay map ip 172.18.221.2 678 broadcast
no frame-relay inverse-arp
no shutdown
router eigrp 1
network 172.18.221.0
network 172.18.11.0
no auto-summary
line con 0 password
cisco logging
synchronous line
vty 0 4 password
cisco
login
end

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

Configuracin inicial del Router 2:


enable
configure terminal
hostname R2
enable secret class
no ip domain lookup
interface Loopback0
ip address 172.18.111.254 255.255.255.0
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto

TECNOLOGAS DE REDES WAN

interface Serial0/0/0
no ip address
shutdown
no fair-queue
interface Serial0/0/1
ip address 172.18.221.2 255.255.255.252
encapsulation frame-relay
frame-relay map ip 172.18.221.1 181
no frame-relay inverse-arp
frame-rellay lmi-type ansi
no shutdown
router eigrp 1
network 172.18.221.0
network 172.18.111.0
no auto-summary
line con 0 password
cisco logging
synchronous line
vty 0 4
login
end

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

Configuracin inicial del Switch FR:


enable
configure terminal
hostname FR-Switch
enable secret class
no ip domain lookup
frame-relay switching
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto

TECNOLOGAS DE REDES WAN

interface Serial0/0/0 no
ip address encapsulation
frame-relay no fair-queue
clock rate 125000
frame-relay intf-type dce
frame-relay route 182 interface Serial0/0/1 181
no shutdown
interface Serial0/0/1
no ip address
no fair-queue
clock rate 125000
encapsulation frame-relay
frame-relay intf-type dce
frame-relay route 181 interface Serial0/0/0
no shutdown
line con 0
password cisco
line vty 0 4
password cisco
login
end

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

Como podemos darnos cuenta en la red mostrada anteriormente, no hay conectividad entre los
equipos que estn presentes en la red, esto puede darse por muchos factores por ejemplo:

Puede que algunas interfaces no estn levantadas.


No estn configurado correctamente los DLCIs.
Problemas de Configuraciones Frame-Relay.
No estn habilitadas la interfaces seriales.
Poseen diferente mecanismo activo de revisin de los enlaces(LMI diferentes) , por lo
tanto no existe congruencia entre los dispositivos conectados.

2. Descripcin detallada del proceso empleado para determinar los


errores
Una vez descrita la situacin inicial procedemos a realizar los siguientes pasos para
la correcta detencin de los posibles errores
Realizamos la prueba de conectividad usando ping en cada uno de los
dispositivos de la red con lo que observamos que no haba conectividad entre
algunos
dispositivos
de
red.

TECNOLOGAS DE REDES WAN

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

ERROR 1: Descripcin
Despus de haber ejecutado el comando show runnning-config en R1. Nos
damos cuenta que no tiene configurado el DLCI indicado segn la topologa de
la Figura 1.1

TECNOLOGAS DE REDES WAN

R1#show running-config

ERROR 1: Solucin
En R1 ejecutamos los siguientes
comandos:
R1(config)#interface serial0/2/0
R1(config-if)#no frame-relay map ip 172.18.221.2 678 broadcast
R1(config-if)#frame-relay map ip 172.18.221.2 182 broadcast ietf

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

ERROR 2: Descripcin
Despus de haber ejecutado el comando show ip interface brief en R2,
verificamos si alguna interfaz no est levantada, nos damos cuenta que la serial
0/1 no est habilitada.

ERROR 2: Solucin
En R2 ejecutamos los siguientes comandos:
R2(config)#interface serial0/1
R2(config-if)#no shutdown

TECNOLOGAS DE REDES WAN

ERROR 3: Descripcin
Despus de haber ejecutado el comando show runnning-config en R2, nos
damos cuenta que en la serial 0/1 , no tiene habilitado dicho enlace serial.

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

ERROR 3: Solucin
En R2 ejecutamos los
comandos:
R2(config)#interface serial0/1
R2(config-if)#no shutdown

siguientes

TECNOLOGAS DE REDES WAN

ERROR 4: Descripcin
Despus de haber ejecutado el comando show runnning-config R2, nos damos
cuenta que no presenta el mtodo de encapsulacin IETF, por lo cual no se
puede asegurar que sea una red homognea.
R2#show running-config

ERROR 4: Solucin
En R2 ejecutamos los siguientes
comandos:
R2(config)#interface serial0/1
R2(config-if)#no frame-relay map ip 172.18.221.1 181
R2(config-if)# frame-relay map ip 172.18.221.1 181 broadcast ietf

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

ERROR 5: Descripcin
Despus de haber ejecutado el comando show runnning-config en el switch
frame-relay,
nos damos queno tiene un extremo del circuito virtual
configurado.
FR-Switch #show running-config

ERROR 5: Solucin
En FR-Switch ejecutamos los siguientes
comandos:
FR-Switch (config)#interface serial0/2/1
FR-Switch (config-if)#frame-relay route 181 interface serial0/2/0 182

3. Situacin final de la red

TECNOLOGAS DE REDES WAN

Configuracin inicial del Router R2:


R2#show running-config
Building configuration...
Current configuration : 1075 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname R2
!
enable secret 5 $1$sxTb$czljJY8kgzHuN/7gbi/V10
!
ip subnet-zero
!
!
no ip domain-lookup
!

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

TECNOLOGAS DE REDES WAN

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

!
!
fax interface-type fax-mail
mta receive maximum-recipients 0
!
!
interface Loopback0
ip address 172.18.111.254 255.255.255.0
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0
no ip address
shutdown
no fair-queue
!
interface Serial0/1
ip address 172.18.221.2 255.255.255.252
encapsulation frame-relay
frame-relay map ip 172.18.221.1 181 broadcast IETF
frame-relay map ip 172.18.221.2 181
no frame-relay inverse-arp
frame-relay lmi-type cisco
!
router eigrp 1
network 172.18.111.0 0.0.0.255
network 172.18.221.0 0.0.0.3
no auto-summary
no eigrp log-neighbor-changes
!
ip classless
ip http server
ip pim bidir-enable
!
!
call rsvp-sync
!
!
mgcp profile default
!
dial-peer cor custom
!
!
line con 0
password cisco
logging synchronous

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

line aux 0
line vty 0 4
login
!
!
end
R2#

Configuracin final del Router R1:

TECNOLOGAS DE REDES WAN

R1#show running-config
Building configuration...
Current configuration : 1075 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname R1
!
enable secret 5 $1$sxTb$czljJY8kgzHuN/7gbi/V10
!
ip subnet-zero
!
!
no ip domain-lookup
!
ip subnet-zero
!
!
no ip domain-lookup
!
interface Loopback0
ip address 172.18.11.254 255.255.255.0
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

shutdown
duplex auto
speed auto
!

TECNOLOGAS DE REDES WAN

interface Serial0/2/1
no ip address
shutdown
no fair-queue
no clock rate 125000
!
interface Serial0/2/0
ip address 172.18.221.1 255.255.255.252
encapsulation frame-relay
frame-relay map ip 172.18.221.2 182 broadcast ietf
frame-relay map ip 172.18.221.1 182
no frame-relay inverse-arp
no shutdown
router eigrp 1
network 172.18.221.0 0.0.0.3
network 172.18.11.0 0.0.0.255
no auto-summary
!
!
line con 0 password
cisco logging
synchronous
!
line vty 0 4
password cisco
login
!
!
end
R1#

Configuracin final del FR-Switch:


FR-Switch#sh run
Building configuration...
Current configuration : 1005 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname FR-Switch

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

TECNOLOGAS DE REDES WAN

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$1nog$WIQh4muhTI4xD.lZQF3VA.
!
no aaa new-model
!
resource policy
!
ip subnet-zero
!
!
ip cef
!
!
no ip domain lookup
frame-relay switching
!
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/2/0 no
ip address encapsulation
frame-relay no fair-queue
clock rate 125000
frame-relay intf-type dce
frame-relay route 182 interface Serial0/2/1 181
!
interface Serial0/2/1 no
ip address encapsulation
frame-relay clock rate
125000
frame-relay intf-type dce
frame-relay route 181 interface Serial0/2/0 182
!
ip classless
!
ip http server

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

ESCUELA SUPERIOR POLITCNICA DEL LITORAL

TECNOLOGAS DE REDES WAN

!
!
control-plane
!
!
line con 0
password cisco
line aux 0
line vty 0 4
password cisco
login
!
scheduler allocate 20000 1000
!
end

Facultad de Ingeniera en Electricidad y Computacin

Paralelo 1

Você também pode gostar