Week 5: OSPF PROTOCOL CONFIGURATION IN CISCO PACKET TRACER

OSPF is an Interior Gateway Protocol (IGP). OSPF was designed expressly for IP networks and it supports IP subnetting and tagging of externally derived routing information. OSPF also allows packet authentication and uses IP multicast when sending and receiving packets. The OSPF protocol is a link-state routing protocol, which means that the routers exchange topology information with their nearest neighbors. The topology information is flooded throughout the Autonomous System(AS). This picture is then used to calculate end-to-end paths through the AS, normally using Dijkstra's algorithm.


OSPF protocol network topology

Configuration of OSPF using CLI in Cisco Packet Tracer:
  • The steps to set up the RIP is same to some point as setting a router network link explained in previous blog. The further steps to follow are given below:
    • Type no ip route network_ip network_subnet gateway_router_address.
      • (e.g.): no ip route 192.168.100.0 255.255.255.0 10.10.10.20
    • Then type router ospf process_id. (*here process id is any number such as 99).
    • Then type network network_ip_address wild_mask area area_number.
      • (wild_mask is inverted subnet mask and area_number is process_id declared above).
*Do same for 2nd router and ping.

The steps are shown below using CLI interface.
OSPF configuration for router 1

OSPF configuration for router 2

Comments

Popular posts from this blog

Week 10 - Programming UDP Sockets in Node.js

Week 6 Implementation of DHCP in CISCO Packet Tracer

Week 1 - Introduction to Cisco Packet tracer