What is the OSI model?
The OSI model is a conceptual framework that describes how network communication occurs in seven layers. | OBJ 1.1 | The OSI (Open Systems Interconnection) reference model standardizes networking functions into seven layers, helping technicians understand where problems occur and how protocols interact.
What does OSI stand for?
Open Systems Interconnection. | OBJ 1.1 | OSI stands for ‘Open Systems Interconnection,’ which is the international standard framework for networking communications.
Why is the OSI model considered a guide rather than a strict protocol suite?
Because it provides a theoretical model of communication, not an actual protocol stack. | OBJ 1.1 | The OSI model serves as a guideline for how communication should occur. It isn’t tied to real-world protocol stacks like TCP/IP, which is why most OSI-specific protocols were never widely adopted.
Did most OSI protocols gain widespread adoption?
No, most OSI protocols did not catch on. | OBJ 1.1 | While the OSI model is widely used for teaching and troubleshooting, the actual OSI protocol suite was largely unsuccessful, and TCP/IP became the de facto protocol suite.
What mnemonic phrase helps remember the OSI layers in order?
All People Seem To Need Data Processing. | OBJ 1.1 | This mnemonic helps recall the OSI layers from top (Application) to bottom (Physical): Application, Presentation, Session, Transport, Network, Data Link, Physical.
What is the main function of the Physical layer in the OSI model?
The Physical layer defines the hardware transmission of raw data, including signaling, cabling, and connectors. | OBJ 1.1 | The Physical layer ensures that binary signals are transmitted over a medium such as copper, fiber, or wireless.
What type of problems are usually associated with the Physical layer?
Cabling, punch-down issues, connectors, or adapter failures. | OBJ 1.1 | Common issues include faulty cables, mis-punched connections, or bad NICs, all of which prevent successful transmission.
What are examples of troubleshooting actions at the Physical layer?
Running loopback tests, testing/replacing cables, or swapping adapter cards. | OBJ 5.1 | Physical layer troubleshooting is hands-on, focusing on verifying that hardware components are functional.
What is the primary role of the Data Link layer?
To provide the basic ‘language’ of communication between directly connected devices. | OBJ 1.1 | The Data Link layer establishes reliable communication over a physical medium, handling frames and addressing.
What protocol or address type is used at the Data Link layer on Ethernet?
Media Access Control (MAC) addresses. | OBJ 1.1 | Each device on an Ethernet network has a unique MAC address used to deliver frames locally.
Why is the Data Link layer often called the ‘switching’ layer?
Because switches forward traffic based on Data Link (MAC) addresses. | OBJ 1.1 | Switches operate at Layer 2 and make forwarding decisions using MAC address tables.
What is the main function of the Network layer?
Routing data packets between different networks. | OBJ 1.1 | The Network layer uses logical addresses (IP) to determine the best path across multiple networks.
Why does the Network layer fragment frames?
To allow packets to traverse networks with different maximum transmission units (MTUs). | OBJ 1.1 | Fragmentation ensures packets fit within the size constraints of each network segment.
What is the purpose of the Transport layer?
To ensure reliable or best-effort delivery of data through segmentation and reassembly. | OBJ 1.1 | The Transport layer manages communication reliability, error checking, and flow control.
Which two protocols operate at the Transport layer?
Transmission Control Protocol (TCP) and User Datagram Protocol (UDP). | OBJ 1.1 | TCP provides reliable, connection-oriented delivery, while UDP is faster but connectionless and unreliable.
What is the main role of the Session layer?
To manage communication sessions between devices, including start, stop, and restart functions. | OBJ 1.1 | The Session layer keeps track of ongoing conversations, ensuring data streams remain organized.
What types of protocols are associated with the Session layer?
Control protocols and tunneling protocols. | OBJ 1.1 | Protocols at this layer establish, maintain, and tear down communication sessions.
What are the responsibilities of the Presentation layer?
Data translation, character encoding, and encryption/decryption. | OBJ 1.1 | This layer ensures that application data is readable and secure across systems.
Why is the Presentation layer often combined with the Application layer?
Because data formatting and encryption are closely tied to application processes. | OBJ 1.1 | In many implementations, layers 6 and 7 functions are bundled into the application itself.
What does the Application layer provide to users?
Direct interaction with network services and applications. | OBJ 1.1 | This layer is where protocols like HTTP, FTP, and DNS allow users to access network resources.
Name four common protocols that operate at the Application layer.
HTTP, FTP, DNS, and POP3. | OBJ 1.1 | These protocols enable web browsing, file transfer, name resolution, and email retrieval.
At the Application layer, what protocol is used when accessing Gmail?
HTTPS. | OBJ 1.1 | HTTPS provides web application access with encryption.
At the Presentation layer, what technology is used to secure Gmail?
SSL/TLS encryption. | OBJ 1.1 | SSL/TLS ensures confidentiality and integrity of transmitted data.
At the Session layer, how is communication linked to the transport layer?
The Session layer establishes and maintains the link between presentation data and transport encapsulation. | OBJ 1.1 | Sessions keep the HTTPS connection alive across multiple requests.