lecture 3 - transport layer

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

1/20

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.

21 Terms

1
New cards

two common protocols in transport layer

-TCP (transmission control protocol)

-UDP (user datagram protocol)

2
New cards

3 transport layer functions

1) linking to the application layer

2) segmenting

3) session management

3
New cards

What layer does TCP/UDP link to?

Application layer

4
New cards

What do TCP and UDP serve?

Multiple application layer protocols

5
New cards

What identifies an application in TCP/UDP?

Ports (2-byte numbers)

6
New cards

What do many source/destination ports follow?

Standards

7
New cards

What is the common port standard for HTTP?

Port 80

8
New cards

What is the common port standard for SMTP?

Port 25

9
New cards

What is the common port standard for DNS?

Port 53

10
New cards

What is segmenting in networking?

Breaking large files into smaller segments.

11
New cards

How are segments passed to the application layer?

Segments are passed individually to the application layer after reassembly.

12
New cards

What does the segment size depend on?

The segment size depends on the network and data link layer protocols.

13
New cards

segmenting process

application layer sees message -> TCP breaks large message into smaller segments -> negotiations -> TCP puts packet back together at destination -> delivers incoming packets as they arrive

14
New cards

What is session management in networking?

It refers to the conversation between two computers or creating a virtual circuit.

15
New cards

What type of messaging is used for connection-oriented communication?

TCP (Transmission Control Protocol)

16
New cards

What type of messaging does not require establishing a session?

Connectionless messaging (UDP)

17
New cards

TCP connections 3-way handshake

1) request for TCP connection

2) transit segments

3) close TCP connection

-SYN, SYN-ACK, ACK

18
New cards

TCP (circuits)

makes end-to-end connections broken into segments sent in order, then retransmitted if negative acknowledgement is received

19
New cards

UDP (user datagram protocol)

connectionless protocol that does not require a connection to send a packet and does not guarantee that the packet arrives at its destination

20
New cards

wireshark

Application that captures and analyzes network packets

21
New cards

wireshark purposes

-troubleshoot network problems

-examine security problems

-quality assurance (QA) verify network applications

-debug protocol implementations

-learn network protocol internals