open your terminal/command line:

# while true ; do COMMAND ; sleep 1 ; done # executes COMMAND every second
while true ; do ll ; sleep 1 ; done # show me content of current dir, every second (cool for monitoring changes to that dir)

# on server and client install iperf
apt-get update
apt-get install iperf
# on server machine
iperf -s
# on client machine, where 192.168.1.54 is ip of server
while true ; do iperf -c 192.168.1.54 -r ; sleep 1 ; done # run bandwidth test of server<-switch1-switch2->client, pause for a second then repeat

liked this article?

  • only together we can create a truly free world
  • plz support dwaves to keep it up & running!
  • (yes the info on the internet is (mostly) free but beer is still not free (still have to work on that))
  • really really hate advertisement
  • contribute: whenever a solution was found, blog about it for others to find!
  • talk about, recommend & link to this blog and articles
  • thanks to all who contribute!
admin