Content deleted Content added
m +de |
PaulHanson (talk | contribs) added punctuation |
||
Line 1:
A '''protocol stack''' is a particular software implementation of a [[computer network]]ing protocol suite. The terms are often used interchangeably. Strictly speaking, the suite is the definition of the protocols, and the stack is the software implementation of them.
Individual [[network protocol|protocols]] within a suite are often designed with a single purpose in mind. This
In practical implementation, protocol stacks are often divided into three major sections, for media, transport, and applications. A particular [[operating system]] or platform will often have two well-defined software interfaces
The media-to-transport interface defines how transport protocol software makes use of particular media and hardware types ("card drivers"). For example, this interface level would define how [[Internet protocol suite|TCP/IP]] transport software would talk to [[Ethernet]] hardware. Examples of these interfaces include [[Open Data-Link Interface|ODI]] and [[Network Driver Interface Specification|NDIS]] in the [[Microsoft Windows]] and [[DOS]] world.
Line 14:
[A] [B]_____[C]
Imagine three computers: ''A'', ''B'', and ''C''. ''A'' and ''B'' both have radio equipment, and can communicate via the airwaves using a suitable network protocol (like [[IEEE 802.11]].) ''B'' and ''C'' are connected via a cable,
One could combine
A request on computer ''A'' to send a chunk of data to ''C'' is taken by the upper protocol, which (through whatever means) knows that ''C'' is reachable through ''B''. It therefore instructs the wireless protocol to transmit the data packet to ''B''. On this computer, the lower layer handlers will pass the packet up to the inter-network protocol, which, on recognizing that ''B'' is not the final destination, will again invoke lower-level functions. This time, the cable protocol is used to send the data to ''C''. There, the received packet is again passed to the upper protocol, which (with ''C'' being the destination) will pass it on to a higher protocol or application on ''C''. Often an even higher-level protocol will sit on top, and incur further processing.
A commonly used protocol stack looks like this:
Line 31:
| [[Ethernet]] |
+- - - - - -+
==See also==
|