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
0
votes
2 answers

LLCP connection-oriented and connectionless + P2P NFC

in LLCP there are 2 transport possibilities: connection-oriented connectionless Does someone know which kind of this LLCP transports is used in combination with: NPP SNEP NPP is just 1-way, so maybe it is combines with connections-oriented…
ms88-aut
  • 375
  • 4
  • 13
0
votes
5 answers

Representation of bits and their serialisation in .Net

I am practising implementing some basic layer 7 protocols but I am unsure of the best way of serialising and deserialising bits in the .Net framework. According to the MSDN Data Type Summary, there is no bit data type. I have no idea how I would go…
Stuart Blackler
  • 3,732
  • 5
  • 35
  • 60
0
votes
1 answer

IEEE 802.3 vs IEEE 802.11

Can someone please explain to me the difference in the OSI Model between the 802.3 and 802.11 protocols? As far as I understand they differ only in the MAC and PHY Layer. Is this accurate? Are the remaining layers identical?
iFadi
  • 915
  • 2
  • 12
  • 20
0
votes
2 answers

What is a proxy? What is it in Apache? Does it have many different meanings?

It has nothing to do file-descriptors. Is it some sort of connection between different protocols? Does there exist more like that? Reverse -proxy? Direct -proxy? Indirect -proxy? Does proxy mean 3-layer, 7-layer or different layer in OSI reference…
hhh
  • 50,788
  • 62
  • 179
  • 282
0
votes
1 answer

Tool to work in the network layer

I have recently been using telnet a lot recently to test out many different types of tcp connections, (basic TCP, standard HTTP, Bayeux through HTTP, etc) as a means to learn how things work. I want to learn a little bit more about how the next…
Kaushik Shankar
  • 5,491
  • 4
  • 30
  • 36
-1
votes
1 answer

OSI model in VB.Net 2010

I need to implement a communication protocol in VB.net 2010. Kind of an OSI model/architecture, but smaller using a vb class for each layer, how can I link them efficiently? Normally, the communication buffer would travel from the bottom to the top…
-1
votes
1 answer

Beginner here unable to understand why Switch is layer 2

According to the OSI model, data is encapsulated from layer 7 down to layer 1. Since normally a setup would be PC(layer7, 6, 5, 4) > switch(layer 2) > Router(layer 3) > Modem(layer 1) it seems to me like either layer 2 header is being added before…
-1
votes
1 answer

What exaclty is the job of the network layer in the OSI model

I am having a tough time understanding the network layer or layer 3 in the OSI model. Could anyone please help me with my questions 1)correct me if I am wrong, from my understanding the basic task of the network layer is to allow communication…
Ryuzakii
  • 11
  • 2
-1
votes
2 answers

Why do we need both session layer if we have transport layer(in the osi model)?

If tcp in the transport layer creates for us a session , so why we need the session layer to create for us a session?
-1
votes
3 answers

same functionality in osi model

Transport layer and datalink layer of OSI model provide similar functionality. If one of said was already there, why was the other needed
anasanjaria
  • 1,308
  • 1
  • 15
  • 19
-1
votes
1 answer

How is the entity called that converts a stream of bytes into frames?

In networking, and more specifically in serial point-to-point communication (e.g. HDLC or PPP), is there any accepted terminology for the process or the entity that converts a stream of bytes (e.g., from a serial RS-232 link) into frames (e.g. HDLC…
areslagae
  • 119
  • 1
  • 2
-1
votes
1 answer

On which OSI layer image stegnography is done/handled

I want to know on which OSI layer image steganography is done with explanations about why it is on that layer. I have tried searching for this everywhere but it was of no use.
Gaur93
  • 685
  • 7
  • 19
-1
votes
2 answers

Where HTTP and SIP protocol existed In OSI Model?

I am a beginner in network programming. I am bit confused that in OSI Model where HTTP and SIP protocol existed. Which layer are they in?
-2
votes
1 answer

Tracking OSI packets with Wireshark

All the 7 layers of the OSI model work together to define to the endpoint what is the type of machine he is dealing with. But I wonder why can't I detect a OSI packet with an software like wireshark? Because Wireshark should track every packet that…
-2
votes
2 answers

How do applications know which OSI protocol to use?

I would like to understand what happens when we type "google.com" in our browser wrt OSI model. What all protocols comes into picture AT EACH LAYER any how does they know which one to be used? Also I would like to know, TCP/UDP which one to be…
learner
  • 1,095
  • 2
  • 18
  • 41