Chapter 7: Routing Flashcards

1
Q

Define: Layer 3 Capable Switch

A

A multilayer switch (MLS) that can understand and route IP traffic.

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

What tells a router exactly where to send the packets it receives?

A

Its routing table

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

Is there a one-to-one correlation of routes to ports shown in a routing table?

A

No

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

What is in the “Destination” column in a routing table?

A

A defined network ID (IP address).

Every network ID directly connected to one of the router’s ports is always listed here. The default gateway is also here.

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

What is in the “Gateway” column in a routing table?

A

The IP address for the next hop router.

If the outgoing packet is for a network ID that’s not directly connected to the router, the Gateway column tells the router the IP address of a router to which to send this packet (default gateway).

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

What is in the “Genmask” column in a routing table?

A

A subnet mask

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

What is in the “Flags” column in a routing table?

A

The code that describes the destination.

U: Means the route is up and working.
H: Means this route is a host (host IP address).
G: Means this is the route to the gateway.

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

What is in the “Metric, Ref, and Use” columns in a routing table?

A

Numerical values used for picking the best route to a destination.

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

What is in the “Type and Iface” columns in a routing table?

A

They tell the router which of its ports to use and what type of port it is.

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

How does a router decide where to send a packet?

A

It compares the destination IP address on a packet to every route listed in the routing table and then sends the packet out.

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

What is the “default route” on a routing table?

A

It tells the router what to do with every incoming packet unless another line in the routing table gives another route.

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

What command do you type in a terminal on Linux to view a computer’s routing table?

A

ip route

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

What command do you type in both macOS and Windows to view a computer’s routing table?

A

netstat -r

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

What is a routing metric?

A

A relative value that defines the desirability of a route.

It helps routers choose between multiple known routes to get a packet to its destination. The route with the lowest metric always wins.

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

What does Network Address Translation (NAT) do?

A

NAT replaces the source IP address of a computer with the source IP address from the outside router interface on outgoing packets. NAT is performed by NAT-capable routers.

Routers running some form of NAT hide the IP addresses of computers on the LAN but still enable Internet access.

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

What does Port Address Translation (PAT) do?

A

The router running PAT records the source and destination IP addresses and port numbers for the TCP segment or UDP datagram and translates the private IP address for a public IP address and the source port number for a unique port number.

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

How does Port Forwarding work?

A

Specific local addresses are designated for various network services (ports).

Computers outside the network can request a service using the public IP address of the router and the port number of the desired service. The router would examine the packet, look at the list of services mapped to local addresses, and then send that packet to the proper recipient.

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

What does Static NAT (SNAT) do?

A

SNAT maps a single public IP address to a single machine, enabling you to access that machine from outside the network and vice versa.

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

What does Dynamic NAT (DNAT) do?

A

Allows many computers to share a pool of routable IP addresses that number fewer than the computers.

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

The process that routers use to update routes to accommodate conditions is called ____.

A

dynamic routing

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

Define: Hop

A

Each network/router a packet passes through.

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

What are the three distinct groups of dynamic routing protocols?

A

Distance Vector
Link State
Hybrid

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

What are the four common criteria for determining a routing metric?

A

Hop count
Bandwidth
Delay
Cost

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

Which dynamic routing protocol type calculates the metric number to get to a particular network ID and compares that metric to the metrics of all the other routes to get to that same network ID, and then deletes all but the route with the lowest metric?

A

Distance vector routing protocols

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

How do routers using distance vector routing protocols communicate with each other?

A

They transfer their entire routing table to other routers in the WAN.

Each distance vector routing protocol has a maximum number of hops that a router will send its routing table.

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

When are routers in convergence or a steady state?

A

When the updating of the routing tables for all the routers has completed.

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

What are the two distance vector routing protocols?

A

Routing Information Protocol: RIPv1 and RIPv2

28
Q

Define: Autonomous System (AS)

A

One or more networks that share a unified policy regarding how they exchange traffic with other Autonomous Systems.

29
Q

Define: Autonomous System Number (ASN)

A

A globally unique number assigned by IANA to each Autonomous System that is 32 bits and displayed as two 16-bit numbers separated by a dot.

The routers that comprise the AS have to be configured to use the ASN.

30
Q

When routers in one Autonomous System (AS) need to communicate with routers in another AS, they use a/an ____ protocol.

A

Exterior Gateway Protocol (EGP)

31
Q

Who uses Interior Gateway Protocols (IGPs)?

A

The network or networks within an AS communicate with IGPs.

Enterprise networks also use IGPs for communication.

32
Q

What is the one EGP that the Internet uses for AS-to-AS communication?

A

Border Gateway Protocol (BGP)

Current version BGP-4

33
Q

What type of routing protocol is BGP classified as (besides as an EGP)?

