Week 4: Intro to Routing Flashcards

1
Q

What are Routed Protocols?

A

Protocols that can carry network layer information

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

What are Routing Protocols?

A

Protocols used by routers to make path determination choices & to share those choices with other routers

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

List some characteristics of Routed Protocols

A

Have packet headers that contain network layer addresses

Developed to support network consisting of multiple networks or subnetworks

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

List some characteristics of Routing Protocols

A

Performs dynamic route selection/decision

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

List some examples of Routed Protocols

A

IP, IPX, AppleTalk

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

List some Examples of Routing Protocols

A

RIP, OSPF, BGP

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

Define the term Routing

A

Routing refers to taking a packet from one device & sending it through the network to another device on a different network.

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

What are the minimum factors a router must know to route packets?

A
Destination address
Neighbor routers
Possible routes
Best route
How to maintain & verify routing information
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the only concerns of a router?

A

Possible destination networks and the best path to each network. They don’t care about hosts

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

What are the fundamental functions of a router?

A

Best Path Selections and forwarding packets to destination

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

What are the two types of Dynamic routing?

A

Interior Gateway Protocol (IGP) and Exterior Gateway Protocol (EGP)

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

What are the 2 types of IGP’s?

A

Distance Vector Protocols (DVPs)

Link State Protocols (LSPs)

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

Name the three DVP Protocols

A

Routing Information Protocol (RIPv1/2)
Interior Gateway Routing Protocol (IGRP)
Enhanced Interior Gateway Routing Protocol (EIGRP)

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

Name the two LSP Protocols

A

Open Shortest Path First (OSPF)

Intermediate System-to-Intermediate System (IS-IS)

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

What is the difference between Static & Dynamic Routing

A

In static routing, next hop routes are manually configured in the routers. In dynamic routing, routers share information to learn the route to a certain destination

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

What Protocols are used in Dynamic Routing?

A

Routing Information Protocol (RIP)
Open Shortest Path First (OSPF)
Enhanced Interior Gateway Routing Protocol (EIGRP)
Border Gateway Protocol (BGP)

17
Q

What is the basic procedure that all Routing Protocol Algorithms follow?

A
  1. Send & receive updates
  2. Calculate best path; install routes
  3. Detect & react to topology changes
18
Q

List the criteria used to compare routing protocols

A

Time to Convergence
Scalability
Resource Usage
Implementation & Maintenance

19
Q

List the two key concepts for Routing

A

Metric and Convergence

20
Q

What is a Metric?

A

A value used to define the suitability of a particular route. Used by routers to determine which routes are better than others

21
Q

What is Convergence?

A

A state where all routers on the internetwork share a common view of the internetwork routes

22
Q

List the types of routing metrics used by routing protocols

A
Hop Count
Bandwidth
Delay
Load
Reliability
Cost
23
Q

What is an Autonomous System?

A

A system that uses IGPs as routing protocols; A group of routers under the control of a single administration

24
Q

Where are IGP’s used?

A

Inside of an Autonomous System (AS)

25
Q

Where are EGP’s used?

A

Between multiple Autonomous Systems (AS)

26
Q

What is a Stub Network?

A

Networks with one route to the internet

27
Q

What is a Stub Router?

A

Routers with only one route out

Usually the last in a chain of routers

28
Q

What are the three Routing Principles?

A
  1. Every router makes its decision alone, based on the information it has in its own routing table
  2. The fact that one router has certain information in its routing table does not mean that other routers have the same information
  3. Routing information about a path from one network to another does not provide routing information about the reverse, or return path
29
Q

What is a Default Static Route?

A

A route that will match all packets

30
Q

What is Route Summarization?

A

The process of combining a number of static routes into a single static route

31
Q

What is the benefit of summarizing a route?

A

Reduces the size of the routing table

32
Q

What are the steps in configuring a summary route?

A
  1. Delete the current static route
  2. Configure the summary static route
  3. Verify the new static route
33
Q

What is the Cisco IOS command to configure Static Routes?

A

ip route {network-address} {subnet-mask} {interface}

34
Q

Can existing static routes set via ip route be modified?

A

No, the old static route must be deleted

35
Q

What is the Cisco IOS command to delete a Static Route?

A

no ip route {network-address} {subnet-mask} {interface}

36
Q

How is a Default Static Route configured via Cisco IOS commands?

A

Similar to configuring a static route, except that the Destination IP and Subnet Mask are all 0’s

e.g. ip route 0.0.0.0 0.0.0.0 {interface}