Basic OSPF Single Area Configuration Part 1 Flashcards

1
Q

What are the required OSPF router configuration lines?

A
router ospf#
ospf router-id
network statements
interface statements
passive interfaces
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is the ospf process id?

A

router(conf t )# router ospf 500
here 500 is the ospf process id
process-id is different than the router-id

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Is the OSPF process ID locally or globally significant?

A

OSPF process id is locally significant. You can use different process id on each of the OSPF routers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the ospf router-id?

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How is OSPF different from EIGRP?

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How does OSPF select the router-id?

A
  1. Checks if router-id is configured
  2. If not, it takes the highest loopback interface IP configured
  3. If not it takes the highest physical interface IP which is UP
  4. 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are passive and non passive interfaces in OSPF?

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How and where to specify about which interfaces will be passive and non-passive in OSPF config?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly