1.安装iperf命令,yum install iperf
2.关闭服务端防火墙,service firewalld stop
3.服务端运行命令,iperf -s -i 1 -f K,-s表示server,-i表示显示时间间隔,-f表示显示的单位
4.客户端运行命令,iperf -c 10.241.18.1 -i 1 -t 30 -f K ,-c表示客户端,后面接server的地址,-t代表运行的时间
第二种方法,使用speedtest-cli命令
安装命令:
yum install python-pip –y
pip install speedtest-cli
运行命令:
speedtest-cli --bytes
来源:CSDN
作者:forever_xiaobai
链接:https://blog.csdn.net/forever_xiaobai/article/details/80533296