Files
homelab/active/podman_iperf3/iperf3.md
ducoterra ef9104c796
All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 14s
moving everything to active or retired vs incubating and graduated
2025-04-19 18:52:33 -04:00

657 B

Iperf3 Server on Podman

Install

Create a new ipv6 network

# As root
podman network create iperf3 --ipv6

Create the iperf3 container

# As root
podman run \
--name iperf3 \
-d \
-p 5201:5201 \
--restart=always \
--network=iperf3 \
docker.io/networkstatic/iperf3:latest -s

Make sure you have the podman-restart service enabled and running

systemctl enable --now podman-restart

Client

podman run \
--rm \
--network=iperf3 \
docker.io/networkstatic/iperf3:latest -c 3dserver.reeselink.com -P 5