Objective 1.1 Flashcards
Explain concepts related to the Open Systems Interconnection (OSI) reference model. (31 cards)
What is the OSI model?
A 7-layer conceptual framework that standardizes the functions of a network.
What is the OSI model used for?
It’s used to understand and troubleshoot how data is sent and received, ensuring different vendor products can work together.
List the 7 layers of the OSI model from Layer 7 to Layer 1.
- Application
- Presentation
- Session
- Transport
- Network
- Data Link
- Physical
What is a popular mnemonic for remembering the OSI layers from 7 down to 1?
All People Seem To Need Data Processing.
Function:
Layer 7
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.
What is the Protocol Data Unit (PDU) for the Application, Presentation, and Session layers?
Data.
Name some common protocols that operate at the Application Layer (Layer 7).
HTTP, HTTPS, FTP, SMTP, DNS, RDP, SNMP, Telnet.
Layer 6: Function
The Presentation Layer acts as a data translator for the network. It handles character encoding, data compression, and encryption/decryption.
What are the three primary responsibilities of the Presentation Layer (Layer 6)?
- Translation (e.g., ASCII to EBCDIC)
- Compression
- Encryption & Decryption (e.g., formatting for SSL/TLS)
Layer 5: Function
The Session Layer establishes, manages, and terminates connections (sessions) between two applications on different hosts.
What are the primary tasks of the Session Layer (Layer 5)?
Establishing, maintaining, and terminating the communication session.
It also handles dialogue control (determining who can send data and when).
Layer 4: Function
The Transport Layer provides host-to-host communication, handling data segmentation, reassembly, and error control.
It defines how data is sent.
What is the Protocol Data Unit (PDU) at the Transport Layer (Layer 4)?
Segment.
What are the two primary protocols at the Transport Layer (Layer 4)?
- TCP (Transmission Control Protocol): Reliable, connection-oriented.
- UDP (User Datagram Protocol): Unreliable, connectionless.
What makes TCP a “reliable” protocol?
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.
Why would you use UDP if it’s “unreliable”?
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.
Layer 3: Function
The Network Layer is responsible for routing data between different networks.
It handles logical addressing (IP addresses).
What is the Protocol Data Unit (PDU) at the Network Layer (Layer 3)?
Packet.
What is the primary type of address used at the Network Layer (Layer 3)?
Logical Address, specifically the IP address (IPv4 or IPv6).
What is the primary network device that operates at Layer 3?
A Router. Routers make forwarding decisions based on IP addresses to send data to other networks.
A multilayer switch also performs Layer 3 functions.
Layer 2: Function
The Data Link Layer is responsible for transferring data within a local network segment.
It handles physical addressing (MAC addresses) and error detection.
What is the Protocol Data Unit (PDU) at the Data Link Layer (Layer 2)?
Frame.
What is the primary type of address used at the Data Link Layer (Layer 2)?
Physical Address, specifically the MAC (Media Access Control) address.
What is the primary network device that operates at Layer 2?
A Switch. Switches make forwarding decisions based on MAC addresses to send data to the correct device on the local network.