Top Banner
Copyrights to 2021hacker OSI Layer Model Open Systems Interconnection (OSI) Model
23

Osi Layer model provided by TopTechy.com

Jan 18, 2015

Download

Education

Vicky Kamboj

About osi layer model .
Provided by www.TopTechy.com
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

OSI Layer Model

Open Systems Interconnection (OSI) Model

Page 2: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

CONTENTS

What is OSI? Layer Architecture The 7 OSI Layers Interaction between the OSI layers Conclusion

Page 3: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

What is OSI?

The Open Systems Interconnection (OSI) is a model that was developed by the ISO (International Organization for Standards ) and it describes how information from a software application in one computer, moves through a network medium to a software application in another computer.

Page 4: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Layer Architecture

Layer architecture simplifies the network design.

It is easy to debug network applications in a layered architecture network.

The network management is easier due to the layered architecture.

Network layers follow a set of rules, called protocol.

The protocol defines the format of the data being exchanged, and the control and timing for the handshake between layers.

Page 5: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Characteristics of the OSI

Upper layers 7 Layers Lower layers

Page 6: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

The Upper Layers: This deals with Application issues and generally are implemented only in software. The highest layer, application layer is closest to the end user. This layer is where communication from one end user to another begins through the interaction between the application layer processes and the end user.

The Lower layers: This handles Data transport issues. The physical layer and Data link layers are implemented in hardware and software.

Page 7: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

OSI & TCP/IP Models layers

TCP/IP Model

Page 8: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

OSI Reference Model: 7 Layers

Page 9: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Physical Layer

Provides physical interface for transmission of information.

Defines rules by which bits are passed from one system to another on a physical communication medium.

Such characteristics as voltage levels, timing of voltage changes, physical data rates, maximum transmission distances, physical connectors, and other similar attributes are defined by physical layer specifications.

OSI Model

Page 10: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Data Link Layer

Breaks the outgoing data into frames and reassemble the received frames.

Handle errors by implementing an acknowledgement and retransmission scheme.

Implement flow control.

Supports simplex, half-duplex or full-duplex communication.

OSI Model

Page 11: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Network Layer

Implements routing of packets through the network.

Defines the most optimum path the packet should take from the source to the destination

Defines logical addressing so that any endpoint can be identified.

Routers and L3 Switches works here.

IP address understandable layer

OSI Model

Page 12: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Source-to-destination delivery

Page 13: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Transport Layer

Purpose of this layer is to provide a reliable mechanism for the exchange of data between two processes in different computers.

Ensures that the data units are delivered error free.

Ensures that data units are delivered in sequence.

Ensures that there is no loss or duplication of data units.

Provides connectionless or connection oriented service.

OSI Model

Page 14: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Session Layer

Session layer provides mechanism for controlling the dialogue between the two end systems. It defines how to start, control and end conversations (called sessions) between applications.

This layer requests for a logical connection to be established on an end-user’s request.Any necessary log-on or password validation is also handled by this layer.Session layer is also responsible for terminating the connection.

OSI Model

Page 15: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Presentation Layer

Presentation layer defines the format in which the data is to be exchanged between the two communicating entities.

Also handles data compression and data encryption (cryptography).

OSI Model

Page 16: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Application Layer

Application layer interacts with application programs and is the highest level of OSI model.

Examples of application layer are applications such as file transfer, electronic mail, remote login etc.

OSI Model

Page 17: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Interaction Between OSI Model Layers

Information sent from a software application in one system to a software application in another, must pass through each of the OSI layers. An example of this is shown in the diagram below:

Page 18: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Page 19: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

OSI in Action

A message begins at the top application layer and moves down the OSI layers to the bottom physical layer.

As the message descends, each successive OSI model layer adds a header to it.

A header is layer-specific information that basically explains what functions the layer carried out.

Conversely, at the receiving end, headers are striped from the message as it travels up the corresponding layers.

OSI Model

Page 20: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Page 21: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

A given layer within the OSI model communicates with three other layers:the layer directly above it, the layer directly below it and it’s peer layer in other networked computer system. In the diagram below, the data link layer in system A, communicates with the network layer and physical layer of system A. It also communicates with the data link layer of system B.

Page 22: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Page 23: Osi Layer model provided by TopTechy.com

Copyrights to 2021hacker

Conclusion

Overall, this presentation has tried to describe the OSI model,what it is all about and how communication occurs through the layers of the model from one user to another .