Iperf (Linux)

Aus Tutorials
Zur Navigation springen Zur Suche springen

Noch in Bearbeitung


Installation

sudo apt-get install -y iperf3

Client

iperf3 -c <server>

Server

iperf -s

systemd

[Unit] 
Description=iperf3 

[Service] 
ExecStart=/usr/bin/iperf3 --server
ExecStop=pkill iperf3

[Install]
WantedBy=multi-user.target

Links

https://blog.friedlandreas.net/2020/08/linux-iperf3-als-systemd-deamon/

Links

https://wiki.ubuntuusers.de/iperf/


Zurück zu Ubuntu