A host system prepares to send data over a network connection using the standard OSI protocol stack. Place the following processing steps in the correct order, starting from higher-layer data preparation down to physical transmission over the wire.
- 1Data formatting, character encoding, and encryption are applied to prepare the application payload.
- 2Source and destination port numbers are added to segment the data for process-to-process communication.
- 3Logical IP addressing and header information are appended to route the packet across network boundaries.
- 4Physical MAC addresses and a Frame Check Sequence (FCS) trailer are added to form data frames.
- 5The binary data stream is encoded into electrical signals or light pulses for medium propagation.
Answer
The correct encapsulation order flows top-down: Presentation Layer formatting/encryption, Transport Layer port segmenting, Network Layer IP packet routing, Data Link Layer MAC/FCS framing, and Physical Layer bit transmission.
During outbound transmission, data undergoes top-down encapsulation through the OSI reference model: Layer 6 (Presentation) formats and encrypts data, Layer 4 (Transport) appends port headers, Layer 3 (Network) appends IP headers, Layer 2 (Data Link) appends MAC headers and FCS trailers, and Layer 1 (Physical) converts bits into signals on the physical wire.
Step-by-Step Solution
Key Concept
OSI Model Encapsulation Sequence