Volume 1 - Chapter 23: Implementing Optional OSPF Features Flashcards

1
Q

Which OSPF network type supports the use of a DR/BDR?

A

Broadcast

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

Which OSPF network type does not support the use of a DR/BDR?

A

Point-to-Point

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

An OSPF-enabled router has a connection to a LAN on its Gi0/1 interface, but no other routers share that LAN.

What role will the Gi0/1 be by default?

A

The designated router

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

Describe the process for electing a BR/BDR.

A

The router elected to become the DR is the router with the highest OSPF interface priority.

If all priorities tie, then the router with the highest RID wins.

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

What is the range of values available for an OSPF interface priority?

A

0 to 255.

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

What OSPF interface priority will prevent a router from ever becoming a DR?

A

0

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

What is the default OSPF interface priority?

A

1

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

A technician configures R2 with an interface priority of 95 to attempt to make it the DR on a LAN shared with 3 other routers. All other routers use default priorities, what happens when the technician updates the priority?

A

Nothing, changing the interface priority does not cause a new DR/BDR election. Only a failure on the network will cause the routers to elect R2 as the DR.

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

What is the default setting enabled on Serial interfaces?

A

ip ospf network point-to-point

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

What type of OSPF network type is used on E-Line (Private Wire Services)?

A

Point to Point

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

A technician connects R1 & R2 together over a direct point-to-point link. What neighbor state would you expect to see on either router when running the following command?:

show ip ospf neighbor

A

FULL/-

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

Describe how the OSPF process changes on a port when a technician configures it to be a passive interface?

A

1) OSPF will continue to advertise the subnet.

2) OSPF no longer sends hello messages on the interface.

3) OSPF no longer processes any received hellos.

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

What commands can be used to configure passive interfaces?

A

passive-interface type number

Or

passive-interface default

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

A technician has configured all interfaces to be passive by default. What command is used stop interface Gi0/0/1 from being passive?

A

no passive-interface GigabitEthernet0/0/1

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

What command(s) are used to advertise a default route to 0.0.0.0 /0 to OSPF enabled routers?

A

1) Set the default route on the edge router:
ip route 0.0.0.0 0.0.0.0 nexthop

2) Configure the router to advertise the default route:
default-information originate

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

What command is used in OSPF to advertise a default route, even when no default route currently exists?

A

default-information originate always

17
Q

What interface subcommand can be used to statically set a port’s cost metric?

A

ip ospf cost x

18
Q

What is the command to set an interfaces bandwidth metric?

A

bandwidth speed

19
Q

How does OSPF calculate the cost of an interface that does not have a cost statically configured?

A

Using the following formula:

Cost = ref_bandwidth (kbps) / interface bandwidth (kbps)

20
Q

What is the default reference bandwidth used on Cisco routers?

A

100 Mbps

21
Q

What is the minimum OSPF interface cost?

A

1

22
Q

Describe the problem with utilizing the default reference bandwidth?

A

All links that are 100 Mbps or faster are treated the same in terms of cost:

Cost = ref_bandwidth (kbps) / interface bandwidth (kbps)

100,000 / 100,000 = 1
100,000 / 1,000,000 = 1 (minimum is 1)
100,000 / 10,000,000 = 1 (minimum is 1)

23
Q

What command is used to change the default interface reference bandwidth?

A

auto-cost reference-bandwidth speed

Speed is in Mbps

24
Q

What are the range of values for a statically assigned OSPF interface cost?

A

Between 1 and 65,535.

25
Q

What is the default hello interval on OSPF enabled interfaces for IOS?

A

10 seconds.

26
Q

What is the default dead interval on OSPF enabled interfaces for IOS?

A

40 seconds.

27
Q

What interface subcommands are configured to statically set the hello and dead intervals?

A

ip ospf hello-interval x
ip ospf dead-interval x

28
Q
A