首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
Data留学生编程讲解、辅导C/C++设计编程、讲解Java程序 辅导Database|辅导Web开发
项目预算:
开发周期:
发布时间:
要求地区:
Project 2: Reliable Data Transfer over UDP (RDT-UDP)
1 / 4
Project 2
Reliable Data Transfer over UDP (RDT-UDP)
1. Objectives
Transport Layer Protocols are central piece of layered architectures. They provide the
logical communication between application processes. UDP (User Datagram Protocol) is a
connectionless, unreliable protocol. It uses a simple transmission model without implicit
handshaking techniques for providing reliability and ordering of packets. Thus, UDP provides
an unreliable service and datagrams may arrive out of order, appear duplicated, or go missing
without notice.
UDP is non-reliable protocol, so to use it you must add reliability features at the
application level. In this project, you will build a reliable transport protocol “RDT-UDP” over
unreliable UDP. Your protocol must provide in-order, reliable delivery of UDP datagrams, and
must do so in the presence of packet loss, delay, corruption, duplication, and re-ordering.
2. Requirements
Clearly describe the network protocol specifications and service definations.
The reliability is achieved using the Sliding Window protocol. You will first
implement the Go-Back-N version with no buffer at the receiver. Then, you will
implement the Selective Repeat version.
Use TCP-style connection maintenance, including establishment, maintains and
release.
Define the format of data carried as the payload of each UDP datagram. The header
length should be as short as possible. In general, the header includes the following
fields:
(1) Sequence Number (32 bits): The sequence number of the first data octet in this
packet (except when SYN is present). If SYN is present, the sequence number is
the initial sequence number (ISN) and the first data octet is ISN+1. The sequence
number is given in the unit of bytes.
(2) Acknowledgement Number (32 bits): If the ACK control bit is set this field
contains the value of the next sequence number the sender of the segment is
expecting to receive. Once a connection is established this is always sent. The
acknowledgement number is given in the unit of bytes.
(3) Connection ID (16 bits) (if exists): A number representing connection identifier.
(4) A (ACK, 1 bit): Indicates that there the value of Acknowledgment Number field
is valid.
(5) S (SYN, 1 bit): Synchronize sequence numbers (connection establishment).
(6) F (FIN, 1 bit): No more data from sender (connection termination)
Avoid losing messages.
Project 2: Reliable Data Transfer over UDP (RDT-UDP)
2 / 4
In case of lost message, detect and recover it (time that takes to recover a message is
related to both reliability and low latency requirements, so the protocol should pay a
special attention to this issue)
Handle messages reordering.
(Optional) Add Congestion Control. The control algorithm is AIMD (like TCP)
The maximum UDP packet size is 524 bytes including a header (512 bytes for the
payload).
The maximum sequence and acknowledgment number should be 102400 and be reset
to zero whenever it reaches the maximum value.
The retransmission (and appropriate congestion control actions) should be triggered
when no data was acknowledged for more than time-out value (e.g. 5 or 10 seconds,
the fixed or dynamic retransmission timeout).
Initial and minimum congestion window size (CWND) should be 512.
The maximum congestion window size (CWND) is 51200.
The initial slow-start threshold (SS-THRESH) should be 10000.
If ACK field is not set, Acknowledgment Numberfield should be set to 0.
FIN should take logically one byte of the data stream (same as in TCP).
FIN and FIN | ACK packets must not carry any payload.
3. Test and Evaluation
(1) First, assume there is no packet loss. Just have the server send a packet, the receiver
responds with an ACK, and so on.
(2) Second, introduce a large file transmission. This means you must divide the file into
multiple packets and transmit the packets based on the current flow and congestion
window size.
(3) Third, introduce packet loss. Now you have to add a timer at the first sent and
unacked packet. There should be one timeout whenever data segments are sent out.
Also congestion control features should be implemented for the successful file
transmission.
4. Performance Analysis
The common performance metrics:
(1) Delay: the time difference between the transport layer accepting data from upper
layer at the sender and the transport layer passing the data to upper layer at the
receiver.
(2) Goodput (useful throughput): Throughput is defined as the number of bits arriving
at the receiver per unit of time. One problem of using throughput as a performance
measure is that it does not take re-transmissions into account. For example: in
Go-Back-N, we may retransmit many redundant packets, which are still counted
toward the traditional throughput definition. These redundant bits are not useful for
the application. A more meaningful measure is known as “Goodput”, which counts
Project 2: Reliable Data Transfer over UDP (RDT-UDP)
3 / 4
the number of bits passed to upper layer here. This basically means that we ignore all
corrupted packets, un-necessary retransmissions, and headers.
(3) Overhead: There are three aspects of overhead: communication, processing, and
storage. Communication overhead has direct relationship with Goodput measurement.
Processing and storage (memory) overhead comes with the additional complexity of
the Selective Repeat protocol, which is its main drawback.
Evaluation is done based on key parameters such as Loss rate, Window size,
Retransmission Timeout, Packet size, total data sent and Network Delay, Channel bandwidth,
Round trip time.
5. Programming
Language: any (C, C++, Java, platform independent)
No high-level network-layer abstractions are allowed in this project. You are allowed
to use some high-level abstractions for parts that are not directly related to
networking, such as string parsing, multi-threading. Use of C++ or Java is preferred.
6. Submission
(1) Project Report
Cover Page
• Project name
• Student Number
• Name
• Date
• School and University
Contents
• Objectives
• Description of Distance Vector Algorithm
• Requirement of experiment
• Programing language/Developing platform and tools
• Design ideas
• Data structures
• Implementation (development tools, model, definitions of objects/methods and
processes and threads, processing flows, etc.)
• Test, Verification, Result Analysis, Performance Analysis, Screenshot with
explanation
(2) Readme.txt
• Plain text format.
• Contain any bugs or issues that you know of in your code.
• It should also indicate how you run your code using command line.
(3) Source Codes
• The source of the program (Must have a program comments).
Project 2: Reliable Data Transfer over UDP (RDT-UDP)
4 / 4
(4) Running Codes
• The compiled program that can run on Windows or Linux system.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代写math 1151, autumn 2024 w...
2024-11-14
代做comp4336/9336 mobile dat...
2024-11-14
代做eesa01 lab 2: weather an...
2024-11-14
代写comp1521 - 24t3 assignme...
2024-11-14
代写nbs8020 - dissertation s...
2024-11-14
代做fin b377f technical anal...
2024-11-14
代做ceic6714 mini design pro...
2024-11-14
代做introduction to computer...
2024-11-14
代做cs 353, fall 2024 introd...
2024-11-14
代做phy254 problem set #3 fa...
2024-11-14
代写n1569 financial risk man...
2024-11-14
代写csci-ua.0202 lab 3: enco...
2024-11-14
代写econ2226: chinese econom...
2024-11-14
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!