Chapter 8 - IP Routing Flashcards

1
Q

Describe the basic IP routing process.

A

You need to remember that the frame changes at each hop but that the packet is never changed or manipulated in any way until it reaches the destination device (the TTL field in the IP header is decremented for each hop, but that’s it!).

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

List the information required by a router to successfully route packets.

A

To be able to route packets, a router must know, at a minimum, the destination address, the location of neighboring routers through which it can reach remote networks, possible routes to all remote networks, the best route to each remote network, and how to maintain and verify routing information.

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

Describe how MAC addresses are used during the routing process.

A

A MAC (hardware) address will only be used on a local LAN. It will never pass a router’s interface. A frame uses MAC (hardware) addresses to send a packet on a LAN. The frame will take the packet to either a host on the LAN or a router’s interface (if the packet is destined for a remote network). As packets move from one router to another, the MAC addresses used will change, but normally the original source and destination IP addresses within the packet will not.

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

View and interpret the routing table of a router.

A

Use the show ip route command to view the routing table. Each route will be listed along with the source of the routing information. A C to the left of the route will indicate directly connected routes, and other letters next to the route can also indicate a particular routing protocol that provided the information, such as, for example, R for RIP.

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

Differentiate the three types of routing.

A

The three types of routing are static (in which routes are manually configured at the CLI), dynamic (in which the routers share routing information via a routing protocol), and default routing (in which a special route is configured for all traffic without a more specific destination network found in the table).

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

Compare and contrast static and dynamic routing.

A

Static routing creates no routing update traffic and creates less overhead on the router and network links, but it must be configured manually and does not have the ability to react to link outages. Dynamic routing creates routing update traffic and uses more overhead on the router and network links.

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

Configure static routes at the CLI.

A

The command syntax to add a route is: ip route [destination_network] [mask] [next-hop_address or exitinterface] [administrative_distance] [permanent].

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

Create a default route.

A

To add a default route, use the command syntax: ip route 0.0.0.0 0.0.0.0 ip-address or exit interface type and number.

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

Understand administrative distance and its role in the selection of the best route.

A

Administrative distance (AD) is used to rate the trustworthiness of routing information received on a router from a neighbor router. Administrative distance is an integer from 0 to 255, where 0 is the most trusted and 255 means no traffic will be passed via this route. All routing protocols are assigned a default AD, but it can be changed at the CLI.

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

Differentiate distance-vector, link-state and hybrid routing protocols.

A

Distance-vector routing protocols make routing decisions based on hop count (think RIP), while link-state routing protocols are able to consider multiple factors such as bandwidth available and building a topology table. Hybrid routing protocols exhibit characteristics of both types.

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

Configure RIP routing.

A

To configure RIP routing, first you must be in global configuration mode and then you type the command router rip. Then you add all directly connected networks, making sure to use the classful address and the version 2 command and to disable auto-summarization.

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

At the appropriate command prompt, create a static route to network 172.16.10.0/ 24 with a next-hop gateway of 172.16.20.1 and an administrative distance of 150.

A

router (config) #ip route 172.16.10.0 255.255.255.0 172.16.20.1 150

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

When a PC sends a packet to another PC in a remote network, what destination addresses will be in the frame that it sends to its default gateway?

A

It will use the gateway interface MAC at L2 and the actual destination IP at L3.

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

At the appropriate command prompt, create a default route to 172.16.40.1.

A

router (config)# ip route 0.0.0.0 0.0.0.0 172.16.40.1

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

On which type of network is a default route most beneficial?

A

Stub network

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

At the appropriate command prompt, display the routing table on your router.

A

Router# show ip route

17
Q

When creating a static or default route, you don’t have to use the next-hop IP address; you can use the ___________________.

A

Exit interface

18
Q

True/ False: To reach a remote host, you must know the MAC address of the remote host.

A

False. The MAC address would be the router interface, not the remote host.

19
Q

True/ False: To reach a remote host, you must know the IP address of the remote host.

A

True.

20
Q

At the appropriate command prompt( s), prevent a router from propagating RIP information out serial 1.

A

router (config)# router rip

router (config-router)# passive-interface S1

21
Q

True/ False: RIPv2 is considered classless.

A

True.