more ipv6 fixes

This commit is contained in:
2024-07-31 22:36:46 -04:00
parent 2533c545d6
commit 9833a696d2
18 changed files with 635 additions and 40 deletions

View File

@@ -0,0 +1,7 @@
# Iperf3
## Install
```bash
ansible-playbook -i ansible/inventory.yaml systemd/incubating/iperf3/install_iperf3.yaml
```

View File

@@ -0,0 +1,22 @@
- name: Install iperf3 service
hosts: yellow
vars_files:
- vars.yaml
tasks:
- name: Ensure iperf3 is installed
ansible.builtin.dnf:
name:
- iperf3
state: present
- name: Copy iperf3.service
template:
src: iperf3.service
dest: /etc/systemd/system/iperf3.service
owner: root
group: root
mode: '0644'
- name: Reload iperf3 timer
ansible.builtin.systemd_service:
state: restarted
name: iperf3.service
enabled: true

View File

@@ -0,0 +1,9 @@
[Unit]
Description=iperf3 server
After=syslog.target network.target auditd.service
[Service]
ExecStart=/usr/bin/iperf3 -s
[Install]
WantedBy=multi-user.target