How do you test the network speed between two boxes?
iPerf is a tool for active measurements of the maximum achievable bandwidth on IP networks (by iperf.fr).
Using Iperf is simple, run one instance on a server (receiving client) with the -s option and another instance on the testing client (sender) with the -c option.
$ wget http://sourceforge.net/projects/iperf/files/iperf-2.0.5.tar.gz/download
$ tar -xzvf iperf-2.0.5.tar.gz
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
$ brew install iperf
iperf -s — this will then start the server, listening to TCP port 5001 by default. You can change to any port you like (by cjcott01).
$ ./iperf-2.0.5/src/iperf -s
iperf -c 111.222.333.444 which is the ip address of the listening server (by cjcott01).
$ iperf -c 111.222.333.444 //target ip
— https://iperf.fr/iperf-download.php#fedora
— https://askubuntu.com/questions/7976/how-do-you-test-the-network-speed-between-two-boxes
— https://travelingpacket.com/2014/04/15/iperf-for-bandwidth-testing/