OSPF Flashcards

1
Q

Type 1 Router LSA

A

Contains IP prefix of each connected interface

Stays in an area

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

Type 2 Network LSA

A

Generated by DR

A DR collects Type 1 LSA from other OSPF routers on a broadcast segment and combines them into a type 2 LSA that describes all routers on the segment

Stays in an area

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

Type 3 Summary LSA

A

Includes inter-area prefixes-prefixes from other areas.

Summarizes Type 1 and 2 LSA from an area and repackage them into a single summary LSA to share with other areas

O IA in the routing table

Stays in an area

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

Type 4 ASBR Summary LSA

A

Generated by an ABR and tells routers in other areas how to reach the next hop listed in type 5 AS External LSA

Stays in an area

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

Type 5 AS External LSA

A

Advertises redistributed routes

OE1 and OE2 in the routing table.

Flooded to all normal area

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

OSPF Network Types

A

Point-to-point: Routers will not attempt to elect a DR
Used for serial links and loopbacks

Broadcast or Transit: Routers will attempt to elect a DR
Most common on ethernet networks

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

OSPF Routing Protocol Number

A

OSPF uses IP protocol 89

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

OSPF Multicast Address

A

OSPF routers use 224.0.0.5 to send HELLO messages

On a Broadcast network, The DR multicast address is 224.0.0.6

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

OSPF Seven States

A
  1. Down
  2. Init
  3. Two-way
  4. Exstart
  5. Exchange - Routers exchange LSA headers
  6. Loading - Routers exchange full link-state
  7. Full
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Changing Interface Priority

A

By default, all routers have an interface priority of 1.

R2(config-if)# ip ospf priority 255

If a router has a priority of 0 it will never become a DR

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

OSPF Stub Network

A

Contains only a single router. Advertise using a type 2 LSA

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

OSPF Authentication Types

A

Interface Authentication: Each router must authenticate to its neighbor before forming an adjacency

R2(config-if)# ip ospf message-digest-key 1 md5 cisco
ip ospf authentication message-digest

Area Authentication: Enables interface authentication on all interfaces in a particular area.

R2(config-if)# ip ospf message-digest-key 1 md5 cisco

R2(config-router)# router ospf 1
area 0 authentication message-digest

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

Passive Interfaces

A

OSPF will advertise a prefix for an interface but will not form an adjacency

R2(config-router)# router ospf 1
passive-interface gi0/1

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

Inter-Area Summarization

A

On ABR area range command
On ASBR summary-address command

R2(config-router)# router ospf 1
area 0 range 10.0.0.0 255.255.254.0

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

Route Filtering

A

Inter-area filtering mechanism. Router will not advertise a summary LSA

R4(config)# ip prefix-list NO-AREA-1 seq 10 deny 192.0.2.0/30
ip prefix-list NO-AREA-1 seq 20 permit 0.0.0.0/0 le 32

R4(config-router)# router ospf 1
area 0 filter-list prefix NO-AREA-1 in

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

Distribute Lists

A

Prevents a prefix from entering into the routing table but still present in the OSPF LSA

R4(config)# ip access-list standard R2_LO
deny host 2.2.2.2
permit any

R4(config-router)# router ospf 1
distribute-list R2_LO in