您的位置:首页 > 理论基础 > 计算机网络

A Comparison of the OSI and TCP/IP Reference Models

2014-01-02 19:35 441 查看
The OSI and TCP/IP reference models have much in common. Both are based on the concept of a stack of independent protocols. Also, the functionality of the layers is
roughly similar. Despite these fundamental similarities, the two models also have many differences. It is important to note that we comparing the reference models here, not the corresponding
protocols stacks.
Three concepts are central to the OSI model:
1. Services.
2. Interfaces.
3. Protocols.
Probably the biggest contribution of the OSI model is that it makes the distinction between these three concepts explicit. Each layer performs some services for the layer
above it. The service definition tells what the layer does, not how entities above it access it or how the layer works. It defines the layer's semantics. A layer's interface tells the processes above it how to access it. It specifies what the parameters are
and what results to expect. It, too, says nothing about how the layer works inside. Finally, the peer protocols used in a layer are the layer's own business. It can use any protocols it wants to, as long as it gets the job done (i.e., provides the offered
services). It can also change them at will without affecting software in higher layers.
These ideas fit very nicely with modern ideas about object-oriented programming. An object, like a layer, has a set of methods (operations) that processes outside
the object can invoke. The semantics of the methods define the set of services that the object offers. The methods' parameters and results form the object's interface. The code internal to the object is its protocol and is not visible or of any concern outside
the object.
The TCP/IP model did not originally clearly distinguish between services, interfaces, and protocols, although people have tried to retrofit it after the fact to
make it more OSI-like. For example, the only real services offered by the internet layer are SEND IP PACKET and RECEIVE IP PACKET. As a consequence, the protocols in the OSI model are better hidden than in the TCP/IP model and can be replaced easily as the
technology changes. Being able to make such changes transparently is one of the main purpose of having layered protocols in the first place.
The OSI reference model was devised before the corresponding protocols were invented. This ordering meant that the model was not biased toward one particular set
of protocols, a fact that made it quite general. The downside of this ordering was that the designers did not have much experience with the subject and did not have a good idea of which functionality to put in which layer. Although the protocols associated
with the OSI model are not used any more, the model itself is actually quite general and still valid, and the features at each layer are still very important.
With TCP/IP the reverse was true: the protocols came first, and the model was really just a description the existing protocols. There was no problem with the protocols
fitting the model. The only trouble was that the model did not fit any other protocol stacks. Thus, the TCP/IP has the opposite properties: the model itself is not of much use but the protocols are widely used.
Turning from philosophical matters to more specific ones, an obvious difference between the two models is the number of layers: the OSI model has seven layers and
the TCP/IP model has four. Both have (inter)networks, transport, and application layers, but the other layers are different.
Another difference is in the area of connectionless versus connection-oriented communication. The OSI model supports both connectionless and connection-oriented
communication in the network layer, but only connection-oriented communication in the transport layer. The TCP/IP model supports only one mode in the network layer (connectionless) but both in the transport layer, giving the users a choice. This choice is
especially important for simple request-response protocols.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: