8. Optimizing OSPF

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/65

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

66 Terms

1
New cards

What metric does OSPF use?

Cost

2
New cards

Equation for OSPF cost

knowt flashcard image
3
New cards

Default reference bandwidth

10^8

4
New cards

What is the cost of links faster than Fast Ethernet when the default reference bandwidth is used?

1

5
New cards

How is the cost of a path calculated?

It is the cumulative cost of all the links on the path from the router to the network

6
New cards

Is low cost or high cost preferred?

Low

7
New cards

In what order are LSAs, SPF, the LSDB, and the routing table used in determining and recording the shortest path?

knowt flashcard image
8
New cards

What is the command to see OSPF neighbor ID, state, priority, dead time, address and interface?

sh ip ospf neigh

<p>sh ip ospf neigh</p>
9
New cards

What is the command to see the routing protocol, router ID, routed networks, number of paths, routing information sources, and distance?

sh ip prot

<p>sh ip prot</p>
10
New cards

What are the two numbers in brackets in the output of sh ip route ospf?

[administrative distance / metric of the route]

<p>[administrative distance / metric of the route]</p>
11
New cards

What is administrative distance?

Administrative distance (AD) is an integer from 0 to 255 that rates the trustworthiness of the source of the IP routing information. The AD is only important when a router learns about a destination route from more than one source. The path with the lowest AD is the one entered in the routing table.

12
New cards

What is the command to see neighbor count of an interface, the IP address of neighbors, delay, priority, state, and designated router ID of an interface?

sh ip ospf int <type> <#/#>

<p>sh ip ospf int &lt;type&gt; &lt;#/#&gt;</p>
13
New cards

What are the steps in configuring a passive OSPF interface?

set the routing protocol to ospf, set the interface to passive

<p>set the routing protocol to ospf, set the interface to passive</p>
14
New cards

Command to verify passive interface?

sh ip prot

<p>sh ip prot</p>
15
New cards

What command is used to advertise a default route to a neighbor?

(config-router)# default-information originate

16
New cards

What will a router be treated like if it is originating type-5 AS External LSA's for the default route?

ASBR

17
New cards

What is the command to allow a router to advertise a default route regardless of whether it already has a default route in its routing table?

default-infromation originate always

18
New cards

How can you influence an interface cost?

By changing the interface bandwidth

19
New cards

T/F: OSPF cost is computed automatically for each interface that is assigned into an OSPF process

True

20
New cards

How many bits and between what range is OSPF cost?

16-bits positive number between 1 and 65,535

21
New cards

Does automatic cost assignment work on high-bandwidth links?

No. For links 100Mbps and more all costs are equal to 1 and therefore require manually cost setting on each interface.

22
New cards

T/F: The metric is only relevant on an outbound link path

True

23
New cards

What are the default OSPF costs of T1, Ethernet, Fast Ethernet, Gigabit Ethernet, and 10 Gigabit Ethernet?

knowt flashcard image
24
New cards

What command adjusts reference bandwidth to improve OSPF behavior for high-bandwidth links?

auto-cost reference-bandwidth #

<p>auto-cost reference-bandwidth #</p>
25
New cards

What is the command to see path cost?

sh ip ospf int e0/0

26
New cards

What is the command to see a path's metric?

sh ip route x.x.x.x

27
New cards

What is the command to set an interface's OSPF cost?

knowt flashcard image
28
New cards

T/F: Manually configuring OSPF cost on an interface does not override the calculated cost that is based on reference bandwidth and interface bandwidth

False; manually configuring OSPF cost overrides the calculated value of cost.

29
New cards

What is route summarization?

The process of advertising a contiguous set of addresses as a single address with a less-specific, shorter subnet mask.

30
New cards

What problems does route summarization solve?

large routing tables and frequent LSA flooding throughout the AS

31
New cards

What LSA types do ABRs and ASBRs summarize?

ABRs summarize type 3 LSAs, and ASBRs summarize type 5 LSAs.

32
New cards

What LSA types are generated inside each area?

