<Back
Introduction to the OSI model

Hello everyone 🖖


In this article, we will begin to consider the fundamental model of network interaction - OSI.


By the 70s, there were many different communication protocol stacks: TCP/IP, IBM SNA and others. Such diversity has given rise to the problem of incompatibility of devices using different protocols. In the early 80's, ISO (International Standards Organization) and ITU (International Telecommunications Union) developed a standard Open systems Interaction Model (OSI).


The OSI model defines:

  1. levels of interaction;
  2. standard level names;
  3. level functions.


The means of interaction in the OSI model are divided into seven levels:

  • applied (application layer);
  • presentation layer;
  • session layer;
  • transport (transport layer);
  • network (network layer);
  • channel (data link layer);
  • physical (physical layer).


Let's take an abstract look at how the OSI model interaction occurs between two applications.


Suppose we have two applications A and B running on different computers. Application A is a browser, and application B is an online store server. They exchange various messages, such as information about products or orders.



The browser, using the operating system system calls that form the API, sends requests to the application-level system tools with a request to send the request to the online store server. Next, this message passes through each level that is responsible for a specific function, for example, the presentation level for transcoding the message. At each level, service level headers are added to the message, which will be analyzed on the computer to which the request is addressed (in the image of the cell with numbers 1-7).


When the message reaches the means of the physical layer, which is responsible for transmitting the request over the communication lines, it is sent to the addressee.


It is worth noting that in this example, walking through the levels, until the moment of getting on the line, occurs within the processes on the same computer.


When the sent request reaches the second computer, it is received by its physical layer and is consistently moved up level by level. At each level, the headers assigned at the computer and browser levels are analyzed.


The protocols of the lower four levels are generally called network transport, since they completely solve the problem of transporting messages with a given level of quality in composite networks with arbitrary topology and various technologies. The remaining three levels are united by the fact that they are closely related to user applications, providing them with high-level services for the use of network resources and services.


In the following articles, we will look at each of the levels in more detail.

Hashtags:
#networks
Share:

Lates

Composition of the IT development team

In this article we will look at the composition of the IT solution development team

#developmentprocess

About graphs, simply.

In this article, we will begin our acquaintance with graphs, get acquainted with the breadth-first search algorithm (BFS) and implement the graph in the Rust programming language.

#graphs
#algorithms
#rust

What is the difference between outsourcing development and outstaffing an IT employee for development?

In this article we will understand what outsourcing and outstaff development are.

#developmentprocess

UI/UX design: The creation process

In this article we will talk about the main steps in the process of creating UI/UX design.

#developmentprocess

UI/UX design: Introduction

In this article, we begin to get acquainted with UI / UX design. This is the most important stage in the development of any visual application interface.

#developmentprocess

Agile, Six Sigma and No Principle

In the last article, we started diving into the development process. The first stage of this process is planning. At this stage, the project manager, together with other team members, forms a pool of tasks in accordance with some kind of project management methodology.

#developmentprocess

Meet the Pentest

We are beginning to consider one of the main methods of assessing the security of computer systems and networks for potential vulnerabilities - penetration testing

#pentest

Reducing the implementation period of MVP

Let's figure out the timing of the implementation of the MVP.

#developmentprocess

Choosing a programming language

In this article we will talk about choosing a programming language to study

#wannacode

Testing an MVP concept

We will figure out how not to waste the budget on MVP development in vain

#developmentprocess

Application Architecture Design: Introduction

In this article, we will talk about the process of creating the architecture of an IT solution.

#developmentprocess

The terms of references: Structure

In this publication we will consider the universal structure of ToR

#developmentprocess

Incorrect estimation of the cost of IT contractor services

Today we will talk about the incorrect assessment of the cost of developing IT solutions. This pain is one of the main ones for enterprises and startups, including IT contractors themselves.

#consultin

Introduction to Design Patterns in Software Development

In this article, we will begin to dive into the world of optimizing application architecture using design patterns.

#designpatterns

Choosing the direction of development for programming training

In this article, you will find out what areas of IT development there are, how they differ and in which they pay more

#wannacode

OSI Model Levels

In this article, we will take a closer look at each of the levels of the OSI model

#networks
#osi

Main types of application architecture

In this publication, we will look at what application architectures are

#developmentprocess

10 ways to use Rust Cargo

In this short article I have collected 10 ways to use the build system and package manager of the Rust programming language

#rust
#cargo

Documenting code in the Rust programming language

In this article, we will look at how documentation takes place in Rust and consider a very useful opportunity - writing tests through documentation.

#rust

CSS animation ripple

A simple example of how to implement ripple animation using HTML and CSS

#css

What is the purpose of an ER-diagram in the development process?

Let's discuss in general terms what an ER diagram is and what it is used for.

#developmentprocess

From concept to MVP

In this article, you will learn, by example, how to move from a concept to an MVP without unnecessary complications in the functionality of the product

#developmentprocess

What are UML diagrams used for?

In this article we will talk about what UML diagrams are, what they are and where they are used

#developmentprocess

Introduction to writing the terms of references

The Terms of Reference are an important part of the development process. In this article, we will begin to dive into this issue.

#developmentprocess

Introduction to software development

Today, most companies are faced with IT development and often do not get what they want. In this article, we begin to dive into the process of creating IT solutions.

#developmentprocess

From idea to concept

In this publication, we will talk about how the idea differs from the concept. Let's do this with an example of a specific goal

#developmentprocess

IT project management methodologies: Waterfall, Scrum, Prince2

In this article, we will consider the basic methodologies of IT project management.

#developmentprocess

Weighted graphs

In this article, we will get acquainted with weighted graphs, Dijkstra's algorithm, and its implementation in the Rust programming language.

#algorithms
#graphs
#rust

Development Process: Planning

In this publication, we will begin to consider the development process. Let's start with the planning process.

#developmentprocess