5A Flashcards

1
Q

What is a protocol?

A

A protocol is a standard set of rules that allow electronic devices to communicate with each other.

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

Why are protocols important?

A

These rules dictate how to format, transmit and receive data so computer network devices, from servers and routers to endpoints, can communicate regardless of the differences in their underlying infrastructures, designs, or standards.

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

What does TCP/IP stand for?

A

TCP = Transmission Control Protocol
IP = Internet Protocol Suite

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
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
5
Q

A majority of the internet uses what protcol?

A

TCP/IP

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

How many layers are in the TCP/IP model?

A

5

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

The TCP/IP model can be implemented on almost all technologies, why is this?

A

Because it is indifferent to the actual hardware implementation,
i.e., the physical layer of OSI Model.

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

What layers differ between the OSI and TCP/IP models?

A

All three top layers of OSI Model are compressed together in single Application layer of TCP/IP Model.

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

What is the top layer of the TCP/IP model?

A

Layer 5 - Application

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

What is the application layer?

A

The Application layer is where TCP/IP applications requiring network communications live.

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

What are some examples of the application layer?

A

email clients and web browsers

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

What is the most used TCP/IP application?

A

HTTP which is used for surfing the internet

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

What is the fourth layer of the TCP/IP model?

A

Transport

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

What does the transport layer do?

A

creates virtual TCP or UDP connections between applications running on different hosts by. It uses TCP for reliable connections and UDP for fast connections. This layer sends and receives data to and from the applications running on its host. The Transport layer assigns port numbers to the protocols running in applications on the host. It then adds a TCP or UDP header to the messages received from the applications detailing the source and destination port numbers.

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

What is the third layer of the TCP/IP model?

A

Network

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

What does the network layer do?

A

is responsible for creating the packets that move across the network. When transmitting data, this layer adds a header containing the source and destination IP addresses to the data received from the Transport layer. The packet it creates will then be forwarded to the MAC or Data Link layer. When receiving data, this layer is used to determine if the packet received by the host contains the host’s IP address. If it does, the data is forwarded up to the Transport layer.

17
Q

What is the second layer of the TCP/IP model?

A

Data Link

18
Q

What does the data link layer do?

A

is responsible for creating the frames that move across the network. This layer uses Media Access Controller (MAC) to generate the frames that will be transmitted. The MAC controls the physical transmission media.

When transmitting data, this layer adds a header containing the source and destination MAC addresses to the packet received from the Network layer (layer 3). The frame it creates will then be forwarded to the Physical layer.

When receiving data, this layer is used to determine if the frame received by the host contains the host’s MAC address. If it does, the data is forwarded up to the Network layer.

19
Q

What does MAC stand for?

A

Media Access Controller

20
Q

Every host on the network has at least how many MAC addresses?

A

At least one

21
Q

What is the first layer of the TCP/IP model?

A

Physical

22
Q

What does the physical layer do?

A

encodes and decodes the bits found in a frame. It sends and receives signals on the physical wire or antenna to transmit/receive the bits found in frames.

23
Q

Each layer adds information called a ___ to the data being passed to it?

A

Header

24
Q

The header does what?

A

Contains information the layer needs to perform its job

25
Q

The data generated by the transport layer is referred to as a ___ if TCP is used.

A

Segment

26
Q

The data generated by the transport layer is referred to as a ___ if UDP is used.

A

Datagram