2.1 - Introduction to IP Flashcards

1
Q

In the moving truck analogy, what is the truck?

A

The truck is the Internet Protocol.

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

In the moving truck analogy, what do the boxes hold?

A

Data.

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

In the moving truck analogy, how is the box labeled?

A

The box is labeled with a port number, which would correspond to the “room” in the “house”, or the application on the computer/server.

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

Explain the breakdown of what is contained within the ethernet payload.

A

The ethernet payload, with a ethernet header and trailer, will consist of an IP header and an IP payload. The IP payload might consist of a TCP header with a TCP payload, and the TCP payload itself can consist of different types of data.

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

At what level on the OSI model do TCP and UDP operate?

A

OSI Level 4.

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

What does it mean for TCP to be “connection-oriented”?

A

It means that there is a formal setup and close to the connection.

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

What does it mean for TCP to be “reliable”?

A

It can resend data that was missed entirely or resend data that was sent out of order.

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

What does it mean for TCP to have “flow control”?

A

The receiving device can decide the flow of information being sent.

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

What does UDP stand for?

A

User Datagram Protocol

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

What does TCP stand for?

A

Transmission Control Protocol

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

What does it mean for UDP to be “connectionless”?

A

There is no formal open or close to the connection

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

What does it mean for UDP to be “unreliable”?

A

It means that there is no receipt/acknowledgment from the receiving device that the data was received.

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

Does UDP have flow control?

A

No.

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

What is the most common use of UDP?

A

Real-time communication (e.g., phone calls).

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

What are two connectionless protocols and what are they used for?

A

DHCP - Dynamic Host Configuration Protocol, used to automatically assign IP addresses to devices
TFTP - Trivial File Transfer Protocol

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

What are two connection-oriented protocols?

A

HTTPS (Hypertext Transfer Protocol Secure), commonly used for data in web browsers and SSH (Secure Shell), used for an encrypted form of terminal communication between devices.

17
Q

What is a “non-ephemeral” port number?

A

A permanent port number, usually on a server or a service, that does not change and is not temporary. Usually ports 0 through 1,023.

18
Q

What is an “ephemeral” port number?

A

A temporary port number, usually from 1,024 through 65,535 that is determined in real-time by the client.

19
Q
A