Open In App

Protocol Data Unit (PDU)

Last Updated : 29 Apr, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The OSI model, which was first introduced by the International Organization for Standardization (ISO) in 1977, is a reference that specifies the transferring of data from one computer to another computer. The layered stack of the OSI (Open System Interconnection) reference model is made up of seven layers and each has a specific communication purpose to ensure reliable data flow between computers.

The goal of following the approach of the layered stack in the framework is to make network application and hardware development, management, and troubleshooting more specified and straightforward. Each layer is independent and self-contained so that it can carry out its communication tasks. The OSI model’s application layer is at the top, while the physical layer is at the bottom as shown below.

Protocol Data Unit (PDU)

Each layer’s information is referred to as a Protocol Data Unit (PDU). Along with the data, it contains protocol-specific control information. Each layer will add (or delete) its protocol information as a PDU moves down (or up) each layer. The PDU is given a different name at each layer to represent its role. So, in a computer network, it refers to a block of information that is transferred between network end systems. As the name implies, it is used for Open System Interconnection (OSI) model since it varies with layer-specific protocols and conventions. In a protocol stack, different layers have different types of data to be transferred. 

There are seven layers in the OSI Model as shown below and in the whole process of transferring information between these layers, only data goes through changes. Below mentioned are the layers of the OSI Model:

  1. Physical Layer
  2. Data Link Layer
  3. Network Layer
  4. Transport Layer
  5. Session Layer
  6. Presentation Layer
  7. Application Layer

For example, in Layer 4, the PDU of the Transport Layer is referred to as a segment based on TCP (Transmission Control Protocol) and with UDP (User Datagram Protocol) PDU is referred to as a datagram

  • Layer 3, the PDU of the Network Layer is referred to as a packet.
  • Layer 2, the PDU of the Data Link Layer is referred to as a frame.
  • Layer 1, the PDU of the Physical Layer is referred to as bit (1s or 0s).

Note: Layer 5 and above, the PDU is referred to as data.

Protocol Data Unit

Protocol Data Unit

For Internet Protocol Suite

  • The PDU of the Transport Layer is referred to as a segment based on TCP (Transmission Control Protocol) and with UDP (User Datagram Protocol) PDU is referred to as a datagram
  • The PDU of the Internet Layer is referred to as a packet.
  • The PDU of the Link Layer is referred to as a frame.

Encapsulation of Protocol Data Unit (PDU):

When one PDU is wrapped inside another PDU then it is referred to as Encapsulation. It generally occurs when one protocol data unit (PDU) is transported inside the data field of the lower protocol data unit (PDU). In other words, a PDU contains data comprising relevant lower layer header information and is received from an upper network layer. This information has been prepared for transmission to the next lower layer in a row i.e. network layer. As data flows from one layer to the next, the PDU identifies its state. The major difference between Protocol Data Unit (PDU) and Service Data Unit (SDU) lies in the encapsulation as Service Data Units have not been able to encapsulate lower layer data transmission yet. 

The following table illustrates the PDU of each protocol stack layer.

Layer No. Layer Name Description
Layer 1 Physical Layer In this layer, PDU is bits (1s or 0s) for the transmission of data on the network.
Layer 2 Data Link Layer

In this layer, PDU comprises- 

  • Original data with TCP/UDP header
  • Network layer header and 
  • Data Link Layer header contains MAC (Medium Access Control) addresses or physical addresses of sender and receiver. The trailer is also added to this layer.

PDU is called a frame in the Data Link Layer.

Layer 3 Network Layer 

In this layer, PDU comprises- 

  • Data with TCP/UDP headers
  • The network layer header contains Logical Addresses or IP Addresses of the sender and receiver.

PDU is called a packet in Network Layer.

Layer 4  Transport Layer

In this layer, PDU comprises- 

  • Data with TCP/UDP headers having sender’s and receiver’s TCP/UDP port numbers.

PDU is called segment or datagram in Transport Layer depending upon the protocol used. For TCP (connection-oriented protocol), it is segmented and for UDP (connectionless protocol) it is a datagram.

Layer 5 Session Layer In this layer, PDU is data.
Layer 6 Presentation Layer In this layer, PDU is data.
Layer 7 Application Layer In this layer, PDU contains original data made from a network application.

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads