99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫Understanding TCP Congestion Control

時間:2024-02-02  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Exercise 1: Understanding TCP Congestion Control
using ns-2
We have studied the TCP congestion control algorithm in detail in the lecture (and
Section 3.6 of the text). You may wish to review this before continuing with this exercise.
Recall that, each TCP sender limits the rate at which it sends traffic as a function of
perceived network congestion. We studied three variants of the congestion control
algorithm: TCP Tahoe, TCP Reno and TCP new Reno.
We will first consider TCP Tahoe (this is the default version of TCP in ns-2). Recall that
TCP Tahoe uses two mechanisms:
• A varying congestion window, which determines how many packets can be sent
before the acknowledgment for the first packet arrives.
• A slow-start mechanism, which allows the congestion window to increase
exponentially in the initial phase, before it stabilises when it reaches threshold
value. A TCP sender re-enters the slow-start state whenever it detects
congestion in the network.
The provided script, tpWindow.tcl implements a simple network that is illustrated in the
figure below.
Node 0 and Node 1 are connected via a link of capacity 1 Mbps. Data traffic will only
flow in the forward direction, i.e. from Node 0 to Node 1. Observe that packets from
node 0 are enqueued in a buffer that can hold 20 packets. All packets are of equal size
and are equal to the MSS.
The provided script accepts two command line arguments:
• the maximum value of the congestion window at start-up in number of packets
(of size MSS).
• The one-way propagation delay of the link
You can run the script as follows:
$ns tpWindow.tcl <max_cwnd> <link_delay>
NOTE: The NAM visualiser is disabled in the script. If you want to display the NAM
window (graphical interface), then uncomment the fifth line of the 'finish' procedure (i.e.
remove the "#"):
proc finish {} {
 global ns file1 file2
 $ns flush-trace
 close $file1
 close $file2
 #exec nam out.nam &
 exit 0
}
We strongly recommend that you read through the script file to understand the
simulation setting. The simulation is run for 60 seconds. The MSS for TCP segments is
500 bytes. Node 0 is configured as a FTP sender which transmits a packet every 0.01
second. Node 1 is a receiver (TCP sink). It does not transmit data and only
acknowledges the TCP segments received from Node 0.
The script will run the simulation and generate two trace files: (i) Window.tr, which keeps
track of the size of the congestion window and (ii) WindowMon.tr , which shows several
parameters of the TCP flow.
The Window.tr file has two columns:
time congestion_window_size
A new entry is created in this file every 0.02 seconds of simulation time and records the
size of the congestion window at that time.
The WindowMon.tr file has six columns:
time number_of_packets_dropped drop_rate throughput queue_size avg_tp
ut
A new entry is created in this file every second of simulation time.
The number_of_packets_dropped , drop_rate and throughputrepresent the
corresponding measured values over each second. The queue_size indicates the size of
the queue at each second, whereas avg_tput is the average throughput measured since
the start of the simulation.
Question 1 : Run the script with the max initial window size set to 150 packets and the
delay set to 100ms (be sure to type "ms" after 100). In other words, type the following:
$ns tpWindow.tcl 150 100ms
To plot the size of the TCP window and the number of queued packets, we use the
provided gnuplot script Window.plot as follows:
$gnuplot Window.plot
What is the maximum size of the congestion window that the TCP flow reaches in this
case? What does the TCP flow do when the congestion window reaches this value?
Why? What happens next? Include the graph in your submission report.
Question 2: From the simulation script we used, we know that the payload of the
packet is 500 Bytes. Keep in mind that the size of the IP and TCP headers is 20 Bytes,
each. Neglect any other headers. What is the average throughput of TCP in this case?
(both in number of packets per second and bps)
You can plot the throughput using the provided gnuplot script WindowTPut.plot as
follows:
$gnuplot WindowTPut.plot
This will create a graph that plots the instantaneous and average throughput in
packets/sec. Include the graph in your submission report.
Question 3 : Rerun the above script, each time with different values for the max
congestion window size but the same RTT (i.e. 100ms). How does TCP respond to the
variation of this parameter? Find the value of the maximum congestion window at which
TCP stops oscillating (i.e., does not move up and down again) to reach a stable behaviour.
What is the average throughput (in packets and bps) at this point? How does the actual
average throughput compare to the link capacity (1Mbps)?
TCP Tahoe vs TCP Reno
Recall that, so far we have observed the behaviour of TCP Tahoe. Let us now observe
the difference with TCP Reno. As you may recall, in TCP Reno, the sender will cut the
window size to 1/2 its current size if it receives three duplicate ACKs. The default
version of TCP in ns-2 is TCP Tahoe. To change to TCP Reno, modify the Window.tcl
OTcl script. Look for the following line:
set tcp0 [new Agent/TCP]
and replace it with:
set tcp0 [new Agent/TCP/Reno]
Question 4 : Repeat the steps outlined in Questions 1 and 2 (NOT Question 3) but for
TCP Reno. Compare the graphs for the two implementations and explain the
differences. (Hint: compare the number of times the congestion window goes back to
zero in each case). How does the average throughput differ in both implementations?
Note: Remember to include all graphs in your report.
Exercise 2: Flow Fairness with TCP
In this exercise, we will study how competing TCP flows with similar characteristics
behave when they share a single bottleneck link.
The provided script, tp_fairness.tcl generates 5 source-destination pairs which all share
a common network link. Each source uses a single TCP flow which transfers FTP traffic
to the respective destination. The flows are created one after the other at 5-second
intervals (i.e., flow i+1 starts 5 seconds after flow i for i in [1,4] ). You can invoke the
script as follows
$ns tp_fairness.tcl
The figure below shows the resulting topology; there are 5 sources (2,4,6,8,10), 5
destinations (3,5,7,9,11), and each source is sending a large file to a single destination.
Node 2 is sending a file to Node 3, Node 4 is sending a file to Node 5, and so on.
The script produces one output file per flow; farinessMon i .tr for each i in [1,5] . Each of
these files contains three columns:
time | number of packets delivered so far | throughput (packets per second)
You can plot the throughput as a function of time using the provided gnuplot
script, fairness_pps.plot , as follows:
$gnuplot fairness_pps.plot
NOTE: The NAM visualiser is disabled in the script. If you want to display the NAM
window (graphical interface), modify tp_fairness.tcl and uncomment the fifth line of the
'finish' procedure:
proc finish {} {
 global ns file1 file2
 $ns flush-trace
 close $file1
 close $file2
 #exec nam out.nam &
 exit 0
}
Run the above script and plot the throughput as a function of time graph and answer the
following questions:
Question 1 : Does each flow get an equal share of the capacity of the common link (i.e.,
is TCP fair)? Explain which observations lead you to this conclusion.
Question 2. What happens to the throughput of the pre-existing TCP flows when a new
flow is created? Explain the mechanisms of TCP which contribute to this behaviour.
Argue about whether you consider this behaviour to be fair or unfair.
Note: Remember to include all graphs in your report.
Exercise 3: TCP competing with UDP
In this exercise, we will observe how a TCP flow reacts when it has to share a bottleneck
link that is also used by a UDP flow.
The provided script, tp_TCPUDP.tcl , takes a link capacity value as a command line
argument. It creates a link with the given capacity and creates two flows which traverse
that link, one UDP flow and one TCP flow. A traffic generator creates new data for each
of these flows at a rate of 4Mbps. You can execute the simulation as follows,
$ns tp_TCPUDP <link_capacity>
After the simulation completes, you can plot the throughput using the provided gnuplot
script, TCPUDP_pps.plot , as follows,
$gnuplot TCPUDP_pps.plot
Question 1: How do you expect the TCP flow and the UDP flow to behave if the
capacity of the link is 5 Mbps?
Now, you can use the simulation to test your hypothesis. Run the above script as
follows,
$ns tp_TCPUDP.tcl 5Mb
The script will open the NAM window. Play the simulation. You can speed up the
simulation by increasing the step size in the right corner. You will observe packets with
two different colours depicting the UDP and TCP flow. Can you guess which colour
represents the UDP flow and the TCP flow respectively?
You may disable the NAM visualiser by commenting the "exec nam out.nam &' line in
the 'finish' procedure.
Plot the throughput of the two flows using the above script (TCPUDP_pps.plot) and
answer the following questions:
Question 2: Why does one flow achieve higher throughput than the other? Try to
explain what mechanisms force the two flows to stabilise to the observed throughput.
Question 3: List the advantages and the disadvantages of using UDP instead of TCP for
a file transfer, when our connection has to compete with other flows for the same link.
What would happen if everybody started using UDP instead of TCP for that same
reason?
Note: Remember to include all graphs in your report.
BONUS Exercise: Understanding IP Fragmentation
(Optional: If you attempt this and Include it in your report, you may get bonus marks
(max of 2 marks). We will add these bonus marks to your Lab total with the condition
that the total obtained marks for the labs cannot exceed 20)
We will try to find out what happens when IP fragments a datagram by increasing the
size of a datagram until fragmentation occurs. You are provided with a Wireshark trace
file ip_frag that contains trace of sending pings with specific payloads to 8.8.8.8. We
have used ping with option ( – s option on Linux) to set the size of data to be carried in
the ICMP echo request message. Note that the default packet size is 64 bytes in Linux
(56 bytes data + 8 bytes ICMP header). Also note that Linux implementation for ping
also uses 8 bytes of ICMP time stamp option leaving 48 bytes for the user data in the
default mode. Once you have send a series of packets with the increasing data sizes, IP
will start fragmenting packets that it cannot handle. We have used the following
commands to generate this trace file.
Step 1: Ping with default packet size to the target destination as 8.8.8.8
ping -c 10 8.8.8.8
Step 2: Repeat by sending a set of ICMP requests with data of 2000.
ping -s 2000 -c 10 8.8.8.8
Step 3: Repeat again with data size set as 3500
ping -s 3500 -c 10 8.8.8.8
Load this trace file in Wireshark, filter on protocol field ICMP (you may need to clear the
filter to see the fragments) and answer the following questions.
Question 1: Which data size has caused fragmentation and why? Which host/router has
fragmented the original datagram? How many fragments have been created when data
size is specified as 2000?
Question 2: Did the reply from the destination 8.8.8.8. for 3500-byte data size also get
fragmented? Why and why not?
Question 3: Give the ID, length, flag and offset values for all the fragments of the first
packet sent by 192.168.1.103 with data size of 3500 bytes?
Question 4: Has fragmentation of fragments occurred when data of size 3500 bytes has
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:代做CSCI203、代寫Python/c++編程語言
  • 下一篇:代寫指標 代寫期貨策略 指標代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                韩国欧美一区二区| 亚洲品质自拍视频| 国产精品久久午夜| 精品一区中文字幕| 欧美区一区二区三区| 天天操天天干天天综合网| 91污片在线观看| 亚洲同性同志一二三专区| 欧美在线你懂的| 亚洲va天堂va国产va久| 欧美日韩精品系列| 国产成人精品亚洲午夜麻豆| 中文字幕成人在线观看| 不卡欧美aaaaa| 久久久99久久| proumb性欧美在线观看| 亚洲免费观看高清完整版在线| 免费在线视频一区| 国产精品视频九色porn| 91麻豆自制传媒国产之光| 亚洲一区二区视频| 国产三区在线成人av| bt7086福利一区国产| 一区二区欧美在线观看| 精品国产精品网麻豆系列| 成人午夜短视频| 亚洲一区中文在线| 欧美国产精品v| 欧美视频一区二区三区| 九九久久精品视频| 日韩一区二区三区视频| 波多野结衣中文字幕一区二区三区| 亚洲三级小视频| 日韩区在线观看| 欧美日韩精品福利| 风间由美一区二区三区在线观看| 亚洲免费视频成人| 欧美日韩和欧美的一区二区| 懂色av中文一区二区三区 | 欧美一区二区视频网站| 国产一区二区三区在线观看免费 | 精品国产一区久久| 成人av在线影院| 国产福利不卡视频| 日韩专区一卡二卡| 最新国产の精品合集bt伙计| 久久久久久久网| 欧美精品v国产精品v日韩精品| 国产精品18久久久久久久久久久久| 国产一区二区不卡在线| 日韩专区在线视频| 自拍偷自拍亚洲精品播放| 日韩一级二级三级| 精品国产99国产精品| 欧美日韩国产综合一区二区| 日韩一区二区三区视频在线观看| 91色九色蝌蚪| 成人h动漫精品| 亚洲资源在线观看| 日本中文字幕不卡| 亚洲一区二区视频在线| 亚洲人成网站在线| 亚洲午夜电影在线观看| 亚洲精品国产精品乱码不99| 国产精品久久久久久久久久免费看| 国产精品成人在线观看| 国产精品美女www爽爽爽| 久久蜜桃一区二区| 国产精品电影一区二区三区| 国产精品视频你懂的| 国产女人aaa级久久久级| 欧美三区在线观看| 日韩欧美一二三四区| 91精品国产麻豆国产自产在线| 欧美日韩国产精品成人| 欧美一级片免费看| 日韩三级.com| 欧美性生活久久| 精品国产乱码久久久久久图片 | 国产一区不卡精品| 综合久久久久久| 日韩电影在线一区| 激情文学综合网| 国产成人在线看| 欧美精品v国产精品v日韩精品| 欧美福利一区二区| 久久影视一区二区| 亚洲婷婷综合色高清在线| 亚洲一区在线观看免费| 天堂久久久久va久久久久| 国产91在线观看| 日本电影欧美片| 制服.丝袜.亚洲.中文.综合| 久久九九国产精品| 亚洲一区二区三区影院| 麻豆成人91精品二区三区| 亚洲综合区在线| 国产成人av一区二区三区在线观看| 成人午夜免费电影| 在线视频一区二区三区| 国产色综合一区| 亚洲综合在线电影| 日本亚洲视频在线| 91高清在线观看| 欧美va日韩va| 亚洲资源在线观看| 99riav久久精品riav| 欧美一区二区三区在线视频| 久久久99免费| 精品一区二区久久| 欧美精品自拍偷拍| 中文字幕一区二| 成人禁用看黄a在线| 制服丝袜亚洲色图| 亚洲图片激情小说| 麻豆一区二区三| 欧美主播一区二区三区| 亚洲国产精品二十页| 美女国产一区二区三区| 91国偷自产一区二区三区成为亚洲经典| 精品理论电影在线观看| 日韩高清不卡一区二区三区| 日韩二区三区在线观看| 色综合天天综合给合国产| 久久久亚洲高清| 蜜臀久久久99精品久久久久久| 欧美午夜精品久久久久久孕妇| 国产女主播一区| 国产成人在线免费观看| 26uuuu精品一区二区| 日韩国产在线观看| 日韩欧美国产wwwww| 天堂午夜影视日韩欧美一区二区| av午夜一区麻豆| 一区二区三区欧美视频| 99久久夜色精品国产网站| 国产免费观看久久| 一本色道a无线码一区v| 亚洲色欲色欲www| yourporn久久国产精品| 国产精品丝袜黑色高跟| 成人性生交大合| 亚洲欧洲国产日本综合| 7777精品伊人久久久大香线蕉经典版下载| 午夜免费久久看| 2023国产一二三区日本精品2022| 国产老肥熟一区二区三区| 亚洲视频精选在线| 日韩一区二区在线看片| 国产成人免费视频网站| 亚洲摸摸操操av| 日韩免费视频一区二区| 99久久精品国产一区二区三区| 亚洲成人一区在线| 欧美韩日一区二区三区| 欧美日韩一本到| 成人美女在线观看| 日韩av电影天堂| 国产精品不卡在线观看| 欧美一区二区三区啪啪| 成人激情午夜影院| 日韩av网站免费在线| 亚洲丝袜自拍清纯另类| 精品久久五月天| 欧美日韩一区久久| 国产精品88888| 日本欧美肥老太交大片| 中文字幕一区二区三区精华液| 欧美一级久久久| 一本色道久久综合狠狠躁的推荐| 久久国产三级精品| 亚洲一区二区三区四区在线免费观看| 久久一夜天堂av一区二区三区 | 亚洲va中文字幕| 国产精品毛片无遮挡高清| 精品乱码亚洲一区二区不卡| 欧美三级在线看| 日本韩国欧美一区二区三区| 国产电影精品久久禁18| 精品一区二区三区影院在线午夜| 亚洲成精国产精品女| 亚洲欧美国产77777| 中文字幕免费不卡| 久久在线免费观看| 欧美刺激午夜性久久久久久久| 欧美婷婷六月丁香综合色| 不卡的av电影在线观看| 成人黄色小视频| 国产盗摄精品一区二区三区在线| 精品综合久久久久久8888| 日韩精品每日更新| 日本视频中文字幕一区二区三区| 亚洲h在线观看| 婷婷丁香久久五月婷婷| 五月天丁香久久| 日本欧美久久久久免费播放网| 日本免费在线视频不卡一不卡二| 奇米亚洲午夜久久精品| 久久精品国产秦先生| 久久国产精品99久久人人澡|