Sunteți pe pagina 1din 9

Alumno : Francisco Cardoza Yangua Prctica de laboratorio 3.5.

2: Reto de configuracin de Frame Relay

Realizar la configuracin bsica del router


Configure los routers R1, R2 y R3 de acuerdo con las siguientes instrucciones:

Router>enable Router#configure terminal Router(config)#hostname R1 R1(config)#enable secret class R1(config)#line con 0 R1(config-line)#pass cisco R1(config-line)#login R1(config-line)#exit R1(config)#line vty 0 4 R1(config-line)#pass cisco R1(config-line)#login R1(config-line)#exit R1(config)#no ip domain-lookup R1(config)#banner motd &Authorize access only!& R3>en R3#conf t R3(config)#hostname R3 R3(config)#enable secret class R3(config)#line con 0 R3(config-line)#pass cisco R3(config-line)#login R3(config-line)#exit R3(config)#line vty 0 4 R3(config-line)#pass cisco R3(config-line)#exit R3(config)#no ip domain-lookup R3(config)#banner m R3(config)#banner motd &Authorized access only!&

Configurar las direcciones IP


Configurar las direcciones IP en todos los enlaces de acuerdo con la tabla de direccionamiento. R1(config)#int s0/0/0 R1(config-if)#ip address 10.1.2.1 255.255.255.252 R1(config-if)#int fa0/1 R1(config-if)#ip address 172.16.1.254 255.255.255.0 R2(config)#int s0/0/1 R2(config-if)#ip address 10.1.2.2 255.255.255.252 R2(config-if)#int fa0/1 R2(config-if)#ip address 172.16.1.254 255.255.255.0 Activar las interfaces Ethernet en R1 y R3.

Aqu podemos revisar nuestra configuracion y asignacion de IPs tantos en R1, R3 como PC1, PC3, segn el diagrama de topologa. Probar la conectividad entre los equipos PC y sus routers locales.

Aqu podemos verificar que se realizo con xito el PING entre PC1 con R1 y PC3 con R3

Configurar EIGRP en los routers R1 y R3


Activar EIGRP en R1 y R3 para todas las subredes. R3#conf t Enter configuration commands, one per line. End with CNTL/Z. R3(config)#router eigrp 1 R3(config-router)#net 10.1.2.0 0.0.0.3 R3(config-router)#net 172.16.0.0 0.0.0.255 R3(config-router)#no auto-summary R3(config-router)#exit R1#conf t Enter configuration commands, one per line. End with CNTL/Z. R1(config)#router eigrp 1 R1(config-router)#net 10.1.2.0 0.0.0.3 R1(config-router)#net 172.16.0.0 0.0.0.255 R1(config-router)#no auto-summary R1(config-router)#exit Configurar interfaces fsicas en R1 y R3 para la encapsulacin Frame Relay R3(config)#int s0/0/1 R3(config-if)#encapsulation frame-relay R3(config-if)#no shut R1(config)#int s0/0/0 R1(config-if)#encapsulation frame-relay R1(config-if)#no shut

Vamos a empezar a configurar EIRP y los routers en conjunto con la nube

Aqu podemos observar la configuracion que se realizo para el FRAME RELAY en R1 y R3

Pasamos a verificar la conexion y se muestra el diagrama y topologia que se utilizo.

Esto se logro luego de configurar el Cloud en el Se1 y Se2 con los valores que indica el ejercicio 102, 201 respectivamente podemos verificar qye hay

conexin entre PC3 y PC1.

Configurar las subinterfaces de Frame Relay


Paso 1: Eliminar la direccin IP y la configuracin de la asignacin de tramas de las interfaces fsicas de R1 y R2. R1 interface serial0/0/0 no frame-relay map ip 10.1.2.2 102 broadcast no ip address R2 int s0/0/1 no frame-relay map ip 10.1.2.1 201 broadcast Paso 2: Configurar subinterfaces Frame Relay punto a punto en R1 y R2 con las mismas direcciones IP y DLCI que se utilizaron anteriormente en las interfaces fsicas. R1 interface serial0/0/0.102 point-to-point ip address 10.1.2.1 255.255.255.252 frame-relay interface-dlci 102 R2 int s0/0/1.102 point-to-point ip add 10.1.2.2 255.255.255.252

Una vez terminado el ejercicio por completo se presenta la hoja de resultados alcanzando el 100%

Como ultimo paso se pide mostrar el SHOW RUN de R1 y R3 R1#show run


Building configuration... Current configuration : 962 bytes ! version 12.4 no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption ! hostname R1 ! ! enable secret 5 $1$mERr$9cTjUIEqNGurQiFU.ZeCi1 ! ! no ip domain-lookup !

interface FastEthernet0/0 no ip address duplex auto speed auto ! interface FastEthernet0/1 ip address 172.16.1.254 255.255.255.0 duplex auto speed auto ! interface Serial0/0/0 ip address 10.1.2.1 255.255.255.252 encapsulation frame-relay ! interface Serial0/0/0.102 point-to-point no ip address frame-relay interface-dlci 102 ! interface Serial0/0/1 no ip address encapsulation frame-relay ! interface Vlan1 no ip address shutdown ! router eigrp 1 network 10.1.2.0 0.0.0.3 network 172.16.0.0 no auto-summary ! ip classless ! banner motd ^CAuthorized access only!^C ! line con 0 password cisco logging synchronous login line vty 0 4 password cisco logging synchronous ! login end R1#

AHORA Mostramos R3

R3#show run

Building configuration... Current configuration : 935 bytes version 12.4 no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption hostname R3 enable secret 5 $1$mERr$9cTjUIEqNGurQiFU.ZeCi1 ! no ip domain-lookup ! interface FastEthernet0/0 no ip address duplex auto speed auto interface FastEthernet0/1 ip address 172.16.2.254 255.255.255.0 duplex auto speed auto ! interface Serial0/0/0 no ip address ! interface Serial0/0/1 ip address 10.1.2.2 255.255.255.252 encapsulation frame-relay ! interface Serial0/0/1.102 point-to-point no ip address frame-relay interface-dlci 201 ! interface Vlan1 no ip address shutdown ! router eigrp 1 network 10.1.2.0 0.0.0.3 network 172.16.0.0 no auto-summary ! ip classless ! banner motd ^CAuthorized access only!^C ! line con 0 password cisco logging synchronous login line vty 0 4 password cisco logging synchronous login ! end R3#

S-ar putea să vă placă și