1 and 2

33
New cards

What type of LSAs are type 1 and 2 LSAs translated into in other areas?

3

34
New cards

What does route summarization effect?

Bandwidth, CPU power, and memory resources that the OSPF routing process consumes

35
New cards

What are the key impacts of route summarization?

1. Route summarization will minimizes the number of routing table entries, 2. localizes the impact of a topology change and 3. reduce LSA flooding and 4. saves CPU resources.

36
New cards

T/F: With route summarization, all routes are propagated into the backbone (Area 0).

False; with summarization only the summarized routes are propagated into the backbone (Area 0).

37
New cards

What routing filter allows you to apply an access list to routing updates?

distribute list

38
New cards

What command implements a distribute list?

knowt flashcard image
39
New cards

What factors can the distribute-list filter based on?

1. incoming interface 2. outgoing interface 3. redistribution from another routing protocol

40
New cards

T/F: the distribute-list command removes routes from the link state database

False; For OSPF, the distribute-list in command filters what ends up in the IP routing table, and only on the router on which the distribute-list in command is configured.

41
New cards

What command implements prefix lists for route filtering?

knowt flashcard image
42
New cards

What are the drawbacks of IP access lists that are used as route filters?

1. The subnet mask cannot be easily matched.
1. Access lists are evaluated sequentially for every IP prefix in the routing update.
3. Extended access lists can be cumbersome to configure.

43
New cards

What are the benefits of ip prefix-list filtering over an access list?

The intended use of prefix lists is limited to route filtering, where access lists were originally intended to be used for packet filtering and were then extended to route filtering.

44
New cards

If none of the lines in the prefix list match the network number in the update, what happns?

implicit deny

45
New cards

What is the command to consolidate and summarize routes at an area boundary?

area # range x.x.x.x x.x.x.x

<p>area # range x.x.x.x x.x.x.x</p>
46
New cards

What are the four types of OSPF route filtering that IOS supports?

1. filter-list 2. area range not-advertise 3. distribute-list 4. summary-address not-advertise

47
New cards

How do you filter Type-3 LSAs with the 'filter-list' command?

knowt flashcard image
48
New cards

How do you filter Type-3 LSAs with the 'area range' command?

knowt flashcard image
49
New cards

How do you filter OSPF routes with the 'distribute-list' command? (3 methods)

knowt flashcard image
50
New cards

What are the commands to use an access list with 'distribute-list'?

knowt flashcard image
51
New cards

What are the commands to use and prefix list with 'distribute-list'?

knowt flashcard image
52
New cards

What are the commands to use a combination of route map, prefix list, and access list with 'distribute-list'?

knowt flashcard image
53
New cards

How do you filter Type-5 LSAs with the 'summary-address' command?

knowt flashcard image
54
New cards

What is one major limitation of OSPFv2?

It doesn't support IPv6

55
New cards

What is the command to configure OSPFv2 for IPv4?

router ospf process-id

56
New cards

What is the command to configure OSPFv3 for IPv6 only?

ipv6 router ospf process-id

57
New cards

What is the command to configure OSPFv3 for IPv4 and 6?

router ospfv3 process-id

58
New cards

What is the command to enable ipv6 routing?

ipv6 unicast-routing

59
New cards

What is the command to configure the router ID?

(config-router)# router-id <#>

60
New cards

What is the command to enable OSPFv3 on an interface?

ipv6 ospf process-id area <area id>

61
New cards

How do you configure IPV6 route summarization on an ABR?

knowt flashcard image
62
New cards

How do you configure IPV6 route summarization on an ASBR?

knowt flashcard image
63
New cards

How do you configure IPv6 default route advertisement?

knowt flashcard image
64
New cards

Which 2 options play key roles in route summarization?

Network numbers in areas should be assigned contiguously, VLSM

65
New cards

What are three common applications of route maps?

1. Redistribution route filtering 2.Policy-based routing 3. BGP policy implementation

66
New cards

What are the steps in creating a route map?

knowt flashcard image