Section 16: Routing Fundamentals

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/25

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:39 AM on 8/1/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

26 Terms

1
New cards

What is a routing table?

Consists of directly connected networks, static routes, and dynamically learned routes — lists best next hop(s) to destination networks

2
New cards

What is a default route?

Catch-all route for traffic that doesn't match any more specific route

3
New cards

What command views the routing table?

show ip route

4
New cards

What does a "C" route indicate in show ip route?

Connected Route — directly connected network

5
New cards

What does an "L" route indicate in show ip route

Local Route — /32 address configured on the router's own interface

6
New cards

Local routes always have a [...] mask

/32

7
New cards

Which has the longest prefix match: /16, /24, or /28?

/28 — more specific mask = longer prefix match

8
New cards
9
New cards

When multiple equal cost routes exist for same destination, router

adds all to routing table and load balances

10
New cards

Static route command syntax

ip route <network> <mask> <next-hop>

11
New cards

What requirement must be met for the next-hop address used in a static route?

It must be directly reachable — i.e., reachable via a directly connected interface. You can't point a static route at an address that itself requires another route to reach.

12
New cards

What condition must a set of subnets meet in order to be summarized into a single route?

They must fall within a contiguous range.

13
New cards

When a destination matches multiple routes in the routing table with different prefix lengths, which route wins?

The route with the longest prefix match (the most specific route).

14
New cards

What does a router do when it has multiple routes to the exact same destination network and prefix length?

It load-balances traffic across the next hops.

15
New cards

What is the destination network and mask used to configure a default static route?

0.0.0.0 0.0.0.0 (the "quad-zero" route).

16
New cards

What is a default route labeled as in the output of show ip route?

Gateway of last resort.

17
New cards

How are dynamic routing protocols classified, and which protocols fall into each category?

IGPs (used within an autonomous system) — Distance Vector: RIP; Advanced Distance Vector: EIGRP; Link State: OSPF, IS-IS. EGPs (used between autonomous systems) — Path Vector: BGP.

18
New cards

What are the default administrative distances (low to high) for: connected, static, eBGP, EIGRP, OSPF, IS-IS, RIP?

Connected = 0, Static = 1, eBGP = 20, EIGRP = 90, OSPF = 110, IS-IS = 115, RIP = 120.

19
New cards

When a router has routes to the same destination from two different sources, which one does it prefer — lower or higher administrative distance?

Lower AD is preferred (more trusted).

20
New cards

Why is it best practice to configure loopback interfaces as passive interfaces on a routing protocol?

Loopbacks don't need to form neighbor relationships, so there's no reason to send routing protocol traffic out of them.

21
New cards

What metric does OSPF use, and what is it based on by default?

Cost, automatically calculated from interface bandwidth.

22
New cards

Why might RIP and OSPF choose different paths through the same physical topology?

RIP optimizes for fewest hops regardless of bandwidth/speed; OSPF optimizes for lowest cumulative cost (bandwidth-based), so RIP can pick a slower, shorter-hop path OSPF would avoid.

23
New cards

What is the metric of RIP

Hop Count

24
New cards

What is it called when two routers running the same IGP find each other and form a relationship?

An adjacency.

25
New cards

Does longest prefix match or administrative distance get evaluated first when choosing between routes to overlapping destinations?

Longest prefix match — it's applied before AD is ever considered. AD only breaks ties when prefix length is identical.

26
New cards

What is a floating static route, and how is it configured?

A backup static route made to only be used when the primary route fails, by manually setting its administrative distance higher than the primary route's.