Skip to content

Instantly share code, notes, and snippets.

@jsenecal
Forked from auipga/iperf3.service
Created August 31, 2020 02:22
Show Gist options
  • Save jsenecal/27fc979ab7ac1d15df5d8a8c31b8b94b to your computer and use it in GitHub Desktop.
Save jsenecal/27fc979ab7ac1d15df5d8a8c31b8b94b 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]
Restart=always
RestartSec=3
ExecStart=/usr/bin/iperf3 -s
[Install]
WantedBy=multi-user.target
@jsenecal
Copy link
Author

Even better, something along those lines:
https://lafibre.info/iperf/script-lancer-iperf3/

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