Transport Layer: Port Numbers, Segmentation, and Reliable Data Delivery

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/19

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

Transport Layer

Also called the End-to-End or Host-to-Host layer.

2
New cards

Reliable Delivery

Ensures all data arrives without loss or errors—retransmits lost or corrupted data if required (TCP is an example of a protocol offering this).

3
New cards

Segmentation

Breaks down large messages into segments for easier transmission, each segment is tracked for reassembly.

4
New cards

Port Numbers

Numerical identifiers for different applications (e.g., 80 for HTTP, 25 for email). Allows multiple apps to use the network simultaneously.

5
New cards

Multiplexing/Demultiplexing

Multiple streams of data (from/to various apps or devices) are combined onto a single network link (multiplexed) and then separated back into streams at the receiving host (demultiplexed).

6
New cards

Connection-Oriented (TCP) vs. Connectionless (UDP)

TCP provides reliability, UDP is faster and used for time-sensitive traffic.

7
New cards

Layer 4 Segment

The data (now called a Layer 4 segment) is wrapped with the correct port number, then handed to the Network layer as part of the payload.

8
New cards

Network Transmission

Traffic is sent across the network as Layer 3 packets, further encapsulated in Layer 2 frames.

9
New cards

De-Multiplexing on Arrival

Host 2.1 receives the segment, checks the port number, and delivers it to the correct application (e.g., web browser for port 80, email client for port 25).

10
New cards

Multilayer switches (load balancers)

Direct traffic based on port/application; can balance load across servers.

11
New cards

Advanced firewalls

Filter/block traffic based on port/application/protocol.

12
New cards

Intrusion Detection Systems (IDS)

Analyze segments for malicious or abnormal behavior.

13
New cards

Port Number 80

HTTP (web traffic)

14
New cards

Port Number 25

SMTP (email)

15
New cards

Port Number 445

Windows SMB

16
New cards

Port Number 5061

SIP/TLS (VoIP).

17
New cards

Traffic from Hosts 2.2 and 2.3

Send different types of traffic to host 2.1 (e.g., port 25 for email, 80 for HTTP, etc.).

18
New cards

Layer 4 Devices

Devices that operate at the Transport Layer, managing traffic based on port numbers.

19
New cards

What does Layer 4 (Transport) use to deliver data to the correct application on the receiving device?

port numbers

20
New cards

Why is TCP reliable?

The Transport Layer will check for successful delivery, retransmitting segments as needed for reliable protocols (e.g., TCP).