A secure web server receiving an HTTPS request on TCP port 443 processes the inbound network signal from its network interface card up to the web application process. As de-encapsulation occurs, which sequence correctly identifies the order of Protocol Data Units (PDUs) processed and the corresponding headers or trailers removed at each layer of the protocol stack?
- Frame (Ethernet header and trailer removed) Packet (IP header removed) Segment (TCP header removed) Data payload delivered to the applicationCevap
- BPacket (IP header removed) Frame (Ethernet header and trailer removed) Segment (TCP header removed) Data payload delivered to the application
- CFrame (Ethernet header and trailer removed) Datagram (UDP header removed) Packet (IP header removed) Data payload delivered to the application
- DFrame (Ethernet header and trailer removed) Segment (TCP header removed) Packet (IP header removed) Data payload delivered to the application
Cevap
The correct sequence processes the Frame (removing Ethernet header/trailer), then the Packet (removing IP header), followed by the Segment (removing TCP header), and finally delivers the raw Data payload to the application.
During de-encapsulation on a receiving host, processing proceeds bottom-up through the protocol stack. The Network Interface Card first processes the Layer 2 Frame by removing the Ethernet header and FCS trailer. The network stack then processes the Layer 3 IP Packet by stripping the IP header. Next, the transport layer parses the Layer 4 TCP Segment, strips the TCP header based on port 443 identification, and delivers the remaining application Data payload to the listening web service.
Adım Adım Çözüm
Anahtar Kavram
De-encapsulation sequence from Layer 2 to Layer 7 (Frame -> Packet -> Segment -> Data)
Tahmini Süre:1m 30s