You are on page 1of 3

Ing. Jhonny Barrera J.

CONFIGURAR OSPF CON IPv6

OBJETIVOS
Al completar esta práctica de laboratorio, usted podrá:
 Configurar OSPFv3 con direccionamiento IPv6
 Comprender el proceso de enrutamiento de OSPFv3
 Cambiar los temporizadores en OSPFv3

ESCENARIO
En este escenario el usuario aprenderá a configurar OSPF en una red de accesos múltiples.

TOPOLOGÍA

PREPARACIÓN DE LA RED.

Lo primero que se debe hacer en cada router es habilitar el ruteo para ipv6. Esto se hace con el comando
ipv6 unicast-routing. Una vez hecho esto podemos empezar a configurar las interfaces con sus respectivas
direcciones ip y lo que siga.
Hay que tener en cuenta que el proceso OSPF para ipv6 se debe hacer a nivel de interfaz. El comando
utilizado es el siguiente: ipv6 ospf IDENTIFICADOR área #AREA;
Donde:
 IDENTIFICADOR: puede ser un nombre o un número. Para este caso el identificador del proceso se
utiliza el número de Router;
 #AREA: Área a la que se asociara la red.
1
Ing. Jhonny Barrera J.

Es necesario tener un ID de proceso con la forma A.B.C.D, y para configurarlo se debe ingresar al proceso
OSPF a nivel global, tal como se muestra a continuación:

Router(config)# ipv6 unicast-routing


Router(config)# ipv6 router ospf PROCESO
Router(config-rtr)# router-id ID_PROCESO
Router(config-rtr)# exit

Por comodidad los router-id se colocaran según número de Router.

Router R1
Router(config)# ipv6 unicast-routing
Router(config)# ipv6 router ospf 1
Router(config-rtr)# router-id 1.1.1.1
Router(config-rtr)# exit

Router(config)# interface Serial 1/0


Router(config-router)#ipv6 address 2001:db8:1::1/64
Router(config-router)#ipv6 ospf 1 area 0
Router(config-router)#no shutdown
Router(config-router)#exit

Router(config)# interface Serial 1/1


Router(config-router)#ipv6 address 2001:db8:2::1/64
Router(config-router)#ipv6 ospf 1 area 0
Router(config-router)#no shutdown
Router(config-router)#exit

Router R2
Router(config)# ipv6 unicast-routing
Router(config)# ipv6 router ospf 1
Router(config-rtr)# router-id 2.2.2.2
Router(config-rtr)# exit

Router(config)# interface Serial 1/0


Router(config-router)#ipv6 address 2001:db8:1::2/64
Router(config-router)#ipv6 ospf 1 area 0
Router(config-router)#no shutdown
Router(config-router)#exit

Router(config)# interface Serial 1/1


Router(config-router)#ipv6 address 2001:db8:3::2/64
Router(config-router)#ipv6 ospf 1 area 0
Router(config-router)#no shutdown

2
Ing. Jhonny Barrera J.

Router(config-router)#exit

Router R3
Router(config)# ipv6 unicast-routing
Router(config)# ipv6 router ospf 1
Router(config-rtr)# router-id 3.3.3.3
Router(config-rtr)# exit

Router (config)# interface Serial 1/0


Router (config-router)#ipv6 address 2001:db8:2::3/64
Router (config-router)#ipv6 ospf 1 area 0
Router (config-router)#no shutdown
Router (config-router)#exit

Router(config)# interface Serial 1/1


Router(config-router)#ipv6 address 2001:db8:3::3/64
Router(config-router)# ipv6 ospf 1 area 0
Router(config-router)#no shutdown
Router(config-router)#exit

Router(config)# interface FastEthernet 2/0


Router(config-router)#ipv6 address 2001:db8:4::3/64
Router(config-router)# ipv6 ospf 1 area 1
Router(config-router)#no shutdown
Router(config-router)#exit

Router(config)# interface FastEthernet 2/1


Router(config-router)#ipv6 address 2001:db8:5::3/64
Router(config-router)# ipv6 ospf 1 area 0
Router(config-router)#no shutdown
Router(config-router)#exit

CONFIGURACION DE TEMPORIZADORES

Al igual que en ipv4, los temporizadores se configuran a nivel de interfaz.

Router(config)# interface FastEthernet 1/0


Router(config-if)#ipv6 ospf hello-interval 10
Router(config-if)#ipv6 ospf dead-interval 20

COMANDOS DE DEPURACIÓN DE OSPF


show ipv6 route : ver si hay una ruta para un destino
show ipv6 ospf : ver información general de OSPF
show ipv6 ospf interface : ver si OSPF está habilitado en las interfaces deseadas
show ipv6 ospf neighbor : ver la lista de vecinos de OSPF que el ruteador tiene
3

You might also like