TCP and UDP Flashcards
What does TCP assume about channel reliability?
TCP assumes some unreliability in channels such as errors or packet loss
Why do errors like flipped bits occur in local networks?
Flipped bit errors are caused by transmission issues such as electromagnetic interference, signal degradation, or hardware faults.
What is the purpose of acknowledgements (ACKs) in TCP?
ACKs confirm that the receiver has correctly received the packet and notify the sender to proceed
What is a NAK and how does it work?
A NAK informs the sender that a packet had errors prompting retransmission
What happens if ACKs or NAKs are corrupted?
The sender cannot determine if the packet was received causing retransmissions and potential duplicates
How are duplicates handled in TCP?
Sequence numbers help identify and discard duplicate packets
Why is the IP checksum weak?
It may not reliably detect multiple bit flips in a packet
What is the role of a timer in TCP retransmissions?
The sender waits for a reasonable time for ACK if none is received it retransmits
How does TCP handle packet loss?
TCP uses retransmissions sequence numbers and timers to ensure delivery
What is the concept of TCP’s flow control?
Flow control prevents senders from overwhelming receivers by managing buffer capacity
How does the TCP three-way handshake work?
It establishes connections using SYN SYN-ACK and ACK packets to confirm readiness
What is the TCP connection teardown process?
The initiator sends a FIN to close the connection, and the responder replies with an ACK, sends its own FIN, and receives a final ACK from the initiator to complete the teardown.
What are the two main TCP solutions to scaling issues?
Window scaling and PAWS Protection Against Wrapped Sequence Numbers
How does window scaling address TCP’s limitations?
It increases the receive window size to handle larger bandwidth-delay products
What is PAWS and why is it used?
PAWS prevents misidentification of old packets due to sequence number wraparound
What is RTTM in TCP?
Round Trip Time Measurement ensures accurate RTT calculation by embedding timestamps
What is the purpose of Slow Start in TCP?
It gradually ramps up data transmission to prevent congestion
How does Fast Retransmit work?
It retransmits lost packets immediately based on duplicate ACKs avoiding timeout delays
(Fast Retransmit works when the receiver notices a missing packet and keeps asking for it by sending the same “ACK” repeatedly. If the sender gets three duplicate ACKs in a row, it assumes the packet is lost and resends it right away without waiting for a timeout. This speeds up recovery from lost packets.)
What is the problem with early HTTP protocols like HTTP/1.0?
They lacked pipelining leading to inefficiencies such as multiple connections per object
What is the purpose of NAT?
To conserve public IP addresses by translating private addresses for external communication
What is outbound NAT?
It maps multiple internal source IPs to fewer external IPs using port numbers
What is inbound NAT?
It allows external traffic to access services on a private network using ports
What is the challenge of using NAT for UDP?
NAT (Network Address Translation) for UDP is challenging because UDP is stateless, meaning it doesn’t establish a connection like TCP. NAT relies on active connections to maintain mappings, but since UDP doesn’t create a persistent connection, its mappings are cleared after brief periods of inactivity, making it hard to track and manage UDP traffic consistently.
What is a key advantage of IPv6 over NAT?
IPv6 assigns unique public IPs to devices simplifying logging and investigation
What is the difference between the transport and network layers
The transport layer provides logical communication between processes while the network layer provides logical communication between hosts
How does the transport layer enhance network layer services
The transport layer breaks application messages into segments on the send side and reassembles segments into messages on the receive side
What are the two main transport protocols in the Internet
TCP and UDP
What services does TCP provide
Reliable in-order delivery congestion control flow control and connection setup
What type of delivery does UDP provide
Unreliable unordered delivery with no delay or bandwidth guarantees
What is the main function of demultiplexing in the transport layer
Directing transport-layer segments to the appropriate socket using IP addresses and port numbers
What identifies a TCP socket
A 4-tuple consisting of source IP address source port number destination IP address and destination port number
What identifies a UDP socket
A 2-tuple consisting of destination IP address and destination port number
Why is UDP considered connectionless
UDP does not involve handshaking between sender and receiver and handles each segment independently
What mechanisms allow TCP to provide reliable data transfer
Pipelined segments cumulative acknowledgments and a single retransmission timer
What triggers TCP retransmissions
Timeout events and duplicate acknowledgments
How does TCP handle duplicates
TCP uses sequence numbers to identify and discard duplicate packets
What is a TCP cumulative acknowledgment
An acknowledgment that specifies the sequence number of the next expected byte
What is the role of sequence numbers in TCP
Sequence numbers uniquely identify each byte of data in a TCP segment
What is the TCP three-way handshake
A process involving SYN SYN-ACK and ACK messages to establish a connection
How does TCP close a connection
By exchanging FIN and ACK messages between the sender and receiver
What is the purpose of the TCP window size
To control the amount of unacknowledged data a sender can transmit
What is the significance of the TCP receive window
It advertises the available buffer space at the receiver
What is TCP flow control
A mechanism to prevent the sender from overwhelming the receiver’s buffer
What is the purpose of slow start in TCP
To avoid network congestion by gradually increasing the number of packets sent
What is the purpose of rapid retransmission in TCP
To retransmit lost segments quickly without waiting for a timeout
What is the selective acknowledgment SACK option in TCP
An option allowing the receiver to acknowledge specific ranges of received data
What does TCP window scaling achieve
It increases the maximum window size to accommodate high-bandwidth high-delay networks
What does PAWS stand for and what does it address
Protection Against Wrapped Sequence numbers which helps differentiate between old and new packets with the same sequence number
What is RTTM in TCP
Round Trip Time Measurement used to calculate RTT more accurately with timestamps
What does the TCP timestamp option enable
Accurate RTT measurement and differentiation of packets with the same sequence number
What are the key differences between TCP and UDP
TCP provides reliable in-order delivery with congestion control while UDP is connectionless unreliable and unordered
How does a sender detect lost TCP segments
Through timeouts and duplicate acknowledgments
What is the purpose of the TCP checksum
To detect errors in the segment during transmission
What happens when a TCP ACK is delayed
The sender may retransmit data unnecessarily thinking the segment was lost
Why is retransmission of data necessary in TCP
To recover from packet loss or errors during transmission
How does the sender handle timeouts in TCP
It retransmits the oldest unacknowledged segment
What is the TCP timeout interval
Estimated RTT plus a safety margin based on RTT variation
What is exponential weighted moving average in TCP
A method to estimate RTT by averaging recent measurements with decreasing weight for older samples
Why is window scaling important in modern networks
To support larger receive windows required for high-bandwidth long-delay networks
What is the silly window syndrome in TCP
Inefficient use of TCP frames when the receiver’s buffer is almost full
What are the two solutions for silly window syndrome
The receiver avoids advertising small window sizes and the sender uses Nagles algorithm to avoid sending small packets
What is Nagles algorithm
A TCP mechanism to reduce the number of small packets sent by combining them until acknowledgment is received
How does TCP ensure in-order delivery
By using sequence numbers and buffering out-of-order packets until they can be delivered sequentially
What are the three main TCP algorithms for congestion control
Slow Start Fast Retransmission and Rapid Recovery
What are the phases of the TCP congestion control algorithm
Slow Start Congestion Avoidance Fast Retransmission and Recovery
How does TCP respond to duplicate ACKs
It assumes a packet loss and retransmits the missing segment immediately
What is the minimum number of packets for a TCP connection with no data transfer
Seven packets SYN SYN-ACK ACK FIN ACK FIN ACK
What happens during the TCP connection teardown
Each side exchanges FIN and ACK messages to close the connection gracefully
What is the TCP state diagram used for
To describe the various states during TCP connection setup data transfer and teardown
What are TCP options and when are they used
Optional fields in the header to enable features like SACK window scaling and timestamping
What is the purpose of the urgent pointer in TCP
It indicates urgent data but it is rarely used today
What does the PSH bit in TCP indicate
It requests the receiver to push data to the application immediately
What does the term bulk transfer mean in TCP
Transferring large amounts of data controlled by the receive window and acknowledgment mechanism
Why does TCP use cumulative acknowledgments
To reduce overhead by acknowledging all received data up to a specific point
What happens if a segment is lost during a TCP bulk transfer
The sender retransmits all unacknowledged data starting from the lost segment
What is the role of the TCP receive buffer
To temporarily store incoming data before it is delivered to the application
How does TCP handle out-of-order segments
The receiver buffers them until missing segments are received or discards them depending on implementation
Why is RTT estimation important in TCP
To set an appropriate timeout interval for retransmissions
What does TCP use to handle varying RTT
Exponential weighted moving average and deviation-based safety margins
How does TCP prevent buffer overflow at the receiver
By limiting the sender’s unacknowledged data to the advertised receive window size
What is the impact of delayed ACKs on TCP performance
They reduce the number of packets sent but can delay retransmissions in case of loss
How does TCP achieve full duplex communication
By maintaining separate sequence and acknowledgment numbers for each direction of data flow
What is the maximum segment size MSS in TCP
The largest amount of data a TCP segment can carry typically negotiated during connection setup
What happens during the TCP three-way handshake
The client sends a SYN the server responds with SYN-ACK and the client acknowledges with ACK
What triggers TCPs slow start mechanism
Connection initialization or retransmission after a timeout
How does TCP avoid congestion during the slow start phase
By increasing the congestion window size gradually until packet loss occurs
What is fast recovery in TCP
A mechanism to avoid slow start after segment loss using duplicate ACKs to infer missing segments
What is the effect of packet loss on TCP throughput
It reduces throughput due to retransmissions and congestion control adjustments
Why is TCP not suitable for real-time applications
TCPs reliability mechanisms introduce latency making it unsuitable for time-sensitive data
How does TCP handle simultaneous connection initiation
Both sides send SYN packets simultaneously and establish the connection after exchanging SYN-ACKs
What is the purpose of the FIN bit in TCP
To indicate the sender has finished transmitting data and wants to close the connection
What is the role of the TCP acknowledgment number
To indicate the next byte the receiver expects to receive from the sender