CS3205: Introduction to Computer Networks Assignment 3 solved

$35.00

Category: You will receive a download link of the .ZIP file upon Payment

Description

5/5 - (1 vote)

Simulation of the TCP Congestion Control Algorithm

The objective of this project is to emulate the TCP congestion control algorithm. The assumptions and variables are as follows: § Receiver Window Size (RWS) is set to 1MB and does not change during the entire duration of the emulation.

§ The Sender always has data to send to the receiver. § Sender’s MSS is 1KB. Each segment has a fixed length of one MSS. § Go-back-N is used, but cumulative acknowledgments are not considered. For each segment, an individual timeout timer and ACK are used. § The congestion window is always interpreted as a multiple of MSS (1 KB). § The congestion threshold is always set to 50% of the current CW value.

Assume the initial threshold to be RWS/2. Ki , 1 ≤ Ki ≤ 4 denotes the initial congestion window (CW). Default value is 1. The initial CW is given by: CWnew = Ki∗ MSS Km , 0.5 ≤ Km ≤ 2 denotes the multiplier of the Congestion Window, during the exponential growth phase. Default value is 1. When a segment’s ACK is successfully received, CWnew = min(CWold + Km *MSS, RWS) Kn , 0.5 ≤ Kn ≤ 2 denotes the multiplier of the Congestion Window, during the linear growth phase. Default value is

1. When a segment’s ACK is successfully received, CWnew = min(CWold + Kn ∗ , RWS) 𝑀𝑆𝑆*𝑀𝑆𝑆 𝐶𝑊𝑜𝑙𝑑 Kf , 0.1 ≤ Kf ≤ 0.5 denotes the multiplier when a timeout occurs: CWnew = max(1, Kf ∗ CWold) Ps , 0 < Ps < 1, denotes the probability of receiving the ACK packet for a given segment before its timeout occurs. Running the program: The program is invoked with the following command-line parameters: $./mytcp -i -m -n -f -s -T -o outfile The values correspond to Ki , Km, Kn , Kf , Ps and the total number of segments to be sent before the emulation stops. The output (specified below) is saved in an output file.

The congestion window progression is done on a slot-by-slot basis. In each “round”, a set of segments are sent, in proportion to the current value of CW, i.e. N = ceiling(CW/MSS). For example, if CW is equal to 4.3KB, five packets are sent. However, the CW growth is based on MSS values as explained earlier. For each segment transmitted, the ACK for this segment is received before timeout with random probability Ps . Depending on this outcome, the CW increases and decreases as described earlier.

Expected Output: Given the set of input parameters, the simulation progresses as above. The congestion window value is printed to the output file (one per line) at each CW update. A graph with x-axis being the update number and y-axis the corresponding CW value must be plotted.

A technical report must be written based on the results and graphs obtained for the following parameter combinations: Ki∈ {1, 4}, Km ∈ {1, 1.5}, Kn ∈ {0.5, 1}, Kf ∈ {0.1, 0.3}, Ps ∈ {0.99, 0.9999} The report should explain how these factors influence the CW change over the duration of the session. Submit your code (C/C++/Python) that when executed from the command line produces all the desired output in a local directory. Include a ‘readme’ file. Code: 70 Points, Report: 30 Points, Total 100 points.