国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

代寫ECE438、代做C/C++編程語言

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



ECE438: Communication Networks Fall 2023
Machine Problem 2
Abstract
This machine problem tests your understanding of reliable packet transfer. You will
use UDP to implement your own version of TCP. Your implementation must be able to
tolerate packet drops, allow other concurrent connections a fair chance, and must not
be overly nice to other connections (should not give up the entire bandwidth to other
connections).
1 Introduction
In this MP, you will implement a transport protocol with properties equivalent to TCP. You
have been provided with a file called sender main.c, which declares the function
void reliablyTransfer(char* hostname, unsigned short int hostUDPport, char*
filename, unsigned long long int bytesToTransfer).
This function should transfer the first bytesToTransfer bytes of filename to the receiver at
hostname: hostUDPport correctly and efficiently, even if the network drops or reorders
some of your packets. You also have receiver main.c, which declares
void reliablyReceive(unsigned short int myUDPport, char* destinationFile). This
function is reliablyTransfer’s counterpart, and should write what it receives to a file called
destinationFile.
2 What is expected in this MP?
Your job is to implement reliablyTransfer()and reliablyReceive() functions, with the
following requirements:
• The data written to disk by the receiver must be exactly what the sender was given.
• Two instances of your protocol competing with each other must converge to roughly fairly
sharing the link (same throughputs ±10%), within 100 RTTs. The two instances might
not be started at the exact same time.
• Your protocol must be somewhat TCP friendly: an instance of TCP competing with you
must get on average at least half as much throughput as your flow.
1
ECE438: Communication Networks Fall 2023
• An instance of your protocol competing with TCP must get on average at least half as
much throughput as the TCP flow. (Your protocol must not be overly nice.)
• All of the above should hold in the presence of any amount of dropped packets. All flows,
including the TCP flows, will see the same rate of drops. The network will not introduce
bit errors.
• Your protocol must, in steady state (averaged over 10 seconds), utilize at least 70% of
bandwidth when there is no competing traffic, and packets are not artificially dropped or
reordered.
• You cannot use TCP in any way. Use SOCK DGRAM (UDP), not SOCK STREAM.
The test environment has a 20Mbps connection, and a 20ms RTT.
3 VM Setup
You’ll need 2 VMs to test your client and server together. Unfortunately, VirtualBox’s default setup does not allow its VMs to talk to the host or each other. There is a simple fix,
but then that prevents them from talking to the internet. So, be sure you have done all of
your apt-get installs before doing the following! (To be sure, just run: sudo apt-get install
gcc make gdb valgrind iperf tcpdump ) Make sure the VMs are fully shut down. Go to
each of their Settings menus, and go to the Network section. Switch the Adapter Type from
NAT to “host-only”, and click ok. When you start them, you should be able to ssh to them
from the host, and it should be able to ping the other VM. You can use ifconfig to find out
the VMs’ IP addresses. If they both get the same address, sudo ifconfig eth0 newipaddr
will change it. (If you make the 2nd VM by cloning the first + choosing reinitialize MAC
address, that should give different addresses.)
New in MP2: You can use the same basic test environment described above. However, the
network performance will be ridiculously good (same goes for testing on localhost), so you’ll
need to limit it. The autograder uses tc . If your network interface inside the VM is eth0,
then run (from inside the VM) the following command:
sudo tc qdisc del dev eth0 root 2>/dev/null
to delete existing tc rules. Then use,
sudo tc qdisc add dev eth0 root handle 1:0 netem delay 20ms loss 5%
followed by
sudo tc qdisc add dev eth0 parent 1:1 handle 10: tbf rate 20Mbit burst 10mb
latency 1ms
2
ECE438: Communication Networks Fall 2023
will give you a 20Mbit, 20ms RTT link where every packet sent has a 5% chance to get
dropped. Simply omit the loss n% part to get a channel without artificial drops.
(You can run these commands just on the sender; running them on the receiver as well won’t
make much of a difference, although you’ll get a 20ms RTT if you don’t adjust the delay to
account for the fact that it gets applied twice.)
4 Autograder and submission
We use the autograder to grade your MPs, the submission process is simple.
First, open the autograder web page:
http://10.105.100.204.
This is a ZJUI-private IP. If your device is not accessing it through the campus network,
please use VPN to get a private IP
You will see two sections. MP Submission allows you to submit your assignment. You can
do this by entering your Student ID (start with **0), selecting which MP you are submitting,
selecting the file extension of your files and uploading your MP files. Note: only C/Cpp
files are accepted. When uploading files, add your files one by one, do not choose
multiple files to add at one time. Submission History section allows you to check
your submission history and grade. You can do this by entering your student ID.
Caution: The queue can only handle 200 submissions at one time, so remember to check
your submission status in Submission History after you submit your assignment. During
the hours leading up to the submission, the queue could be long. So it is advisable to get
your work done early.
5 Grade Breakdown
10%: You submitted your assignment correctly and it compiles correctly on the autograder
20%: Your receiver and sender can transfer small files correctly
20%: Your sender and receiver can transfer big files correctly
10%: Your sender and receiver can utilize empty link
20%: Your sender and receiver can transfer files correctly with package dropping
10%: Your sender and receiver are TCP friendly with no loss
10%: Your sender and receiver are TCP friendly with 1% loss
(We will use diff to compare the output file with the downloaded copy, and you should do
the same. If diff produces any output, you aren’t transferring the file correctly.)
3
ECE438: Communication Networks Fall 2023
6 Test Details
Your MP2 code will run entirely within Docker Containers and will be tested via Docker’s
private network.
The testing for MP2 is divided into 7 stages:
1. Compiling: We will compile the code for your sender and receiver. If the compilation is successful, you will receive the basic score for successful compilation; if it fails, you
will receive a score of 0, and subsequent tests will not be conducted.
2. Small file transfer test in a no-loss environment: We will conduct a small file
transfer test of your sender and receiver in a Docker network without any artificially induced
packet loss. First, we’ll launch your receiver code in one container and then your sender code
in another container. The time limit for this task is 5 seconds. If your code can complete the
transfer of the small file within 5 seconds and the output file successfully matches the source
file when compared using diff, you will receive the score for this phase. If this phase fails, no
further tests will be conducted.
3. Large file transfer test in a no-loss environment: We will test your code using
a large file of 18.4MB. The testing method is the same as for the small file, but you have a
time limit of 10 seconds. If the transfer is completed within 10 seconds and passes the diff
comparison, you earn this phase’s score. If this phase fails, subsequent tests will proceed
unaffected.
4. Channel bandwidth utilization test: We will transfer a file in a no-loss environment and place a stricter time constraint on its transfer than the previous tests to ensure
your code utilizes the channel bandwidth to its maximum potential. If the file transfer completes within the stipulated time and passes the diff comparison, you earn this phase’s score.
If this phase fails, subsequent tests will proceed unaffected.
5. File transfer test with 5% packet loss and 20ms delay: We will set the Docker
network to have a 5% packet loss and a 20ms delay and test whether your code can accurately
receive the file. We’ll use a file of several KBs for the test. If the file is transferred correctly
within 10 seconds and passes the diff comparison, you earn this phase’s score. If this phase
fails, subsequent tests will proceed unaffected.
6. TCP-friendly test: This test will be conducted within a 300Mbps channel. Using
iperf3, we will create a TCP stream and measure its baseline rate when it’s the only stream.
Then, we’ll run your code and iperf3 concurrently and test the rate the TCP stream can
achieve when sharing the channel. If the TCP stream manages to get more than 40% of its
baseline rate, the test is passed. If this phase fails, no further tests will be conducted.
7. TCP-friendly test with 1% loss: We will test within a 300Mbps channel with a
4
ECE438: Communication Networks Fall 2023
1% packet loss. Similar to the previous test, we will first record the baseline rate of only the
TCP stream. We’ll then test the rate the TCP stream can achieve when your code and the
TCP stream share the channel. If the TCP stream gets more than 40% of its baseline rate,
the test is passed.
Please note that due to the influence of the autograder’s network environment, there might
be a drop in speed during times of high submission volume. In such cases, you can resubmit
after a while. Each test takes about a minute and a half. We will retain the highest score
from all your submissions as your final score. The files you submit must be named either
“receiver main.cpp”, “sender main.cpp” or “receiver main.c”, “sender main.c”.
如有需要,請加QQ:99515681  郵箱:99515681@q.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:代發EI論文 EI論文轉證 EI源刊助發
  • 下一篇:代做Spatial Networks for Locations
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    精品久久久久久无码国产| 精品久久久久久久免费人妻| 欧美日韩国产不卡在线看| 国产99视频精品免视看7| 色777狠狠综合秋免鲁丝| 国产精品aaa| 国产精品aaaa| 国产美女精品在线观看| 国产美女永久无遮挡| 高清无码视频直接看| 国产免费内射又粗又爽密桃视频| 日韩在线观看a| 国产成人亚洲精品无码h在线| 国产精品久久电影观看| 中文字幕成人一区| 午夜精品一区二区三区在线视频| 国产淫片av片久久久久久| www国产精品视频| 日韩欧美精品在线不卡| 国产精品av在线播放| 久久97精品久久久久久久不卡| 欧美少妇一区| 久久综合久久久久| 国产精品免费看久久久香蕉| 国产伦精品一区二区三区视频黑人 | 日韩精品在线中文字幕| 国内成人精品一区| 国产精品综合网站| 国产精品黄视频| 青青青国产在线视频| 91精品综合久久| 欧美成年人视频网站| 欧美亚洲国产精品| 国产xxxxx视频| 亚洲AV无码成人精品一区| 国产日韩在线免费| 久久精品一偷一偷国产| 欧美一区二区三区精品电影| 国模私拍一区二区三区| 国产精品久久久91| 国产在线一区二区三区四区| 久久综合久久八八| 免费国产黄色网址| 在线观看一区二区三区三州| 777精品视频| 国产在线视频欧美| 国产日产欧美精品| 亚洲精品乱码久久久久久自慰| 久久精品小视频| 天天好比中文综合网| 99久热re在线精品视频| 久久久久久com| 国产精品一区二区免费| 中文字幕日韩一区二区三区不卡| 极品粉嫩国产18尤物| 精品国产一区二区在线 | 狠狠色综合色区| 久久国内精品一国内精品| 欧美精品一区二区三区在线看午夜 | 美女亚洲精品| 国产精品久久久久久久午夜| 今天免费高清在线观看国语| 久久精品国亚洲| 极品美女扒开粉嫩小泬| 精品国产一区二区三区在线| 国产精品一区而去| 日韩高清av| 国产精品黄页免费高清在线观看 | 日韩一区二区福利| 国产欧美精品在线播放| 五码日韩精品一区二区三区视频 | 91精品国产91久久久久久不卡| 亚洲人成网站在线播放2019| 久操网在线观看| 国产男人精品视频| 视频在线一区二区三区| 国产精品久久在线观看| 91麻豆国产语对白在线观看| 日韩暖暖在线视频| 久久久久成人网| 日韩视频免费在线| 国产乱码精品一区二区三区不卡| 色噜噜狠狠色综合网| 国产精品加勒比| 久久精品国产美女| 丰满爆乳一区二区三区| 日本女人高潮视频| 色中色综合影院手机版在线观看| 久久久久亚洲精品| 99久久无色码| 国产免费黄视频| 好吊色欧美一区二区三区视频| 亚洲a成v人在线观看| 色中色综合影院手机版在线观看| 色偷偷噜噜噜亚洲男人| 久久久亚洲国产精品| 丰满少妇大力进入| 国产精品亚洲网站| 国产一二三区在线播放| 欧美日韩精品在线一区二区| 日本一区二区三区在线播放| 国产精品都在这里| 久久久久久久久一区| 91精品国产免费久久久久久| 国产欧美韩国高清| 国产亚洲综合视频| 欧美精品尤物在线| 日本久久精品视频| 日本亚洲欧洲精品| 日本高清不卡一区二区三| 午夜精品区一区二区三| 中文字幕中文字幕一区三区| 中文网丁香综合网| 国产aaa精品| 亚洲午夜久久久影院伊人| 一本一生久久a久久精品综合蜜| 国产精品免费电影| 国产精品美女久久久免费| 久久亚洲影音av资源网| 国产精品成人v| 欧美激情亚洲一区| 亚洲国产欧美日韩| 日本在线观看天堂男亚洲| 日本在线观看不卡| 欧美人与动牲交xxxxbbbb| 国内免费久久久久久久久久久| 激情六月天婷婷| 国产欧美亚洲精品| 国产成人一区二区三区免费看| 久久精品视频91| 国产精品国产精品国产专区蜜臀ah| 久久久国产精品视频| 精品国产免费人成电影在线观...| 一区二区三区四区免费视频| 午夜精品理论片| 欧美性资源免费| 国产精品揄拍一区二区| 日韩av在线播放不卡| 欧美成人一区二区在线观看| 成人久久久久爱| 欧美wwwxxxx| 中国人体摄影一区二区三区| 国产夫妻自拍一区| 欧美一区二区大胆人体摄影专业网站| 成人国产精品一区二区| 久久国产精品一区二区三区| 国产日韩精品推荐| 欧美成人在线网站| 国产精选在线观看91| 亚洲欧洲三级| 国产激情美女久久久久久吹潮| 少妇久久久久久被弄到高潮| 国产ts一区二区| 蜜臀av.com| 在线观看福利一区| 久久婷婷人人澡人人喊人人爽| 五月天亚洲综合情| www.日韩视频| 国产成人精品一区二区三区福利| 欧美日韩一区二区三区在线视频| 操日韩av在线电影| 91精品国产高清久久久久久91 | 日韩高清专区| 精品久久久久久无码中文野结衣| 久久久久天天天天| 日韩中文字幕网站| 国产精品乱子乱xxxx| 国产精品精品视频一区二区三区| 色噜噜狠狠狠综合曰曰曰88av| zzijzzij亚洲日本成熟少妇| 国产成人精品一区| 国产av熟女一区二区三区| 久久久精品影院| 亚洲欧美影院| 黄色免费高清视频| 国产日韩一区二区三区| 欧美牲交a欧美牲交aⅴ免费下载| 日韩视频免费在线观看| 91精品国产综合久久久久久丝袜| 国产精品综合久久久久久| 99热一区二区三区| www.欧美黄色| 久久久久久久久久国产| 欧美理论片在线观看| 性一交一乱一伧国产女士spa | 国产精品日韩一区二区| 一本久道久久综合狠狠爱亚洲精品| 日本高清不卡在线| 逼特逼视频在线| 国产精品青青草| 日韩最新中文字幕| 国产网站免费在线观看| 国产不卡av在线| 中文网丁香综合网| 国内精品**久久毛片app| 久久免费成人精品视频| 国产aaa一级片| 欧美久久久久久一卡四| 99精品视频网站| 国产精品吹潮在线观看|