Lecture 7.Routing Concept. Static Routing.pdf Flashcards

(21 cards)

1
Q

What is routing?

A

A: Routing is the process a router uses to find the best path to send packets to a destination device.

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

What are the two types of route configuration?

A

A: Manual (Static Routing) and Automatic (Dynamic Routing).

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

What is static routing?

A

A: Static routing is when the network administrator manually configures the path to the destination on the router.

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

What is a routing table?

A

A: A routing table is a data table stored in a router that lists the routes to particular network destinations.

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

How does a router use a routing table?

A

A: It checks the destination IP address of a packet against the table to decide where to forward it.

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

What happens if the destination IP address is not in the routing table?

A

A: The router drops the packet.

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

What can you learn from a routing table?

A

A: The topology of the network.

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

What is a directly connected static route?

A

A: A route that uses the exit interface of the router to reach the destination network.

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

How do you configure a direct static route?

A

R1(config)#ip route 192.168.1.0 255.255.255.0 g0/0

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

What does 192.168.1.0 255.255.255.0 mean?

A

It is the destination network address and its subnet mask.

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

Why must you configure static routes on both routers?
.

A

A: So traffic can be routed in both directions

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

What is recursive static routing?

A

A: A method where the next-hop IP address is used instead of the exit interface.

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

How do you configure a recursive static route?

A

R1(config)#ip route 192.168.1.0 255.255.255.0 192.168.2.1

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

What is a summary route?

A

A: A route that summarizes multiple specific routes into a single one.

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

How do you configure summary routing?

A

Steps:

  1. Write two network addresses.
  2. Convert the last different part to binary.
  3. Keep similar binary bits; change others to 0s.
  4. The subnet mask is based on the number of similar bits.
  5. The summarized IP address uses the common part.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the default route or route of last resort?

A

A: A static route used when no other specific route is found in the table.

17
Q

How do you configure a default static route?

A

R1(config)#ip route 0.0.0.0 0.0.0.0 g0/0

18
Q

What is floating static routing?

A

A: A backup static route with a higher administrative distance than the primary route.

19
Q

What is the purpose of floating static routing?

A

A: It acts as a backup and is only used if the primary route fails.

20
Q

What is a metric in routing?

A

A: A value that defines the reliability or cost of a path within a routing protocol.

21
Q

What is administrative distance?

A

A: A value that defines the reliability of the route between different routing protocols (lower is better).