Let’s say that all that you have access to is the command line on a Linux box and you want to know what the network throughput is. If you have another Linux box you can use netcat to do a quick test:
On box a:? Set up netcat to listen to a given port:
nc -l 12345 > /dev/null
Fire up netcat to listen on port 12345 and to dump the output to /dev/null.
On box b:? Send data via → Continue reading “Simple Network Speed Command Line Test for Linux”