|
|
Step-by-step Testbed InstallationThis instruction sets up three of the four main parts of an advanced network testbed, installation of the dummynet emulator should follow this link.
Active Edge DeviceYou need to download the Linux netfilter API first and install it on your machine. The current module works for 2.4.9 kernel.
FreeBSD AQM SchemeWe slightly modified FreeBSD's implementation of the RED scheme, and named it Dual RED. To install it, you need to have a FreeBSD 4.4 or up, and apply this patch patch-1.0.FreeBSD.tar.gz to the source tree, and recompile the kernel.To activate Dual RED, do the following:
The above commands create a bottleneck link of capacity 4Mbit/s, propagation delay of 100ms, a dual-RED queue of size 100 packet, minimum threshold 5 packet, maximum threshold 90 packet, max_p for low priority class packet 0.2, classification mask 0x10, and weight between classes 2. Web Traffic Generation SetThe Web Traffic Generation Set includes web server and client modules. We now introduce them separately.We slightly modify a proprietary web server to generate HTTP objects of arbitrary size. In our model, each HTTP request carries the size information, instead of a specific address of a webpage. The web server then responds by emitting a synthetic object of the requested size to the client. The idea is to extend the URL address parser to allow requests in the form of "http://FILE-SIZE", where FILE-SIZE specifies the size in bytes of the dummy file to be generated by the web server. This simple modification allows us to have a model-driven traffic generation set. To emulate an open-loop client access enviornment, much like the current Internet, we modified the sclient client emulator (created by Gaurav Banga) to allow arbitrary inter-request interval. The source code of the modified sclient is available here. Details of the sclient design can be found here. |