What is the difference between the OSI model and the TCP/IP model?

6

1

What is the difference between the OSI model and the TCP/IP model. Is the OSI model the parent of the TCP/IP model?

ob_dev

Posted 2012-09-02T19:28:24.477

Reputation: 191

Question was closed 2012-09-03T18:26:14.367

1

See http://superuser.com/a/424439/52492/ Also IP was worked out in 1973, OSI model published in 1984.

– RedGrittyBrick – 2012-09-02T19:40:07.860

Answers

4

A network layer model is simply a way of thinking about network protocols. It categorizes the features of a network protocol into layers that depend on the features of the lower layers. Thus it's useful to talk about the data link layer, which is responsible for moving the raw data, depending on the physical layer, which makes the network hardware accessible to upper layers.

The OSI model does not define specific protocols. It provides a model for designing network protocols that are strictly organized into layers. Protocols that reach across layers are frowned upon.

The TCP/IP model differs from the OSI model in three important ways:

  1. It defines fewer layers, with slightly different definitions, though the way OSI layers map to TCP/IP layers is pretty straightforward.
  2. TCP/IP does not demand strict layering. Cross-layer protocols are considered reasonable if they simplify implementation.
  3. Some core protocols are essential parts of the TCP/IP model. Indeed, the model named after two of them.

Here is a table of differences.

Isaac Rabinovitch

Posted 2012-09-02T19:28:24.477

Reputation: 2 645

-1

They do basically the same thing. Main difference is that OSI model has 7 layers and TCP/IP protocol suite has 4.

They were both developed in the late 70's so i wouldn't say that OSI is the father of TCP/IP.

Give this a read.

Check this as well.

Mariyan

Posted 2012-09-02T19:28:24.477

Reputation: 1 367