如何使用 SSH 在 Synology NAS 上运行 iperf3

我更喜欢这种方法而不是 GUI docker 方法,因为:

使用具有管理员权限的用户通过 SSH 登录到 Synology NAS,然后 sudo su

要将 iperf3 用作服务器,使用

iperf3_server.sh
docker run  -it --rm --name=iperf3-server --net=host networkstatic/iperf3 -s

要将 iperf3 用作客户端,使用

iperf3_client.sh
docker run  -it --rm --name=iperf3-client --net=host networkstatic/iperf3 -c 10.1.2.3

Check out similar posts by category: Networking