iperf3 测试带宽
安装iperf3
wget https://downloads.es.net/pub/iperf/iperf-3.11.tar.gz
tar xf iperf-3.11.tar.gz
cd iperf-3.11
./configure
make && make install
测试方式
待测服务器
iptables -I INPUT -p tcp --dport 5201 -j ACCEPT
# 以服务端模式运行
iperf3 -s
各地区测试机
iperf3 -c x.x.x.x -b 100M -t 300
fping 测试丢包率
安装fping
wget https://fping.org/dist/fping-5.1.tar.gz
tar xf fping-5.1.tar.gz
cd fping-5.1
./configure
make && make install
测试方式
各地区找设备执行命令去ping待测服务器
nohup fping -b 1500 -c 100000 -e -p 100 x.x.x.x >> /fping_test.log &