9 - Implementing OSPF Flashcards
How do you enter the OSPF configuration mode for a given OSPF process ID?
router ospf
What command is used to configure the router ID from OSPF configuration mode?
router-id
What three ways can you configure the router ID for OSPF?
- OSPF configuration mode
- Configure an IP on the loopback interface
- Rely on an interface address already configured
How would you configure OSPF using the indirect mode, i.e. mostly in the OSPF configuration mode?
router ospf 1
router-id 1.1.1.1
network 10.0.0.0 0.255.255.255 area 0
int s0/0> ip address 10.1.1.1 255.255.255.0
What information does the show ip ospf neighbor
command show you?
- Neighbor router IDs
- Neighbor state
- Neighbor Address
- Interface
What does a neighbor state of FULL/- indicate?
The link does not use a DR/BDR
What is a DROTHER neighbor?
A neighbor that is neither the DR or BDR
What command is used to show the LSDB?
show ip ospf database
True/False: DR/BDR election is done per area?
False. DR/BDR election is done per subnet
True/False: Point to point links do not have a DR/BDR election process
True
What are some commands that are useful for verifying OSPF configuration?
show ip ospf interface [brief]
show run
show ip protocols
How do you enter the configuration mode for a loopback interface?
interface loopback 0
How do you configure OSPF multi-area from OSPF configuration mode?
router ospf 1
network 10.1.1.1 0.0.0.0 area 0
network 10.1.2.1 0.0.0.0 area 2
How do you directly enable OSPF on an interface instead of using the OSPF configuration mode?
interface g0/1
ip ospf 3 area 0
How do you remove configured networks from the OSPF configuration?
no network 10.0.0.0 area 0
True/False: Wildcards are not used to configure OSPF
False
What does “Interfaces configured explicitly” imply in the output of show ip protocols
when considering OSPF?
OSPF was enabled using the interface subcommand mode (ip ospf 1 area 0)
What is the difference between the following two notes after an interface address in the output of show ip ospf interface
Attached via Interface Enable
&
Attached via Network Statement
Attached via Interface Enable implies that OSPF was enabled using the interface configuration mode. While
Attached via Network Statement means it was configured from OSPF configuration mode
What is the impact of making an interface passive in OSPF?
It won’t send OSPF Hellos, or process any received Hellos in that interface.
But it will continue to advertise the subnet that is connected to that interface
How do you make an interface passive in OSPF configuration mode per each interface?
router ospf 1
passive-interface G0/0.1
passive-interface G0/0.2