2 Rip GNS3
2 Rip GNS3
2 Rip GNS3
IV. MATERIALES
1) Computadores x86
2) Cable de red cruzado para la conexión punto a punto entre computadores.
3) Software de emulación GNS3 1.5.X (con soporte para conexiones seriales a través
de UDP)
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 2 de 15
V. MARCO TEORICO
Enrutamiento dinámico
Protocolo RIP
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 3 de 15
Un paquete RIP puede contener 25 rutas, hasta alcanzar 512 bytes de longitud. Este
tamaño de paquete no debería necesitar ser fragmentado.
Cuando el enrutador se inicia, este difunde una petición por todas sus interfaces con el
campo address family = 0 y metric = 16. Cuando otro enrutador recibe tal petición RIP,
este responde con todas las entradas de su tabla en una o más respuestas RIP.
Otro tipo de petición RIP es una petición por una ruta a una dirección específica (o
varias direcciones). La respuesta a esto es nuestra métrica de la ruta o 16 para especificar
infinito o “no existe ruta”.
RIP envía su tabla de enrutamiento cada 30 segundos a todos los enrutadores vecinos.
Las rutas se vencen (time out) si no se confirman por 3 minutos (seis actualizaciones).
La métrica se establece en 16 pero la ruta no se borra por 60 segundos. Esto asegura que
la invalidación se propague.
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 4 de 15
Ejemplo 1:
Diseñe una red como la que se muestra en la siguiente ilustración y configure los
equipos de forma que todos puedan comunicarse entre sí. R0, R1, PC3 y PC8 deben
ejecutarse en un computador (Host_01) y R2, R3, PC6 y PC7 en otro (Host_02). Los
parámetros para la configuración de los equipos se resumen en el cuadro que adjunto:
HOST_01 HOST_02
PC8 PC6
10.0.0.0/8
8.0.0.0/8 R0 R2 6.0.0.0/8
2.0.0.0/8 4.0.0.0/8
PC3 PC7
25.0.0.0/8
3.0.0.0/8 R1 R3 7.0.0.0/8
SUBRED DIRECCIÓN IP
R0 – R2 10.0.0.0/8
R0 – R1 2.0.0.0/8
R1 – R3 5.0.0.0/8
R2 – R3 4.0.0.0/8
PC8 – R0 8.0.0.0/8
PC3 – R1 3.0.0.0/8
PC6 – R2 6.0.0.0/8
PC7 – R3 7.0.0.0/8
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 5 de 15
SOLUCIÓN
Para resolver este ejercicio, instalamos GNS3 en los dos equipos físicos que se
utilizaran para la implementación de la red. El primer HOST_01 y el segundo
HOST_02.
Configuración de enrutadores
En HOST_01:
En HOST_02:
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 6 de 15
DISEÑO DE LA RED
Primeramente diseñamos la red con las especificaciones adecuadas para pasar a luego
configurar la red en GNS3:
PC LAPTOP
PC8 PC6
F0/0 S0/0
10.0.0.0/8 S0/1 F0/0
CLOUD 1 CLOUD 1
8.0.0.0/8 R1 R1 6.0.0.0/8
S0/1 S0/0
2.0.0.0/8 4.0.0.0/8
S0/1 S0/1
PC3 PC7
F0/0 S0/0
25.0.0.0/8 S0/0 F0/0
CLOUD 2 CLOUD 2
3.0.0.0/8 R2 R2 7.0.0.0/8
Para diseñar la red, agregamos los equipos necesarios en cada computador, como se
muestra en los gráficos:
En HOST_01:
En HOST_02:
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 7 de 15
R1
R1#ena
R1#conf term
R1(config)#int serial0/0
R1(config-if)#ip address 10.0.0.1 255.0.0.0
R1(config-if)#clock rate 64000
R1(config-if)#no shut
R1(config-if)#
R1(config)#int serial0/1
R1(config-if)#ip address 2.0.0.1 255.0.0.0
R1(config-if)#clock rate 64000
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#int fastEthernet0/0
R1(config-if)#ip address 8.0.0.1 255.0.0.0
R1(config-if)#exit
R1(config)#router rip
R1(config-router)#network 10.0.0.0
R1(config-router)#network 2.0.0.0
R1(config-router)#network 8.0.0.0
R1(config-router)#exit
R2
R2#ena
R2#conf term
R2(config)#int fastEthernet0/0
R2(config-if)#ip address 3.0.0.1 255.0.0.0
R2(config-if)#no shut
R2(config)#int serial0/0
R2(config-if)#ip address 5.0.0.1 255.0.0.0
R2(config-if)#clock rate 64000
R2(config-if)#no shut
R2(config-if)#exit
R2(config)#int serial0/1
R2(config-if)#ip address 2.0.0.2 255.0.0.0
R2(config-if)#no shut
R2(config-if)#exit
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 8 de 15
R2(config)#router rip
R2(config-router)#network 5.0.0.0
R2(config-router)#network 2.0.0.0
R2(config-router)#network 3.0.0.0
R2(config-router)#exit
Cloud1:
Cloud2:
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 9 de 15
Terminal PC8:
Terminal PC3:
R1
R1#ena
R1#conf term
R1(config)#int serial0/1
R1(config-if)#ip address 10.0.0.2 255.0.0.0
R1(config-if)#no shut
R1(config)#int serial0/0
R1(config)#int fastEthernet0/0
R1(config-if)#ip address 6.0.0.1 255.0.0.0
R1(config-if)#no shut
R1(config)#router rip
R1(config-router)#network 10.0.0.0
R1(config-router)#network 4.0.0.0
R1(config-router)#network 6.0.0.0
R2
R2#ena
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 10 de 15
R2#conf term
R2(config)#int serial0/0
R2(config-if)#ip address 5.0.0.2 255.0.0.0
R2(config-if)#no shut
R2(config)#int serial0/1
R2(config-if)#ip address 4.0.0.2 255.0.0.0
R2(config-if)#no shut
R2(config)#int fastEthernet0/0
R2(config-if)#ip address 7.0.0.1 255.0.0.0
R2(config-if)#no shut
R2(config)#router rip
R2(config-router)#network 4.0.0.0
R2(config-router)#network 5.0.0.0
R2(config-router)#network 7.0.0.0
Cloud1
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 11 de 15
Cloud2
Terminal PC6
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 12 de 15
Terminal PC7
PRUEBAS DE CONECTIVIDAD
Desde PC6
Desde PC7
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 13 de 15
PC – 01 PC – 02
R1 R4
R0 R2 R3 R5
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 14 de 15
VIII. EVALUACION
SESION 01
ACTIVIDAD
Procedimental
Ejecución del ejercicio de ejemplo 08
Resolución del ejercicio propuesto 01 12
TOTAL 20
11/11/2018
UNIVERSIDAD NACIONAL DE SAN ANTONIO ABAD DEL CUSCO
REDES DE COMPUTACION Y SEGURIDAD
GUIA DE LABORATORIO
ECP 15 de 15
IX. BIBLIOGRAFIA
11/11/2018