I would like to simulate packet delay and loss for UDP and TCP on Linux to measure the performance of an application. Is there a simple way to do this?
|
| ||||
|
feedback
|
|
netem leverages functionality already built into Linux and userspace utilities to simulate networks. This is actually what Mark's answer refers to, by a different name. The examples on their homepage already show how you can achieve what you've asked for:
| |||||||
feedback
|
|
For dropped packets I would simply use iptables and the statistic module.
Above will drop an incoming packet with a 1% probability. Be careful, anything above about 0.14 and most of you tcp connections will most likely stall completely. Take a look at man iptables and search for "statistic" for more information. | |||
|
feedback
|
|
iptables(8) has a statistics module that can be used to match every nth packet. To drop this packet, just append -j DROP. | |||
|
feedback
|
|
This tutorial on networking physics simulations contains a C++ class in the sample code for simulating latency and packet loss in a UDP connection and may be of guidance: | |||
|
feedback
|
|
One of my colleagues uses tc to do this. Refer to the man page for more information. You can see an example of its usage here. | |||
|
feedback
|
|
Haven't tried it myself, but this page has a list of plugin modules that run in Linux' built in iptables IP filtering system. One of the modules is called "nth", and allows you to set up a rule that will drop a configurable rate of the packets. Might be a good place to start, at least. | |||
|
feedback
|
|
You can try http://snad.ncsl.nist.gov/nistnet/ It's quite old NIST project (last release 2005), but it works for me. | |||
|
feedback
|