what-is-osi-model

SHARE

OSI Model

The OSI model is a conceptual framework that defines how different software and hardware components in a network communicate. It was developed by the International Organization for Standardization (ISO) to facilitate interoperability between other vendors' networking technologies. The model consists of seven layers, each with a specific function and role in communication.

Understanding the seven layers of the OSI Model

The OSI (Open Systems Interconnection) model consists of seven layers: the Physical Layer, Data Link Layer, Network Layer, Transport Layer, Session Layer, Presentation Layer, and Application Layer. Each layer has its distinct role and set of protocols, working together to enable efficient and reliable communication in network systems, which I've described below. 

Visual representation of the OSI Model

The picture below visualises the seven layers of the OSI model and the direction of communication between the client and server to give more insight into the concept. Typically, software applications communicate from the Application Layer towards the Physical Layer and vice versa for the server side. Below the image, I'll dive into each layer one by one. 

OSI Model

Physical layer

The Physical layer deals with transmitting and receiving unstructured raw data bits over physical media, such as cables or wireless signals. It defines the network's physical components' electrical, mechanical, and functional specifications.

Data Link layer

The Data Link layer ensures error-free transmission of data frames between adjacent network nodes. It handles data framing, flow control, error detection, and correction. Ethernet and Wi-Fi are examples of protocols that operate at this layer.

Network layer

The Network layer logically addresses and routes data packets across multiple networks. It determines the most efficient path for data transmission, considering network congestion, packet prioritisation, and network topology. The Internet Protocol (IP) operates at this layer. 

Transport layer

The Transport layer ensures reliable and error-free data transfer between end systems. It breaks down large data chunks into smaller segments, manages their sequencing, and provides error recovery mechanisms. The Transmission Control Protocol (TCP) is a widely used transport layer protocol.

Session layer

The Session layer establishes, maintains, and terminates communication sessions between applications. It allows applications running on different systems to develop connections, synchronise their actions, and manage data exchange. 

Presentation layer

The Presentation layer is responsible for data representation, encryption, and compression. It ensures that data exchanged between applications is adequately formatted and understandable by the receiving end. It also handles encryption and decryption for secure transmission.

Application layer

The Application layer provides a platform for applications to interact with the network. It encompasses protocols such as HTTP (Hypertext Transfer Protocol), FTP (File Transfer Protocol), and SMTP (Simple Mail Transfer Protocol), enabling services like web browsing, file transfer, and email communication. 

The importance of the OSI Model in software engineering

The OSI model plays a pivotal role in software engineering, offering numerous benefits and opportunities for network systems. Its importance can be observed in various aspects, such as standardisation and interoperability, troubleshooting and network analysis, protocol development and implementation, scalability and flexibility. Explore how the OSI model enhances software engineering practices in these key areas.

Standardisation and interoperability

The OSI model's layered architecture allows for standardisation, making it easier for software engineers to develop and integrate applications into existing networks. Software developers can ensure compatibility and seamless communication between network components by adhering to the model.

Troubleshooting and network analysis

The OSI model provides a structured approach to troubleshooting network issues. By understanding the specific layer where a problem occurs, software engineers can narrow their investigation and focus on the relevant protocols and components. This accelerates problem-solving and minimises downtime. 

Protocol development and implementation

The OSI model serves as a blueprint for designing and implementing network protocols. Each layer has well-defined functions and responsibilities, enabling software engineers to develop protocols that align with specific requirements. This modular approach simplifies the development process and facilitates innovation in networking.

Scalability and flexibility

The OSI model's layered architecture offers scalability and flexibility in network design. As new technologies emerge, additional layers or protocols can be added without disrupting the existing infrastructure. This adaptability allows software engineers to accommodate evolving network requirements and integrate new functionalities seamlessly.

Some real-world scenarios

The two scenarios below demonstrate how the OSI model's layered approach allows for modular design, interoperability, and efficient communication between software components involved in network communication.

Scenario 1: Establishing a web connection

Let's say you open a web browser and type in a website's URL. The following steps occur, reflecting different layers of the OSI model:

  1. Application Layer: The web browser (application layer) sends an HTTP request to retrieve the webpage. The request includes the URL and other necessary parameters.

  2. Transport Layer: The Transport layer (e.g., TCP) breaks the data into smaller packets, adds sequence numbers, and attaches the source and destination port numbers. It ensures reliable and ordered delivery of packets.

  3. Network Layer: The Network layer (e.g., IP) adds the packets' source and destination IP addresses. It determines the optimal path for packet transmission across different networks.

  4. Data Link Layer: The Data Link layer (e.g., Ethernet) encapsulates the packets into frames, adds MAC addresses (source and destination) and performs error checking.

  5. Physical Layer: The Physical layer handles the actual transmission of frames over the physical medium, such as Ethernet cables or wireless signals. 

At the receiving end, the process reverses. The Physical layer receives the frames; the Data Link layer extracts the packets. The Network layer determines the destination, and so on. Eventually, the Application layer presents the retrieved webpage to the user. 

Scenario 2: Wending an email

Let's consider the process of sending an email from your computer to a recipient's mailbox:

  1. Application Layer: Your email client (e.g., Outlook) uses the SMTP protocol (Simple Mail Transfer Protocol) to compose an email, including the sender's address, recipient's address, subject, and message body.

  2. Transport Layer: The Transport layer (e.g., TCP) breaks the email into smaller packets, assigns sequence numbers, and attaches the source and destination port numbers.

  3. Network Layer: The Network layer (e.g., IP) adds the packets' source and destination IP addresses. It determines the packets' route to the recipient's mail server.

  4. Data Link Layer: The Data Link layer (e.g., Wi-Fi) encapsulates the packets into frames, adds MAC addresses (source and destination) and performs error checking.

  5. Physical Layer: The Physical layer transmits the frames over the physical medium, such as Wi-Fi signals or network cables.

At the recipient's mail server, the process is reversed. The Physical layer receives the frames; the Data Link layer extracts the packets. The Network layer directs the packets to the appropriate mail server, and so on. Finally, the recipient's email client retrieves the email from the mail server, and the user can read the message.

Layers matter

In software engineering, the OSI model plays a vital role in enabling the development, implementation, and maintenance of efficient and interoperable network systems. By understanding the seven layers and their functions, software engineers can design robust and scalable applications that effectively communicate over networks. Embracing the OSI model empowers engineers to navigate the complex realm of network protocols, troubleshoot issues efficiently, and contribute to the advancement of software engineering in an interconnected world.

Frequently Asked Questions
What is the OSI model?

The OSI (Open Systems Interconnection) model is a conceptual framework that standardises the functions of a communication system into seven distinct layers. It provides a systematic approach to understanding and describing how network protocols and technologies interact and work together.


What are the seven layers of the OSI model?

The seven layers of the OSI model, from the lowest to the highest, are: physical layer, data link layer, network layer, transport layer, session layer, presentation layer, and application layer.


What is the purpose of each layer in the OSI model?

The Physical Layer deals with transmitting raw bitstream over physical media. The Data Link Layer manages the reliable transmission of data frames between adjacent nodes. The Network Layer handles addressing, routing, and packet forwarding. The Transport Layer ensures reliable delivery of data across network connections. The Session Layer establishes, maintains, and terminates communication sessions. The Presentation Layer handles data representation and encryption/decryption. The Application Layer provides services directly to the end-user applications.


What is the advantage of using the OSI model?

The OSI model provides a transparent and standardised framework for network communication. It promotes interoperability between different vendors and technologies, allows for modular design and development, simplifies troubleshooting, and enables the integration of new protocols or technologies without affecting the existing layers.


What is the relationship between the OSI model and TCP/IP protocol suite?

The TCP/IP protocol suite, widely used in today's internet, is not an exact match to the OSI model but can be mapped to it. The TCP/IP suite combines functionalities from multiple OSI layers into fewer layers, such as the Internet Layer (combining Network and Data Link Layers) and the Transport Layer. However, the underlying principles and concepts of both models remain similar.


Are all seven OSI model layers implemented in every network device?

No, not all network devices implement all seven layers of the OSI model. The number of layers implemented depends on the device's functionality and position in the network hierarchy. For example, a simple network


Articles you might enjoy

Piqued your interest?

We'd love to tell you more.

Contact us
Tuple Logo
Veenendaal (HQ)
De Smalle Zijde 3-05, 3903 LL Veenendaal
info@tuple.nl
Quick Links
Customer Stories