Italiano English
Modifica History Actions

Differenze per "TestDiBanda"

Differenze tra le versioni 2 e 3
Versione 2 del 2010-12-19 18:56:00
Dimensione: 726
Autore: ZioPRoTo
Commento:
Versione 3 del 2011-01-07 23:14:24
Dimensione: 710
Autore: stefanopilla
Commento:
Le cancellazioni sono segnalate in questo modo. Le aggiunte sono segnalate in questo modo.
Linea 2: Linea 2:
Linea 6: Linea 5:
Linea 11: Linea 9:
Linea 14: Linea 11:
wget http://ip/cgi.bin/download -O /dev/null wget http://ip/cgi-bin/download -O /dev/null
Linea 16: Linea 13:
== Server ==
Install mini-httpd and create this script in
Linea 17: Linea 16:
== Server ==

Install mini-httpd and create this script in
Linea 23: Linea 19:
script
Linea 24: Linea 21:
script
{{{
#!/bin/ash
{{{#!/bin/ash
Linea 30: Linea 25:

Linea 34: Linea 27:
{{{ {{{#!/bin/ash
Linea 39: Linea 32:
#!/bin/ash

Loop Infinito di /dev/zero

http://hackerspace.be/Wbm2009v2/TestInterferenceResults

How To Bandwidth Measurement

Client: cURL

curl http://IP/cgi-bin/download > /dev/null

Client: wget

wget http://ip/cgi-bin/download -O /dev/null

Server

Install mini-httpd and create this script in

/www/cgi-bin/download

script

{{{#!/bin/ash echo -e "Content-type: video/mpeg\r\n\r\n" cat /dev/zero }}} Config snippet

{{{#!/bin/ash mkdir -p /www/cgi-bin touch /www/cgi-bin/download chmod +x /www/cgi-bin/download cat > /www/cgi-bin/download << END_OF_SCRIPT echo -e "Content-type: video/mpeg\r\n\r\n" cat /dev/zero END_OF_SCRIPT }}}