You are on page 1of 3

Difference between SDU and PDU

This question keeps propping up in many discussions so here is an explanation for the difference between PDU and SDU.

Going back to the basics, a protocol stack consists of many different individual protocols. Protocols can be simply described as set of rules that allow communication between peer entities or they can also be described as set of rules that facilitate horizontal communication. Now these protocols are arranged in layers as can be seen in the figure above. In the transmitter side, a layer N receives data from layer N+1 and this data is called the SDU or Service Data Unit. This layer will modify the data and convert it into a PDU or a Protocol Data Unit. The peer entity in the receiver is only able to understand this PDU. In simplest form, this modification by layer N of the layer N+1 SDU contains encapsulation. In encapsulation, the SDU is preserved as it is and an additional header is added by the layer N protocol. The modification can also perform concatenation (where more than one SDU is combined in a single PDU), segmentation (where a SDU can be split so that different parts of it end up in different PDU) and padding (where SDU is so small that filler bits are added in the end to complete the PDU). In the receiver side, the peer entity receives the PDU from layer N-1 (its actually layer N-1 SDU) and convert it back into SDU(s) and passes it to layer N+1.

The figure above shows an example of RLC SDU and PDU. The SDU's are received from higher layer, which is from PDCP in case of LTE. These SDU's have to be converted to PDU's so they undergo segmentation and concatenation and suitable RLC headers are added to form the RLC PDU's. First Figure Source: The TCP/IP Guide Second Figure Source: 3G Evolution - HSPA and LTE for Mobile Broadband, Erik Dahlman et al.

In telecommunications, the term protocol data unit (PDU) has the following meanings: 1. Information that is delivered as a unit among peer entities of a network and that may contain control information, such asaddress information, or user data.

MAC layer PDU becomes physical layer SDU

Context in the OSI model[edit source | editbeta]


PDUs are relevant in relation to each of the first 4 layers of the OSI model as follows:
[2]

1. The Layer 1 (Physical Layer) PDU is the bit or, more generally, symbol (can also be seen as "stream") 2. The Layer 2 (Data Link Layer) PDU is the frame 3. The Layer 3 (Network Layer) PDU is the packet 4. The Layer 4 (Transport Layer) PDU is the segment for TCP, or the datagram for UDP Given a context pertaining to a specific OSI layer, PDU is sometimes used as a synonym for its representation at that layer.

MAC protocol data unit[edit source | editbeta]


MAC protocol data unit or MPDU is a message (Protocol data unit) exchanged between MAC entities in a communication system based on the layered OSI model. In systems where the MPDU may be larger than the MAC service data unit (MSDU), the MPDU may include multiple MSDUs as a result of packet aggregation. In systems where the MPDU is smaller than the MSDU, then one MSDU may generate multiple MPDUs as a result of packet segmentation.

You might also like