Configuración básica de Frame Relay
Configurar la encapsulación Frame Relay en enlaces seriales a través de la red que se muestra en el diagrama de topología. También se aprenderá a configurar un router como switch Frame Relay. Existen estándares tanto de Cisco como abiertos que se aplican a Frame Relay. Se aprenderán ambos. Se debe prestar especial atención a la sección de práctica de laboratorio en donde se deben interrumpir intencionalmente las configuraciones Frame Relay. Esto ayudará en la práctica de laboratorio de resolución de problemas relacionada con este capítulo.
Desarrollo
- Encapsulación Frame Relay en todas las interfaces seriales
- Configurar un router como switch Frame Relay
- Intefaces seriales de PPP - HDLC
- Comandos show frame-relay
- Efectos del comando debug frame-relay lmi
- Interrumpir intencionalmente y restaurar un enlace Frame Relay
- Cambiar el tipo de encapsulación Frame Relay del tipo por defecto de Cisco a IETF
- Cambiar el tipo de LMI Frame Relay de Cisco a ANSI
- Configurar una subinterfaz Frame Relay
Realizar la topología en Cisco Packet Tracer
Configuración de los Hosts
DISPOSITVOS
|
INTERFAZ
|
DIRECCION
IP
|
MASCARA
DE SUBRED
|
GATEWAY
POR DEFECTO
|
R1
|
Fa 0/0
|
192.168.10.1
|
255.255.255.0
|
N/C
|
S 0/0/0
|
10.1.1.1
|
255.255.255.255
|
N/C
|
|
R2
|
S/0/0/1
|
10.1.1.2
|
255.255.255.0
|
N/C
|
Lo 0
|
209.165.200.225
|
255.255.255.255
|
N/C
|
|
S1
|
VLAN1
|
192.168.10.2
|
255.255.255.0
|
192.168.10.1
|
PC1
|
NIC
|
192.168.10.10
|
255.255.255.0
|
192.168.10.1
|
Configuración de Enrrutamiento con Protocolo Rip
Paso 1: Conexión de la red
Paso 2: Borrar todas las configuraciones de los routers
!--- Comando para eliminar la configuración
Router#erase startup-config
Paso3: Recarga la configuración
Nota: Realizar los pasos anteriores en ambos reouters (Router 1 y Router 2)
!--- Al recargar no guardar la configuracion
Router# reload
System configuration has been modified. Save? [yes/no]: no
Proceed with reload? [confirm]
Configuración EIGRP router1 y router2 para todas las redes
!--- Configuración router 1
enable
configure terminal
no ip domain-lookup
enable secret class
banner motd ^CUnauthorized access strictly prohibited, violators
will be prosecuted to the full extent of the law^C
!
line console 0
logging synchronous
password cisco
login
!
line vty 0 4
password cisco
login
end
copy running-config startup-config
!--- Configuración router 2
enable
configure terminal
no ip domain-lookup
enable secret class
banner motd ^CUnauthorized access strictly prohibited, violators
will be prosecuted to the full extent of the law^C
!
line console 0
logging synchronous
password cisco
login
!
line vty 0 4
password cisco
login
end
copy running-config startup-config
!--- Configuración router 1
interface serial 0/0/1
ip address 10.1.1.1 255.255.255.252
shutdown
!---Las interfaces seriales deberían permanecer desactivadas hasta que
!---se configure el switch Frame Relay
interface fastethernet 0/0
ip address 192.168.10.1 255.255.255.0
no shutdown
router eigrp 1
no auto-summary
network 10.0.0.0
network 192.168.10.0
!--- Configuración router 2
interface serial 0/0/1
ip address 10.1.1.2 255.255.255.252
shutdown
!---Las interfaces seriales deberían permanecer desactivadas hasta que
!---se configure el switch Frame Relay
interface loopback 0
ip address 209.165.200.225 255.255.255.224
router eigrp 1
no auto-summary
network 10.0.0.0
network 209.165.200.0
Configuración Frame Relay
Paso 1: Configurar el switch FR como switch Frame Relay y crear un PVC entre R1 y R2
!--- Activación de conmutación Frame Relay en forma global en el router
FR-Switch(config)#frame-relay switching
!---Cambio de tipo de encapsulación de la interfaz a Frame Relay
FR-Switch(config)#interface serial 0/0/0
FR-Switch(config)#clock rate 64000
FR-Switch(config-if)#encapsulation frame-relay
!--- Cambio tipo de interfaz a DCE
FR-Switch(config-if)#frame-relay intf-type dce
NOTA: Los tipos de interfaz Frame Relay no tienen que coincidir con el tipo de la interfaz física
subyacente. Una interfaz serial DTE física puede funcionar como una interfaz DCE Frame Relay
y una interfaz DCE física puede funcionar como una interfaz DTE Frame Relay lógica.
!--- Configuración router para envío tráfico entrante en interfaz serial 0/0/0 con DLCI 102 a serial 0/0/1 con un DLCI saliente de 201.
FR-Switch(config-if)#frame-relay route 102 interface serial 0/0/1 201
FR-Switch(config-if)#no shutdown
!--- Configuración crear dos PVC: R1 a R2 (DLCI 102)-R2 a R1 (DLCI 201)
FR-Switch(config-if)#interface serial 0/0/1
FR-Switch(config)#clock rate 64000
FR-Switch(config-if)#encapsulation frame-relay
FR-Switch(config-if)#frame-relay intf-type dce
FR-Switch(config-if)#frame-relay route 201 interface serial 0/0/0 102
FR-Switch(config-if)#no shutdown
FR-Switch#show frame-relay pvc
Paso 2: Configurar R1 para Frame Relay.
!---Router 1 R1(config)#interface serial 0/0/1
R1(config-if)#encapsulation frame-relay
R1(config-if)#no frame-relay inverse-arp
R1(config-if)#frame-relay map ip 10.1.1.2 102 broadcast
R1(config-if)#no shutdown
Paso 3: Configurar R2 para Frame Relay.
!---Router 2 R2(config)#interface serial 0/0/1
R2(config-if)#encapsulation frame-relay
R2(config-if)#no frame-relay inverse-arp
R2(config-if)#frame-relay map ip 10.1.1.1 201 broadcast
R2(config-if)#no shutdown
Verificar la configuración.
Paso 1: Hacer ping a R1 y R2.
!--- Router 1
R1#ping 10.2.2.2
!--- Router 2
R2#ping 10.1.1.1
Paso 2: Obtener información del PVC
!--- Router 1
R1#show frame-relay pvc
!--- Router 2
R2#show frame-relay pvc
!--- Switch FR
FR-Switch#show frame-relay pvc
Paso 3: Verificar las asignaciones Frame Relay
!--- Router 1
R1#show frame-relay map
!--- Router 2
R2#show frame-relay map
!--- Ejecución comando debug frame-relay lmi
!--- Router 1
R1#debug frame-relay lmi
R1#undebug all
Resolución de problemas de Frame Relay
Paso 1: Eliminar la asignación de tramas de R1
!--- Router 1
R1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#interface serial0/0/1
R1(config-if)#encapsulation frame-relay
R1(config-if)#no frame-relay map ip 10.1.1.2 102 broadcast>
!--- Router 2
R2#ping 10.1.1.1
!---Ejecución comando debug ip icmp en R1
!--- Router 1
R1#debug ip icmp
!--- Router 2
R2#ping 10.1.1.1
!---Desactiva depuración comando undebug all y vuelva a aplicar el comando framerelay map ip, pero sin usar la palabra clave broadcast
!--- Router 1
R1#undebug all
R1#configure terminal
R1(config)#interface serial0/0/1
R1(config-if)#encapsulation frame-relay
R1(config-if)#frame-relay map ip 10.1.1.2 102
!--- Router 2
R2#ping 10.1.1.1
!---Reemplazo sentencia de asignación Frame Relay
!--- Router 1
R1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#interface serial0/0/1
R1(config-if)#encapsulation frame-relay
R1(config-if)#frame-relay map ip 10.1.1.2 102 broadcast
R1#show ip route
Paso 2: Cambiar el tipo de encapsulación Frame Relay
!--- Router 2
R2(config-if)#encapsulation frame-relay ietf
Paso 3: Cambiar el tipo de LMI.
!--- Router 2
R2#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#interface serial 0/0/1
R2(config-if)#encapsulation frame-relay
R2(config-if)#frame-relay lmi-type ansi
R2(config-if)#^Z
R2#copy run start
R2#show interface serial 0/0/1
R2#show frame-relay lmi
R2#debug frame-relay lmi
R2(config-if)#frame-relay lmi-type cisco
Configurar una subinterfaz Frame Relay
Paso 1: En el switch FR, crear un nuevo PVC entre R1 y R2.
!--- FR-Switch
FR-Switch(config)#interface serial 0/0/0
FR-Switch(config-if)#frame-relay route 112 interface serial 0/0/1 212
FR-Switch(config-if)#interface serial 0/0/1
FR-Switch(config-if)#frame-relay route 212 interface serial 0/0/0 112
Paso 2: Crear y configurar una subinterfaz punto a punto en R1.
!--- Router 1
R1(config)#interface serial 0/0/1.112 point-to-point
R1(config-subif)#ip address 10.1.1.5 255.255.255.252
R1(config-subif)#frame-relay interface-dlci 112
Paso 3: Crear y configurar una subinterfaz punto a punto en R2.
!--- Router 2
R2(config)#interface serial 0/0/1.212 point-to-point
R2(config-subif)#ip address 10.1.1.6 255.255.255.252
R2(config-subif)#frame-relay interface-dlci 212
Paso 4: Verificar la conectividad.
!--- Router 1
R1#ping 10.1.1.6
!--- Router 2
R2#ping 10.1.1.5
!--- Router 1
R1#show frame-relay pvc
R1#show frame-relay map
!--- Router 2
R2#show frame-relay pvc
R2#show frame-relay map
!--- FR-Switch
FR-Switch#show frame-relay pvc
FR-Switch#show frame-relay route
!--- Depuración LMI Frame Relay
!--- Router 1
R1#debug frame-relay lmi
!--- Router 2
R2#debug frame-relay lmi
No hay comentarios :
Publicar un comentario