A

A path vector routing protocol technically, but also considered a hybrid routing protocol.

34
Q

What are the AS-to-AS routers called?

A

Edge Routers

35
Q

What is route aggregation?

A

A way to simplify routing tables into manageable sizes. The Internet backbone routers track the shortest common network ID(s) of all the routes managed by each AS.

BGP uses and supports route aggregation.

36
Q

What is the main difference between Link State dynamic routing protocols and Distance Vector routing protocols when it comes to routing table updates?

A

Link State routing protocols announce and forward individual route changes as they appear.

Distance Vector routing protocols forward their whole routing table at specified time intervals.

37
Q

What are the two Link State dynamic routing protocols?

A

Open Shortest Path First (OSPF)

Intermediate System to Intermediate System (IS-IS)

38
Q

After OSPF-capable routers send out Hello packets and establish a neighborship with adjacent routers, what type of packets do they send to exchange information about routers and networks?

A

Link State Advertisement (LSA) packets

39
Q

Who creates Link State Advertisement (LSA) packets and how do they propagate?

A

LSAs are created by each router and are flooded from router to router through each OSPF area.

40
Q

How long does it take for OSPF-capable router convergence?

A

Almost immediately after all the routers communicate with LSAs.

41
Q

How do OSPF routers deal with link failures?

A

They correct them by quickly computing a new route with stored LSAs.

42
Q

What is the Open Shortest Path First (OSPF) metric?

A

Cost, which is a function of bandwidth.

The lowest cost route is always chosen and could go through more routers (hops) than if RIP was used.

43
Q

What is an OSPF area?

A

Administrative groupings of interconnected routers that are used to help control how routers reroute traffic if a link goes down.

44
Q

What is OSPF’s Area ID 0 (0.0.0.0)?

A

The central area (backbone) when you interconnect multiple areas. All traffic between areas has to go through the backbone.

A single area also gets Area ID 0 in small networks.

45
Q

Who uses the IS-IS link state dynamic routing protocol?

A

Internet Service Providers (ISPs)

46
Q

Define: Variable-Length Subnet Masking (VLSM)

A

Where networks that are connected through the router use different subnet masks.

47
Q

What type of dynamic routing protocol is Enhanced Interior Gateway Routing Protocol (EIGRP) and who developed it?

A

Hybrid

It has aspects of both distance vector and link state protocols.

Cisco developed it.

48
Q

What is route redistribution?

A

When a router takes routes it has learned by one method and announces those routes over another protocol.

Routers can speak multiple routing protocols simultaneously.

49
Q

A feature used by multilingual routers to determine which route is the most reliable when they have two or more protocol choices to connect to the same destination is called ____.

A

administrative distance or route preference

50
Q

What are the four Interior Gateway Protocols (IGPs)?

A

RIP
OSPF
IS-IS
EIGRP

51
Q

What do you call (three common names) the serial cable used to connect to and communicate with a router?

A

Console cable
Rollover cable
Yost cable

52
Q

What software do you use to connect to and configure routers once you have connected physically to the router?

A

A terminal emulation program that enables your PC to pretend to be a dumb terminal.

53
Q

What is Cisco’s proprietary operating system?

A

Cisco IOS

54
Q

What are the four ways you can access a router?

A

Serial cable
Web access
Network management software
Terminal emulation protocols

55
Q

When should you plug in a new router to an existing network?

A

After it has been fully configured.

56
Q

What can Network Management Software (NMS) do?

A

It can describe, visualize, and configure a network. NMS also communicates with routers, switches, and computers.

57
Q

What are the two terminal emulation protocols that allow you to connect to routers?

A

Telnet (older, not secure)
Secure Shell (SSH)

These allow you to use the network instead of a serial cable.

58
Q

What are the five general steps to configure a router?

A
  1. Set up the WAN side
  2. Set up the LAN side
  3. Establish Routes
  4. Configure a Dynamic Protocol (optional)
  5. Document and Backup
59
Q

Define: Maximum Transmission Unit (MTU)

A

The maximum size of a single protocol data unit (PDU) that a given networking technology can transmit.

60
Q

The largest packet size transmissible without fragmentation through all the hops in a route is called ____.

A

path MTU

61
Q

What is Path MTU Discovery?

A

How devices determine the path MTU.

62
Q

What command do you type in the Windows command prompt to record the route between any two hosts and the information of every router between them?

A

tracert

63
Q

What command do you type in a terminal for macOS/UNIX/Linux to record the route between any two hosts and the information of every router between them?

A

traceroute

64
Q

What Windows command line tool pings each node on a route and computes the performance over a set time and then shows you the summary after it has finished?

A

pathping

65
Q

What Linux tool is dynamic and continually updates the route you have selected?

A

My traceroute (mtr)