测试内网带宽
基于
- https://github.com/esnet/iperf
兼容
- linux/amd64
- linux/arm/v7
- linux/arm64
使用
- 在A节点运行——服务端
1 |
docker rm -f iperf && docker run -d --restart unless-stopped --name iperf -p 5002:5002 minirplus/iperf iperf3 -s -p 5002 |
- 在A节点运行——测试A节点本机网卡内部带宽
1 |
docker run -it --rm --privileged --network host minirplus/iperf iperf3 -c localhost -p 5002 -R |
- 在B节点运行——B节点至A节点测速(假设A节点IP:192.168.1.4)
1 |
docker run -it --rm --privileged --network host minirplus/iperf iperf3 -c 192.168.1.4 -p 5002 -R |
There are no comments yet