IT/Software/Command Line Applications/iperf3: Difference between revisions

From msgwiki
Jump to navigation Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
No edit summary
No edit summary
Line 1: Line 1:
=== General ===
===General===


=== Install ===
===Install===
<code>sudo apt install iperf3</code>
<code>sudo apt install iperf3</code>


=== Usage ===
===Usage===


==== Server ====
====Server====
This is the computer that will listen for requests for speed checks.
This is the computer that will listen for requests for speed checks.


==== Client ====
====Client====
This is the computer that will try to dial into the server to test their communication speed
This is the computer that will try to dial into the server to test their communication speed
<br />
 
==== Checking speed ====
On the server you need to start listening
 
iperf3 -s
 
On the client you need to send the request
 
iperf3 -c ipAddressOfServer
 
NOTE: If the server is on a dynamic ip <br />

Revision as of 06:18, 24 May 2020

General

Install

sudo apt install iperf3

Usage

Server

This is the computer that will listen for requests for speed checks.

Client

This is the computer that will try to dial into the server to test their communication speed

Checking speed

On the server you need to start listening

iperf3 -s

On the client you need to send the request

iperf3 -c ipAddressOfServer

NOTE: If the server is on a dynamic ip