Objective 1.1 Flashcards

Explain concepts related to the Open Systems Interconnection (OSI) reference model. (31 cards)

1
Q

What is the OSI model?

A

A 7-layer conceptual framework that standardizes the functions of a network.

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

What is the OSI model used for?

A

It’s used to understand and troubleshoot how data is sent and received, ensuring different vendor products can work together.

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

List the 7 layers of the OSI model from Layer 7 to Layer 1.

A
  • Application
  • Presentation
  • Session
  • Transport
  • Network
  • Data Link
  • Physical
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a popular mnemonic for remembering the OSI layers from 7 down to 1?

A

All People Seem To Need Data Processing.

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

Function:

Layer 7

A

The Application Layer provides the interface for user applications to access network services.

It’s the layer closest to the end-user.

Example: Your web browser using HTTP.

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

What is the Protocol Data Unit (PDU) for the Application, Presentation, and Session layers?

A

Data.

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

Name some common protocols that operate at the Application Layer (Layer 7).

A

HTTP, HTTPS, FTP, SMTP, DNS, RDP, SNMP, Telnet.

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

Layer 6: Function

A

The Presentation Layer acts as a data translator for the network. It handles character encoding, data compression, and encryption/decryption.

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

What are the three primary responsibilities of the Presentation Layer (Layer 6)?

A
  1. Translation (e.g., ASCII to EBCDIC)
  2. Compression
  3. Encryption & Decryption (e.g., formatting for SSL/TLS)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Layer 5: Function

A

The Session Layer establishes, manages, and terminates connections (sessions) between two applications on different hosts.

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

What are the primary tasks of the Session Layer (Layer 5)?

A

Establishing, maintaining, and terminating the communication session.

It also handles dialogue control (determining who can send data and when).

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

Layer 4: Function

A

The Transport Layer provides host-to-host communication, handling data segmentation, reassembly, and error control.

It defines how data is sent.

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

What is the Protocol Data Unit (PDU) at the Transport Layer (Layer 4)?

A

Segment.

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

What are the two primary protocols at the Transport Layer (Layer 4)?

A
  1. TCP (Transmission Control Protocol): Reliable, connection-oriented.
  2. UDP (User Datagram Protocol): Unreliable, connectionless.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What makes TCP a “reliable” protocol?

A

It uses a three-way handshake to establish a connection and uses sequencing and acknowledgments to ensure all data arrives in the correct order without errors.

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

Why would you use UDP if it’s “unreliable”?

A

It is much faster than TCP because it does not have the overhead of acknowledgments or sequencing.

It’s ideal for time-sensitive applications like voice/video streaming or DNS lookups where speed is more important than perfect reliability.

17
Q

Layer 3: Function

A

The Network Layer is responsible for routing data between different networks.

It handles logical addressing (IP addresses).

18
Q

What is the Protocol Data Unit (PDU) at the Network Layer (Layer 3)?

19
Q

What is the primary type of address used at the Network Layer (Layer 3)?

A

Logical Address, specifically the IP address (IPv4 or IPv6).

20
Q

What is the primary network device that operates at Layer 3?

A

A Router. Routers make forwarding decisions based on IP addresses to send data to other networks.

A multilayer switch also performs Layer 3 functions.

21
Q

Layer 2: Function

A

The Data Link Layer is responsible for transferring data within a local network segment.

It handles physical addressing (MAC addresses) and error detection.

22
Q

What is the Protocol Data Unit (PDU) at the Data Link Layer (Layer 2)?

23
Q

What is the primary type of address used at the Data Link Layer (Layer 2)?

A

Physical Address, specifically the MAC (Media Access Control) address.

24
Q

What is the primary network device that operates at Layer 2?

A

A Switch. Switches make forwarding decisions based on MAC addresses to send data to the correct device on the local network.

25
What are the two sublayers of the Data Link Layer?
1. **LLC (Logical Link Control):** Talks to the Network Layer above. Handles flow control. 2. **MAC (Media Access Control):** Talks to the Physical Layer below. Controls access to the media and handles physical addressing.
26
Layer 1: Function
The **Physical Layer** is responsible for the actual transmission and reception of raw data bits over a physical medium (e.g., cables, radio waves).
27
What is the Protocol Data Unit (PDU) at the Physical Layer (Layer 1)?
**Bits**.
28
What are some examples of hardware or standards defined at the Physical Layer (Layer 1)?
Cables (Ethernet, fiber), connectors (RJ45), hubs, repeaters, transceivers, and signaling (voltages, light pulses, radio frequencies).
29
What is **encapsulation**?
The process of adding a header (and sometimes a trailer) to data as it moves down the OSI stack on the sending device. ## Footnote Each layer wraps the data from the layer above it.
30
Describe the data encapsulation process, including the PDU names.
Data from the Application layer becomes a **Segment** or **Datagram** at the Transport layer, a **Packet** at the Network layer, a **Frame** at the Data Link layer, and finally **Bits** on the Physical layer.
31
What is decapsulation?
The process of removing headers and trailers as data moves up the OSI stack on the receiving device. ## Footnote Each layer "unwraps" the data and passes it up to the next layer.