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