Basic OSPF Single Area Configuration Part 1 Flashcards
What are the required OSPF router configuration lines?
router ospf# ospf router-id network statements interface statements passive interfaces
what is the ospf process id?
router(conf t )# router ospf 500
here 500 is the ospf process id
process-id is different than the router-id
Is the OSPF process ID locally or globally significant?
OSPF process id is locally significant. You can use different process id on each of the OSPF routers
What is the ospf router-id?
OSPF router-id is the router-id for the OSPF process.
Router-id is the unique number with which the OSPF router is identified. Router-id is what is used to identify the OSPF router.
How is OSPF different from EIGRP?
OSPF tries to get to the neighbor which knows the destination using the shortest path. Whereas EIGRP tries for the best way to get to the destination directly.
OSPF tries to get to the node which has the link state information for the network the router is trying to reach
How does OSPF select the router-id?
- Checks if router-id is configured
- If not, it takes the highest loopback interface IP configured
- If not it takes the highest physical interface IP which is UP
- If there is no router-id, no loopback interface, no physical interface, then OSPF will not start at all. We need a routeid to start OSPF
What are passive and non passive interfaces in OSPF?
Passive interface are the ones which do not have a OSPF neighbor on that link, or any OSPF neighborship established over that link. There will be no hello packets sent over a passive interface.
Non passive interfaces are the ones which have a OSPF neighbor on that link, used to establish and maintain the OSPF neighborship on that link. OSPF hellos’s will be sent on non passive interafces
How and where to specify about which interfaces will be passive and non-passive in OSPF config?
router…14:34:17(config)#router ospf 500
router…14:34:27(config-router-ospf)#passive-interface default
^ The above will set all interfaces to passive by default.
router…14:34:32(config-router-ospf)#no passive-interface ethernet 1
router…14:34:58(config-router-ospf)#no passive-interface ethernet 5
^ Above commands used to specify non passive interfaces