Questions tagged [osi]

The Open Systems Interconnection (OSI) Model - 'provide[s] a common basis for the coordination of [ISO] standard development from the purpose of system interconnection' [ISO/IEC 7498-1]. It applies to the OSI protocols, It is not a universal networking model, and was never intended to be, or a pedagogical tool either. TCP/IP has its own 5-layer model which precedes OSI by several years, so questions about TCP/IP layering should not use this tag.

The Open Systems Interconnection (OSI) model (ISO/IEC 7498-1) is a product of the Open Systems Interconnection effort at the International Organization for Standardization. It 'provide[s] a common basis for the coordination of [ISO] standard development from the purpose of system interconnection' in terms of abstraction layers. Similar communication functions are grouped into logical layers. A layer serves the layer above it and is served by the layer below it.


##The 7 Layers of the OSI Model

  1. Physical (This layer conveys the bit stream - electrical impulse, light or radio signal)
  2. Data Link (At this layer, data packets are encoded and decoded into bits)
  3. Network (This layer provides switching and routing technologies, creating logical paths)
  4. Transport (This layer provides transparent transfer of data between end systems, or hosts)
  5. Session (This layer establishes, manages and terminates connections between applications.)
  6. Presentation (provides independence from differences in data representation (e.g., encryption))
  7. Application (Communication partners are identified, quality of service is identified, user authentication and privacy are considere)

enter image description here


##References

113 questions
2
votes
1 answer

Connect to OSI Pi database using PHP

I am trying to connect to OSI Pi database and keeping getting the errors below. I have all the permissions set correctly because I can run VB code. It does read the server version correctly. Here is my PHP:
crh225
  • 821
  • 18
  • 34
2
votes
3 answers

Ethernet and OSI Model

I have a dumb question, first of all sorry for that. i am learning now 7 OSI Layer models and i stumble across one thing. The Ethernet which is in the second Data Link Layer provides the end-to-end connection via LANs, right? Does it mean that even…
doniyor
  • 36,596
  • 57
  • 175
  • 260
2
votes
1 answer

Check host availability by MAC address

Is it possible to check if host with secific MAC address are 'alive' ? I do NOT want to use 3-rd layer ISO/OSI and ICMP ping message
maseth
  • 841
  • 1
  • 11
  • 19
2
votes
1 answer

Send UDP packet, not using ARP, known IP and MAC

I am trying to send UDP over a network to a microcontroller. The microcontroller has had almost all of the IP stack stripped out to keep it lean, so cannot engage in ARP. The microcontroller is outputting broadcast packets, which I can receive so I…
0lOl0
  • 23
  • 1
  • 4
2
votes
6 answers

What are the functions of the Transport layer?

I have a homework question which asks what the four functions of the Transport layer are. It doesn't mean what the functions of TCP or UDP are, but the layer itself.
Groppe
  • 3,819
  • 12
  • 44
  • 68
1
vote
2 answers

What exactly is "Socket Layer" referred to in SSL?

Well I know the 7 and 4 layered models but nowhere I can find a layer called "socket".
Ashkan Kh. Nazary
  • 21,844
  • 13
  • 44
  • 68
1
vote
1 answer

OSI Model Layer

If a server is indicating that it is accepting connections, via fping (IP address indicating "is alive") is this layer 7 Application in the OSI Model or is this a layer 3 Network? At What layer in the OSI Model is this? kind of confused tried Wiki…
1
vote
0 answers

Vertical and Horizontal Approach is OSI and TCP/IP model

While reading about the OSI and TCP/IP model for communication i came across the terms like OSI model follows vertical approach while TCP/IP model followed a horizontal approach.Can somebody explain what does vertical and horizontal approach here…
well...
  • 31
  • 1
  • 3
1
vote
1 answer

What happens when a L2 packet has same source and destination MAC address

When a L2 packet has the same source and destination MAC address does it go out of the stack of the host to the switch and come back to the same interface ? Or is the L2 packet with the same source and destination MAC moved from the TX ring of the…
1
vote
1 answer

IoT Protocol Stack

I have a doubt about the IoT Protocol Stack . Searching between papers on google scholar or IEEE about IoT , i find the actual "IoT Protocol Stack" : IoT Stack I think it is uncorrect . The doubt is about the transport layer and application…
Salsa94
  • 45
  • 5
1
vote
1 answer

Is a header added/removed at each layer of the OSI model?

I'm trying to understand the relationship between the OSI and TCP/IP models, and read at the following link that in the OSI model, one header is added/removed at each…
gkeenley
  • 6,088
  • 8
  • 54
  • 129
1
vote
0 answers

The type or namespace name 'GroundTruth' does not exist in the namespace 'Osi3' (are you missing an assembly reference?)

I tried building the .cs files from the .proto via grpc.. but the file contains many errors which i am unable to resolve. .proto file is syntax = "proto3"; import "osi_groundtruth.proto"; package osi3; service Groundtruthdata { // rpc…
1
vote
1 answer

Understanding the application layer in the osi model

I'm aware there are a lot of protocols at the application layer, The question is more about when it is ok to not follow any of them, Lets say i have a client and a server and the client app should send some data to that server, for instance, some…
Dr.Haimovitz
  • 1,568
  • 12
  • 16
1
vote
0 answers

Hoping Routers / Mac Address / ARP

As a packet travels from a source IP to a destination IP, assuming that it makes hops across many different routers, how does each router know the next MAC address in the sequence. It is my understanding that for communication in a local network, a…
4Matt
  • 241
  • 1
  • 7
1
vote
1 answer

what's the addressing term for L5-7 OSI layers?

L2 use 6 bytes MAC for device addressing; L3 use IPv4 for logical network addressing, and IPv6 also encapsulate MAC address; L4 use socket(IP + Port) for software addressing. So, what's the addressing entity term for L5~L7. Does URL, REST API, json…
telehan
  • 65
  • 1
  • 6