iperf3 servers

This commit is contained in:
cronekorkn 2023-06-06 17:21:12 +02:00
parent 3256329064
commit edbdae6b83
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
3 changed files with 91 additions and 0 deletions

13
bundles/iperf3/items.py Normal file
View file

@ -0,0 +1,13 @@
# directories = {
# '/etc/iperf3': {
# 'purge': True,
# }
# }
# files = {
# '/etc/iperf3/authorized_users': {
# 'content': '\n'.join(
# node.metadata.get('iperf3/authorized_users')
# )
# },
# }

View file

@ -0,0 +1,77 @@
from hashlib import sha256
defaults = {
'apt': {
'packages': {
'iperf3': {},
'iperf': {
'installed': False,
},
}
},
# 'iperf3': {
# 'username': node.name,
# 'password': repo.vault.password_for(f'{node.name} iperf3').value,
# 'authorized_users': {},
# },
'nftables': {
'input': {
'tcp dport 5202 ip saddr { 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16 } accept',
'udp dport 5202 ip saddr { 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16 } accept',
},
},
'systemd': {
'units': {
'iperf3.service': {
'Unit': {
'Description': 'iperf3 server',
'After': {
'syslog.target',
'network.target',
},
},
'Service': {
# 'ExecStart': '/usr/bin/iperf3 --server --port 5202 --authorized-users-path /etc/iperf3/authorized_users',
'ExecStart': '/usr/bin/iperf3 --server --port 5202',
},
'Install': {
'WantedBy': {
'multi-user.target',
},
},
},
},
'services': {
'iperf3.service': {},
},
},
}
# @metadata_reactor.provides(
# 'iperf3/hash',
# )
# def hash(metadata):
# username, password = metadata.get('iperf3/username'), metadata.get('iperf3/password')
# return {
# 'iperf3': {
# 'hash': sha256(f'{{{username}}}{password}'.encode()).hexdigest(),
# },
# }
# @metadata_reactor.provides(
# 'iperf3/authorized_users',
# )
# def iperf3(metadata):
# return {
# 'iperf3': {
# 'authorized_users': set(
# f"{other_node.metadata.get('iperf3/username')},{other_node.metadata.get('iperf3/hash')}"
# for other_node in repo.nodes
# if other_node.has_bundle('iperf3')
# ),
# },
# }

View file

@ -6,6 +6,7 @@
'apt',
'nftables',
'pip',
'iperf3',
],
'metadata': {
'apt': {