Top Banner
The OSI Model and the TCP/IP Protocol Suite Outline: 1. Protocol Layers 2. OSI Model 3. TCP/IP Model 4. Addressing 1
23

The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

Dec 30, 2015

Download

Documents

Ira Harrington
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

The OSI Model and the TCP/IP Protocol SuiteOutline:

1. Protocol Layers2. OSI Model3. TCP/IP Model4. Addressing

Page 2: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

2

Transport Layer

The transport layer is responsible for process-to-process delivery of the entire message.

Makes sure that the data arrives without errors, in the proper sequence and in a reliable condition.

Functions:◦ Port addressing, The network layer gets each packet to the

correct computer; the transport layer gets the entire message to the correct process on that computer.

◦ Segmentation and reassembly: a message is divided into transmittable segments, each having a sequence number

◦ Connection control: The transport layer can be either connectionless or connection-oriented.

◦ Flow control

◦ Error control

Page 3: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

3

Communication at transport layer

A

Physical Physical

Data linkData link

R1 R3 R4

B

NetworkNetwork

Transport Transport

Source Destination DataD HeaderHLegend

SegmentD4 H4

SegmentD4 H4

Page 4: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

4

The unit of communication at the transport layer is a segment, user datagram, or a

packet, depending on the specific protocol used in this layer.

Note

Page 5: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

5

Application Layer This layer relates to the services that enable the user

to access the network. It provide user interfaces and support user

applications or services, such as software for file transfers, database access, WWW, Sand e-mail.

In other words, it serves as a window through which application processes can access network services.

This would be the layer that a programmer uses to allow his application to access a network service, such as linking into a database.

The major duties of this layer: mail services, file transfer and access, remote log-in, accessing WWW.

Page 6: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

6

Communication at application layer

A

Physical Physical

Data linkData link

R1 R3 R4

B

NetworkNetwork

Transport Transport

ApplicationApplication Source Destination DataD HeaderHLegend

MessageD5 D5

D5 D5Message

Page 7: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

7

The unit of communication at the application layer is a message.

Note

Page 8: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

8

Session Layer It is a layer in the OSI model. the session layer, allows two applications on different computers to

open, use, and close a connection called a session. ◦ (A session is a highly structured dialog between two workstations.)

Functions:◦ Dialog control

It also makes sure the session is orderly establishing, which node transmits first, how long it can transmit, and what to do in case of an error.

It performs name-recognition and other functions, such as security, that are needed to allow two applications to communicate over the network.

◦ Synchronization The session layer synchronizes user tasks by placing checkpoints in the

data stream. The checkpoints break the data into smaller groups for error detection. It

allows information of different streams, perhaps originating from different sources, to be properly combined or synchronized. An example application is web conferencing, in which the streams of

audio and video must be synchronous to avoid so-called lip synch problems. It ensures that the person displayed on screen is the current speaker.

Page 9: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

9

Presentation LayerIt is a layer in the OSI model.The presentation layer is

responsible for translation, compression, and encryption.

Deals with the actual formatting of the data.◦For example, data might be

converted from EBCDIC to ASCII formatting so that the receiving node can understand it.

Page 10: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

10

Summery of OSI Layers

Page 11: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

11

ADDRESSINGFour levels of addresses are used

in an internet employing the TCP/IP protocols:◦physical address◦logical address◦port address◦application-specific address.Each address is related to a one layer

in the TCP/IP architecture

Page 12: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

12

Page 13: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

13

Example 1: physical addresses

Data87 101

packetdiscarded

2

packetdiscarded

3

packetaccepted Data87 10

4

Page 14: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

14

Example 1: physical addresses In the previous figure a node with physical address 10

sends a frame to a node with physical address 87. The two nodes are connected by a link (a LAN). At the data link layer, this frame contains physical (link) addresses in the header. These are the only addresses needed. The rest of the header contains other information needed at this level. As the figure shows, the computer with physical address 10 is the sender, and the computer with physical address 87 is the receiver. The data link layer at the sender receives data from an upper layer. It encapsulates the data in a frame. The frame is propagated through the LAN. Each station with a physical address other than 87 drops the frame because the destination address in the frame does not match its own physical address. The intended destination computer, however, finds a match between the destination address in the frame and its own physical address.

Page 15: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

15

Physical AddressAs we will see later, most local

area networks use a 48-bit (6-byte) physical address written as 12 hexadecimal digits; every byte (2 hexadecimal digits) is separated by a colon, as shown below:

07:01:02:01:2C:4BA 6-byte (12 hexadecimal digits) physical address

Page 16: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

16

Example 2: logical addresses

DataA P20 10 DataA P20 10

Physicaladdresseschanged

DataA P33 99

DataA P33 99

Physicaladdresseschanged

DataA P95 66 DataA P95 66

Page 17: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

17

Example 2: logical addresses The previous figure shows a part of an internet with

two routers connecting three LANs. Each device (computer or router) has a pair of addresses (logical and physical) for each connection. In this case, each computer is connected to only one link and therefore has only one pair of addresses. Each router, however, is connected to three networks. So each router has three pairs of addresses, one for each connection.

The computer with logical address A and physical address 10 needs to send a packet to the computer with logical address P and physical address 95. We use letters to show the logical addresses and numbers for physical addresses, but note that both are actually numbers, as we will see in later chapters.

Page 18: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

18

The physical addresses will change from hop to hop, but the logical addresses

remain the same.

Note

Page 19: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

19

Port address

the purpose of ports is to uniquely identify different applications or processes running on a single computer and thereby enable them to share a single physical connection to a packet-switched network like the Internet.

As we will see later, a port address is a 16-bit address represented by one decimal number as shown.

753A 16-bit port address represented as one single number

Page 20: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

20

A Sender Receiver P

Internet

Example 3: port address

a DatajA PH2

a DatajA P

a Dataj

Data

a DatajA PH2

a DatajA P

a Dataj

Data

Page 21: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

21

Example 3: port addressThe previous figure shows two computers

communicating via the Internet. The sending computer is running three processes at this time with port addresses a, b, and c. The receiving computer is running two processes at this time with port addresses j and k. Process a in the sending computer needs to communicate with process j in the receiving computer.

Note that although both computers are using the same application, FTP, for example, the port addresses are different because one is a client program and the other is a server program.

Page 22: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

22

The physical addresses change from hop to hop, but the logical and port addresses

usually remain the same.

Note

Page 23: The OSI Model and the TCP/IP Protocol Suite Outline: 1.Protocol Layers 2.OSI Model 3.TCP/IP Model 4.Addressing 1.

23

Referenceshttp://pluto.ksi.edu/~

cyh/cis370/ebook/ch05b.htmCSC 1202 2012-2013 Lecture

Notes.Chapter 2 in TCP/IP Protocol

Suite , 4th ed, Behrouz A. Forouzan