1.创建两个容器
# 创建第一个容器 docker run -d --name container1 ubuntu:latest sleep infinity # 创建第二个容器 docker run -d --name container2 ubuntu:latest sleep infinity
2.查找第一个容器的ip地址
docker inspect container1
3.进入第一个容器,并安装iperf3。
# 进入第一个容器 docker exec -it container1 bash # 安装iperf3 apt update apt install iperf3
4.在第一个容器中启动iperf3服务器。
iperf3 -s
5.新开一个窗口,进入第二个容器,并安装iperf3
# 进入第二个容器 docker exec -it container2 bash # 安装iperf3 apt update apt install iperf3
6.在第二个容器中运行iperf3客户端,连接到第一个容器的服务器进行性能测试。
iperf3 -c <第一个容器的IP地址>
#iperf3将提供带宽、延迟、丢包等方面的性能数据,你可以使用这些数据来衡量容器网络的性能。
标签:iperf3,第一个,容器,性能,apt,测试工具,docker,container1 From: https://www.cnblogs.com/lucky-di/p/17571553.html