Linux systems administrators and network administrators often find diagnosing network speed degradation complicated, as there are very few tools available to diagnose these issues. Iperf is a command-line tool used in the diagnostics of network speed issues.
Iperf measures the maximum network throughput a server can handle. It is particularly useful when experiencing network speed issues, as you can use Iperf to determine which server is unable to reach maximum throughput.
This guide assumes that you are the
rootuser. If you are not using the super user, you will need to use
sudobefore each command.
Using Iperf
Iperf must be installed on both computers you are testing the connection between. If you are using a Unix or Linux-based operating system on your personal computer, you may be able to install Iperf on your local machine. If you are testing the throughput of your Linode, however, it’s better to use another server as the end point, as your local ISP may impose network restrictions that can affect the results of your test.
TCP Clients & Servers
Iperf requires two systems because one system must act as a server, while the other acts as a client. The client connects to the server you’re testing the speed of.
- On the Linode you wish to test, launch Iperf in server mode:
1
iperf -s
You should see output similar to:
1 2 3 4
------------------------------------------------------------ Server listening on TCP port 5001 TCP window size: 85.3 KByte (default) ------------------------------------------------------------
- On your second Linode, connect to the first. Replace
198.51.100.5
with the first Linode’s IP address.
1
iperf -c 198.51.100.5
The output should be similar to:
1 2 3 4 5 6 7
------------------------------------------------------------ Client connecting to 198.51.100.5, TCP port 5001 TCP window size: 45.0 KByte (default) ------------------------------------------------------------ [ 3] local 198.51.100.6 port 50549 connected with 198.51.100.5 port 5001 [ ID] Interval Transfer Bandwidth [ 3] 0.0-10.0 sec 142 MBytes 119 Mbits/sec
- You will also see the connection and results on your Iperf server. This will look similar to:
1 2 3 4 5 6 7
------------------------------------------------------------ Server listening on TCP port 5001 TCP window size: 85.3 KByte (default) ------------------------------------------------------------ [ 4] local 198.51.100.5 port 5001 connected with 198.51.100.6 port 50549 [ ID] Interval Transfer Bandwidth [ 4] 0.0-10.2 sec 142 MBytes 117 Mbits/sec
- To stop the Iperf server process, press
CTRL + c
.
UDP Clients & Servers
Using Iperf, you can also test the maximum throughput achieved via UDP connections.
- Start a UDP Iperf server:
1
iperf -s -u
The output will be similar to:
1 2 3 4 5
------------------------------------------------------------ Server listening on UDP port 5001 Receiving 1470 byte datagrams UDP buffer size: 208 KByte (default) ------------------------------------------------------------
- Connect your client to your Iperf UDP server. Replace
198.51.100.5
with your IP address:
1
iperf -c 198.51.100.5 -u
The
-uoption we’ve passed tells Iperf that we are connecting via UDP. This is important, because we want to see the maximum throughput achieved via UDP. The output should be similar to:
1 2 3 4 5 6 7 8 9 10 11
------------------------------------------------------------ Client connecting to 198.51.100.5, UDP port 5001 Sending 1470 byte datagrams UDP buffer size: 208 KByte (default) ------------------------------------------------------------ [ 3] local 198.51.100.6 port 58070 connected with 198.51.100.5 port 5001 [ ID] Interval Transfer Bandwidth [ 3] 0.0-10.0 sec 1.25 MBytes 1.05 Mbits/sec [ 3] Sent 893 datagrams [ 3] Server Report: [ 3] 0.0-10.0 sec 1.25 MBytes 1.05 Mbits/sec 0.084 ms 0/ 893 (0%)
Looking at the output we have received,
1.05 Mbits/secis considerably less than what we received on the TCP tests. It is also considerably less than the maximum outbound bandwidth cap provided by the 1 GB Linode. This is because Iperf limits the bandwidth for UDP clients to 1 Mbit per second by default.
- You can change this with the
-b
flag, replacing the number after with the maximum bandwidth rate you wish to test against. If you are testing for network speed, we recommend setting this number above the maximum bandwidth cap provided by Linode. For example, this test was run on a 1 GB Linode:
1
iperf -c 198.51.100.5 -u -b 150m
This tells the client that we want to achieve a maximum of 150 Mbits per second if possible. The
-bflag only works when using UDP connections, since Iperf does not set a bandwidth limit on the TCP clients.
The output should be similar to:
1 2 3 4 5 6 7 8 9 10 11
----------------------------------------------------------- Client connecting to 198.51.100.5, UDP port 5001 Sending 1470 byte datagrams UDP buffer size: 208 KByte (default) ------------------------------------------------------------ [ 3] local 198.51.100.6 port 41083 connected with 198.51.100.5 port 5001 [ ID] Interval Transfer Bandwidth [ 3] 0.0-10.0 sec 145 MBytes 122 Mbits/sec [ 3] Sent 103625 datagrams [ 3] Server Report: [ 3] 0.0-10.3 sec 136 MBytes 111 Mbits/sec 13.488 ms 6464/103623 (6.2%)
Now that is considerably better than the 1.05 Mbits/sec we were seeing earlier!
Bidirectional Tests
In some cases, you may want to test both servers for the maximum amount of throughput. This can easily be done using the built-in bidirectional testing feature Iperf offers.
Run the following command to test both connections:
1 |
iperf -c 198.51.100.5 -d |
The result is that Iperf will start a server and a client connection on the original client server (198.51.100.6). Once this has been done, Iperf will connect the original Iperf server to the client connection, which is now acting as both a server connection and a client connection. This will look similar to:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
------------------------------------------------------------ Server listening on TCP port 5001 TCP window size: 85.3 KByte (default) ------------------------------------------------------------ ------------------------------------------------------------ Client connecting to 198.51.100.5, TCP port 5001 TCP window size: 45.0 KByte (default) ------------------------------------------------------------ [ 3] local 198.51.100.6 port 50550 connected with 198.51.100.5 port 5001 [ 5] local 198.51.100.6 port 5001 connected with 198.51.100.5 port 36916 [ ID] Interval Transfer Bandwidth [ 3] 0.0-10.0 sec 142 MBytes 118 Mbits/sec [ 5] 0.0-10.1 sec 198 MBytes 165 Mbits/sec |
On the original Iperf server, you will see:
1 2 3 4 5 6 7 |
------------------------------------------------------------ Client connecting to 198.51.100.6, TCP port 5001 TCP window size: 45.0 KByte (default) ------------------------------------------------------------ [ 6] local 198.51.100.5 port 36916 connected with 198.51.100.6 port 5001 [ 6] 0.0-10.0 sec 198 MBytes 166 Mbits/sec [ 5] 0.0-10.2 sec 142 MBytes 117 Mbits/sec |
It is important to note the IDs next to the connection notices. These IDs will allow you to separate the speed results of each server. In this example, the original Iperf server (198.51.100.5) is a 2 GB Linode, whereas the original Iperf client connection (198.51.100.6) is a 1 GB Linode. This explains why we are seeing different maximum throughputs from the servers.
Options
Option | Description |
---|---|
-f | Change the format in which the tests are run. For example, you can use
-f k to get results in Kbits per second instead of Mbits per second. Valid options include m (Mbits, default), k (Kbits), K (KBytes), and M (MBytes). |
-V | Forces Iperf to use IPv6 rather than IPv4. |
-i | Changes the interval between periodic bandwidth tests. For example,
-i 60 will make a new bandwidth report every 60 seconds. The default is zero, which performs one bandwidth test. |
-p | Changes the port. When not specified, the default port is 5001. You must use this flag on both the client and server. |
-B | Binds Iperf to a specific interface or address. If passed through the server command, the incoming interface will be set. If passed through the client command, the outgoing interface will be set. |