I emulated WAN delay by netem and compared the performance again.
case1) fixed delay
<------------- 100Mbps -------------->
Host1 --------- Linux Router ---------- Host2
In this case, just adds a fixed amount of delay to all packets going
out on Linux Router by command, "tc qdisc add dev eth0 root netem
delay 100ms".
Here is the result.
fixed delay UDP/TCP/XTP throghput
---------------------------------------
10ms 88/85/92 Mbps
30ms 88/70/91 Mbps
50ms 88/63/89 Mbps
70ms 88/52/84 Mbps
100ms 88/36/70 Mbps
case2) random delay
In this case, add a fixed amount of delay + 10% random delay by
command, "tc change dev eth0 root netem delay 100ms 10ms 25%".
Here is the result.
fixed delay UDP/TCP/XTP throghput
---------------------------------------
10ms 88/80/92 Mbps
30ms 88/51/91 Mbps
50ms 88/41/89 Mbps
70ms 88/28/80 Mbps
100ms 88/19/66 Mbps
TCP's perfomance looks very poor when delay is long and variable.
Thanks
Shigeo
On Thu, Apr 24, 2008 at 10:06 PM, Shigeo N <shigeonx@gmail.com> wrote: