Skip to content

Instantly share code, notes, and snippets.

@auipga
Forked from mmasaki/iperf.service
Last active April 6, 2024 00:21
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save auipga/64be019018ef311deba2211ced316f5e to your computer and use it in GitHub Desktop.
Save auipga/64be019018ef311deba2211ced316f5e to your computer and use it in GitHub Desktop.
systemd service unit for iperf3
# /etc/systemd/system/iperf3.service
# User service: $HOME/.config/systemd/user/iperf3.service
[Unit]
Description=iperf3 server
After=syslog.target network.target auditd.service
[Service]
ExecStart=/usr/bin/iperf3 -s
[Install]
WantedBy=multi-user.target
@antun3s
Copy link

antun3s commented Sep 5, 2023

It worked for me.
Thank you very much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment