Skip to content

Networking Performance

Tools

Linux Bandwidth Monitor Tools

Windows Bandwidth Monitor Tools

iperf3

  • iPerf: The ultimate speed test tool for TCP, UDP and SCTP

Install

$ sudo apt-get install iperf3

Server Side

$ iperf3 -s

Client Side

$ iperf3 -c ${SERVER_IP}

FTP

HTTP

#!/bin/bash

URL="http://speedtest.tele2.net/1GB.zip"
LOGFILE="curl.log"

rm -rf ${LOGFILE}
curl -L -o /dev/null "$URL" 2>&1  2>&1 | tee ${LOGFILE}
cat ${LOGFILE}