Dynamic Routing Protocols Flashcards

1
Q

What does a routing protocol do?

A

Allows routers to share best paths to known networks with each other.

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

How do routers utilize routing protocols?

A

Routers take the information of best known paths from other routers to determine their own best path. This includes when routing paths go down or when network states change. These changes are done automatically.

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

What are the two types of routing protocols

A

Internal Gateway Protocols (IGPs) and External Gateway Protocols (EGPs)

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

What are interior gateway protocols (IGPs) used for?

A

Exchanging routing information between routers within an organization.

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

What are exterior gateway protocols (EGPs) used for?

A

Exchanging routing information over the Internet between organizations.

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

What are the types of EGPs used today?

A

Path Vector Routing Protocol.

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

What are the types of IGPs used today?

A

Distance Vector routing protocols and Link state routing protocols.

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

How do Distance Vector routing protocols work?

A

Routers only know what’s connected to them and their neighbors.

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

How do Link State routing protocols work?

A

Routers shares its connections to its neighbors and that information is passed to every other router in the network.

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

What are examples of Distance Vector routing protocols?

A

Routing Information Protocol (RIP) and Enhanced Interior Gateway Routing Protocol (EIGRP)

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

What are examples of Link State routing protocols?

A

Open Shortest Path First (OSPF) and Intermediate System - Intermediate System (IS-IS)

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

What is an example of a Path Vector Routing Protocol

A

Border Gateway Protocol (BGP). This is the only EGP used today.

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

How do IGPs know which path to put into a router’s routing table?

A

Each IGP use a different method to calculate a metric value. The lower the metric value, the better the path. This determines which path is the best path.

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

How do Distance Vector metrics work?

A

Each router advertises its known network and shares their metric to get to each of them.

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

How do Link State metrics work?

A

Each router takes the information of all the other routers and network information and calculates its own best path.

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

How do Routing Information Protocol (RIP) Metrics work?

A

They use hop count, meaning how many routers they go through to get to a destination. Cannot really manipulate the metrics.

17
Q

How do Open Shortest Path First (OSPF) Metrics work?

A

It uses a “cost” method, where it takes into account bandwidth by default.

18
Q

How do IS-IS Metrics work?

A

Also uses a “cost” method, but does not take into account bandwidth. If costs are not manually set, it takes the lowest hop count.

19
Q

How do EIGRP Metrics work?

A

Uses a calculated number determined primarily by bandwidth. Can manually configure path if needed.

20
Q

What happens when multiple paths have the same cost in IGPs?

A

All IGPs use Equal Cost Multi Path (ECMP) by adding all paths into the routing table and load balancing the information between them.

21
Q

What is the purpose of Administrative Distance

A

Administrative distance is used to determine the priority and best path when routers use multiple routing protocols.

22
Q

How does administrative distance work?

A

Priority values are assigned to different routing protocols to determine which protocol to use and then it uses metrics to determine which path to take.

23
Q

What is the purpose of floating static routes

A

Because static routes have a value of 1, administrative distance will always take the static path route. Floating static routes allows us to assign static routes as a backup route in case the original best path fails. This is done by assigning a AD value just above the priority value of the routing protocol.

24
Q

What is a loopback interface?

A

Virtual interface that’s always up as long as there’s one IP interface that works

25
Q

If a path is down, how does a loopback interface solve this issue?

A

A loopback interface allows a single address across multiple interfaces so that when on path goes down, traffic can be rerouted to another interface.

26
Q

What is the purpose of a passive interface

A

Passive interfaces allows you to know about the link, while not sending routing information to the device on the other side. Think of it like one way streets.

27
Q

Why should you always configure a loopback interface as a passive interface.

A

This way it will advertise its information, but not waste resources sending out and listening for hello packets. Loopbacks will never have adjacencies.