1.

How Do We Configure Ospf Routing Protocol?

Answer»

router(config)# router ospf 10

router(config-router)# network 12.1.1.0 0.0.0.255 area 0

router(config-router)# network 23.1.0.0 0.0.255.255 area 1

router(config-router)# exit

  • Router ospf 10 COMMAND enables the OSPF process. Here “10” INDICATES the OSPF process ID and can be different on NEIGHBOR routers. Process ID allows multiple OSPF processes to RUN on the same router.
  • Second command configures 12.1.1.0/24 network in area 0.
  • Third command configures 23.1.0.0/16 network in area 1.

router(config)# router ospf 10

router(config-router)# network 12.1.1.0 0.0.0.255 area 0

router(config-router)# network 23.1.0.0 0.0.255.255 area 1

router(config-router)# exit



Discussion

No Comment Found