Despues de un "largo" semestre le traigo la ultima entrada amigos!! Gracias profe por el curso la verdad estuvo muy chido, de los mas rescatable de toda la carrera aunque me hubiera gustado haber hecho mas practicas como la de VPNs
Ahora toca el tema de:
OSPF (Open Shortest Path First) de área única
Como siempre un poco de teoria antes de comenzar
OSPF Generalidades
- Defined in RFC 2328 as a royalty free standar.
- Is an Interior Gateway Protocol used to distribute routing information within a single Autonomous System
- Based on link-state technology
- Introduces new concepts such as authentication of routing updates, Variable Length Subnet Masks (VLSM), route summarization, etc
- With OSPF, there is no limitation on the hop count
- OSPF uses IP multicast to send link-state updates. This ensures less processing on routers that are not listening to OSPF packets.
- Updates are only sent in case routing changes occur instead of periodically. This ensures a better use of bandwidth.
- OSPF has better convergence than RIP. This is because routing changes are propagated
- instantaneously and not periodically
- OSPF allows for better load balancing.
- OSPF allows for routing authentication by using different methods of password authentication.
Esta es la maqueta a emplear:
Me ahorrare los pasos para configurar la red y entraremos de lleno al tema, si quieres ver como se configura puedes pasar a mis anteriores Posts.
Para configurar OSPF:
router(config)# router ospf <process id>
router(config-router)# network <network ip> <wildcard mask> area 0
router(config-router)# network <network ip> ... sucesivamente hasta incluir todas las redes que se quiera anunciar
router(config-router)# exit
En este caso como se hicieron dos practicas el mismo dia deshabilitamos primero el RIP:
Router(config)#no router RIP
Que es wildcard mask??? Es la mascara de sub red a la inversa, es decir para las redes que tienen mascara 255.255.255.0 la Wildcard mask es 0.0.0.255.
Para que quede mas claro mi red tiene la mascara 255.255.255.128 entonces mi wildcard mask es 0.0.0.127, el 127 es lo que hace falta para llegar a 255.
Ahora solo resta verificar el anuncio de redes con IP SHOW ROUTE
Se ven todas las redes anunciadas y nos damos cuenta que es por el OSPF ya que al inicio de cada red se enuncia la letra "O"
Para verificar la funcionalidad de OSPF utilizamos los siguientes comandos
router> show ip ospf
router> show ip ospf neighbor
router> show ip ospf interface
router> show ip ospf database router
por ultimo aventamos ping para verificar funcionalidad
CONCLUSION
Manera diferente pero al final la funcionalidad es la misma, redes con diferente VLSM









No hay comentarios:
Publicar un comentario