2.1 Application Layer Principles Flashcards
services provided by the transport layer, API (Application-layer interface)
P2P architecture meaning
there is no server;
instead, end systems (peers) DIRECTLY communicate with each other
no permanent IP
TCP vs UDP
both are transport-layer protocols:
TCP - reliable, makes sure all data packets arrive and are in the correct order
- requires handshake between client & server before sending data
- used for web browsing (HTTP), email (SMTP), file transfer
UDP - faster but unreliable data transfer
- for video streams, live gaming
What type of architecture does file-sharing use? (e.g. BitTorrent)
Peer-to-peer (P2P)
client-server architecture meaning
client: sends request
server: processes and sends back data
server:
- host is always ON
- has a well-known permanent IP address
client:
- not always connected to the internet
- no permanent IP
- clients do NOT communicate directly with each other
HTTP, IMAP, FTP
API meaning
application-layer interface
application definition
multiple programs (processes) interacting, exchanging messages
socket definition
abstraction that sends messages between API and transport layers
like a door; the sending process shoves the message out the door
relies on underlying structure (application, transport, network, link)
object definition
a structured data unit
- e.g. HTML files, JPEG images, Java applets
identifier definition
information attached to a process that enables it to receive messages
like an address
every host device has a unique 32-bit IP address
2 important pieces of info:
1. IP address
2. port numbers
open vs proprietary protocol
open: allows for interoperability, message syntax is public info (RFCs are publicly available)
e.g. WiFi, HTTP, STMP
proprietary: owned by a company, operation isn’t publicly known
e.g. Skype, Zoom
TCP
Transmission Control Protocol - communication protocol that operates on the transport layer
reliable, makes sure all data packets arrive and are in the correct order
requires handshake between client & server before sending data
used for web browsing (HTTP), email (SMTP), file transfer
UDP
communication protocol that operates on the transport layer
faster but unreliable data transfer
for video streams, live gaming
datagram definition
packets of information that are exchanged at the application layer