| |
- Each layer of the model applies its own header, and sometimes a trailer,
containing information about addressing, routing, flow control, and so on.
- A software application requests data from a server, e.g. email client retreiving mail from a server.
The Application Layer formats the request for the server, adding an Application header,
to formm a PDU (Protocol Data Unit)
which is passed on to ...
- The Presentation Layer then adds a Presentation header with information about
encryption, graphics information, as needed, and passes the modified PDU on to ...
- The Session Layer then adds a Session header, containing information about the connection
(e.g. baud rate, authorization, node IDs) and passes the modified PDU on to ...
- The Transport Layer uses
segmentation
to optimize the packet size for transmission, adds checksum, flow control and acknowledgement data
to the PDU and passes the modified PDU on to ...
|
{From: Network+ Guide to Networks, 4th Edition, pg 57}
|