Networking
Decapsulation
Added: June 19, 2026Nurtured: June 20, 2026
Definition
Decapsulation (De-Encapsulation) is the process of removing protocol information (headers and trailers) from data as it moves up the TCP/IP layers at the receiving device until the original data is delivered to the application.
What Problem It Solves
It allows each network layer to extract and process only the information it needs, so the final application receives clean, usable data.
What Happens If Not Used
Without decapsulation, data would remain wrapped in multiple protocol headers and could not be understood or used by the receiving application.
Easy Wording
Decapsulation means unwrapping the received data step by step to get the original message.
Layman Example
It’s like receiving a parcel:
- Open the outer box
- Remove shipping labels
- Open inner packaging
- Finally take out the actual item Each layer is removed until you reach the real content.
Technical Example
Decapsulation in TCP/IP model:
- Physical Layer (Layer 1)
- Receives raw bits
- Data Link Layer (Layer 2)
- Removes Ethernet header and trailer → frame becomes packet
- Internet Layer (Layer 3)
- Removes IP header → packet becomes segment
- Transport Layer (Layer 4)
- Removes TCP/UDP header → segment becomes data
- Application Layer (Layer 5)
- Receives final data and passes it to the application (browser, email, etc.)