desafio 3.5 ospf ccnp1

23
Desafío OSPF Lab. 3.5

Upload: felipe-esteban-nieto-mendez

Post on 07-Apr-2015

265 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Desafio 3.5 OSPF CCNP1

Desafío OSPF

Lab. 3.5

Page 2: Desafio 3.5 OSPF CCNP1

Desafío 3.5 Lab. OSPF

Page 3: Desafio 3.5 OSPF CCNP1

1. Configurar las interfaces según el direccionamiento IP del diagrama.

2. Configurar el BW para reflejar el actual BW de todos los enlaces seriales.

3. Configurar OSPF con las interfaces y áreas según el diagrama.

4. Configurar R2 para la sumarización del área 20 con mascara lo mas especifica posible.

5. Realizar el link entre R1 y R2 con la red OSPF tipo broadcast, con R1 como el DR.

6. Configurar R1 para que siempre origine una ruta por defecto.

7. Modificar el enlace entre R2 y R3 para que los tiempos de "hello" y "dead" sean el doble de los

valores por defecto.

8. Hacer que el enlace entre R2 y R3 tenga un costo de 500.

9. Configurar el área 34 para que sea totalmente un área "Stubby"

10. Utilizar autenticación MD5 con la palabra clave "cisco" sobre el enlace entre R3 y R4.

11. Descubrir la publicación oculta en la topología que usted necesita direccionar para tener

conectividad total.

12. Hacer correr un script Tcl en todos los routers para verificar que hay conectividad entre el

direccionamiento IP en la topología.

Page 4: Desafio 3.5 OSPF CCNP1

Configuración de interfaces y bandwidth.

• R1:

!

interface Loopback0

ip address 172.16.1.1 255.255.255.0

!

interface Serial0/0

bandwidth 64

ip address 172.16.12.1 255.255.255.0

!

• R2:

!

interface Loopback0

ip address 172.16.2.1 255.255.255.224

!

interface Loopback1

ip address 172.16.2.33 255.255.255.224

!

interface Loopback2

ip address 172.16.2.65 255.255.255.224

!

interface Loopback3

description Router-ID Virtual-Link

ip address 172.16.2.97 255.255.255.224

!

interface Serial0/0

bandwidth 64

ip address 172.16.12.2 255.255.255.0

!

interface Serial0/1

bandwidth 64

ip address 172.16.23.2 255.255.255.0

!

Page 5: Desafio 3.5 OSPF CCNP1

• R3:

!

interface Loopback0

description Router-ID Virtual-Link

ip address 172.16.3.1 255.255.255.0

!

interface Serial0/0

bandwidth 64

ip address 172.16.34.3 255.255.255.0

!

interface Serial0/1

bandwidth 64

ip address 172.16.23.3 255.255.255.0

!

• R4:

!

interface Loopback0

ip address 172.16.4.1 255.255.255.0

!

interface Serial0/0

bandwidth 64

ip address 172.16.34.4 255.255.255.0

!

Page 6: Desafio 3.5 OSPF CCNP1

• R1:

!

router ospf 1

log-adjacency-changes

passive-interface default

no passive-interface Serial0/0

network 172.16.1.0 0.0.0.255 area 0

network 172.16.12.1 0.0.0.0 area 0

default-information originate always

!

• R2:

!

router ospf 1

log-adjacency-changes

area 20 range 172.16.2.0 255.255.255.128

area 23 virtual-link 172.16.3.1

passive-interface default

no passive-interface Serial0/0

no passive-interface Serial0/1

network 172.16.2.0 0.0.0.127 area 20

network 172.16.12.2 0.0.0.0 area 0

network 172.16.23.2 0.0.0.0 area 23

!

Configuración OSPF.

• R3:

!

router ospf 1

log-adjacency-changes

area 23 virtual-link 172.16.2.97

area 34 stub no-summary

area 34 stub

passive-interface default

no passive-interface Serial0/0

no passive-interface Serial0/1

network 172.16.3.0 0.0.0.255 area 23

network 172.16.23.3 0.0.0.0 area 23

network 172.16.34.3 0.0.0.0 area 34

!

• R4:

!

router ospf 1

log-adjacency-changes

area 34 stub

passive-interface default

no passive-interface Serial0/0

network 172.16.4.0 0.0.0.255 area 34

network 172.16.34.4 0.0.0.0 area 34

!

Page 7: Desafio 3.5 OSPF CCNP1

Proceso OSPF.

Page 8: Desafio 3.5 OSPF CCNP1
Page 9: Desafio 3.5 OSPF CCNP1

LSA 4.

Page 10: Desafio 3.5 OSPF CCNP1
Page 11: Desafio 3.5 OSPF CCNP1
Page 12: Desafio 3.5 OSPF CCNP1

Elección DR y Tipo de Red.

• R1:

!

interface Serial0/0

bandwidth 64

ip address 172.16.12.1 255.255.255.0

ip ospf network broadcast

ip ospf priority 10

!

• R2:

!

interface Serial0/0

bandwidth 64

ip address 172.16.12.2 255.255.255.0

ip ospf network broadcast

!

Page 13: Desafio 3.5 OSPF CCNP1
Page 14: Desafio 3.5 OSPF CCNP1

Modificación de Temporizadores y Costo.

• R2:

!

interface Serial0/1

bandwidth 64

ip address 172.16.23.2 255.255.255.0

ip ospf cost 500

ip ospf hello-interval 20

ip ospf dead-interval 80

!

• R3:

!

interface Serial0/1

bandwidth 64

ip address 172.16.23.3 255.255.255.0

ip ospf cost 500

ip ospf hello-interval 20

ip ospf dead-interval 80

!

Page 15: Desafio 3.5 OSPF CCNP1

Autenticación.

• R3:

!

interface Serial0/0

bandwidth 64

ip address 172.16.34.3 255.255.255.0

ip ospf authentication message-digest

ip ospf message-digest-key 1 md5 cisco

!

• R4:

!

interface Serial0/0

bandwidth 64

ip address 172.16.34.4 255.255.255.0

ip ospf authentication message-digest

ip ospf message-digest-key 1 md5 cisco

!

Page 16: Desafio 3.5 OSPF CCNP1

Proceso Autenticación.

Page 17: Desafio 3.5 OSPF CCNP1

IP que

origina

conversación

ID inicial en

proceso de

autenticación.

Page 18: Desafio 3.5 OSPF CCNP1

IP destino

transacción.

Sin

Autenticación.

Page 19: Desafio 3.5 OSPF CCNP1

ID establecido en

negociación.

Page 20: Desafio 3.5 OSPF CCNP1

ID establecido

en negociación.

Page 21: Desafio 3.5 OSPF CCNP1

Verificación de Conectividad.

tclsh

!

foreach address {

!

[IP’s]

} {

ping $address }

!

tclquit

IP’s

!

172.16.1.1

172.16.2.1

172.16.2.33

172.16.2.65

172.16.2.97

172.16.3.1

172.16.4.1

172.16.12.1

172.16.12.2

172.16.23.2

172.16.23.3

172.16.34.3

172.16.34.4

!

Page 22: Desafio 3.5 OSPF CCNP1

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.1.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 4/4/4 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.2.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 8/22/32 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.2.33, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 12/23/44 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.2.65, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 4/24/44 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.2.97, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 4/15/32 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.3.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 24/53/96 ms

!

!

Page 23: Desafio 3.5 OSPF CCNP1

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.4.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 28/76/180 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.12.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 16/31/72 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.12.2, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 8/25/44 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.23.2, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 8/31/44 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.23.3, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 16/31/56 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.34.3, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 12/47/84 ms

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.34.4, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 24/63/88 ms