Lesson 7A Flashcards

1
Q

What is a routing table and what does it do?

A

A routing table is a list of directions that a router uses to decide where to send data packets. It includes information like the protocol, destination, interface, and gateway/next hop.

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

What are the four main types of routes in a routing table?

A

The four main types of routes are direct network routes, remote network routes, host routes, and default routes

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

What are remote network routes?

A

Remote network routes are paths to networks that are not directly connected to the router. The router reaches these networks through other routers.

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

What are direct network routes?

A

Direct network routes are the paths to networks directly connected to the router’s interfaces. These routes are automatically added to the routing table.

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

What are host routes?

A

Host routes are specific paths to individual IP addresses. They have a /32 network prefix, meaning they are very precise routes

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

What is a default route?

A

A default route is a special type of static route that the router uses when it doesn’t have an exact match for the destination. It’s represented by 0.0.0.0/0 for IPv4 or ::/0 for IPv6.

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

What is a static route?

A

A static route is a manually added path in the routing table. It doesn’t change unless edited by the administrator and can be either non-persistent or persistent.

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

What is the difference between non-persistent and persistent static routes?

A

A non-persistent static route disappears when the router restarts. A persistent static route stays in the routing table even after a restart.

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

How are the routing tables for routers A, B, and C configured in a series?

A

How are the routing tables for routers A, B, and C configured in a series?

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

What is the role of a router in a network?

A

A router is a device that connects multiple networks and directs data packets between them. It uses the routing table to decide the best path for each packet.

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

What does a router do with a packet?

A

A router looks at the destination address on the packet, checks its routing table to find where to send it, and then forwards it to the next place.

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

What is a hop in networking?

A

A hop is each time a packet moves from one router to another. For example, if a packet goes through 3 routers, that’s 3 hops.

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

What is a packet in networking?

A

A packet is a small piece of data sent over a network. Think of it like a letter in the mail, which carries information to its destination.

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

What is ARP and why is it used?

A

ARP (Address Resolution Protocol) is used in IPv4 to find the exact address of a device on the local network. It’s like looking up a house number to deliver a letter.

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

What is TTL in networking?

A

TTL (Time To Live) is a number in a packet that decreases by 1 each time it goes through a router. When TTL hits 0, the packet is discarded to prevent endless looping.

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

How does IPv4 handle packet fragmentation?

A

In IPv4, the packet uses ID, Flags, and Fragment Offset fields to keep track of the pieces so they can be reassembled correctly when they reach their destination.

13
Q

Why do packets get fragmented?

A

Packets are fragmented if they are too big to fit into the network frame size. It’s like cutting a large letter into smaller pieces to fit into a small envelope.

14
Q

What is the Maximum Transmission Unit (MTU)?

A

The MTU is the largest size of a packet or frame that can be sent over a network. For example, Ethernet usually has an MTU of 1500 bytes.

15
Q

How does IPv6 handle fragmentation differently from IPv4?

A

In IPv6, the router does not fragment packets. Instead, the sending device figures out the best size for the packet to fit through the network.

16
Q

What happens if a router doesn’t know where to send a packet?

A

If a router doesn’t know where to send a packet, it will use a default route if available. If there is no route, the packet will be dropped, and the sender will be notified that it couldn’t be delivered.