实时SSH网络吞吐量测试
一、安装 pv 软件
centos 需要epel 源安装pv 软件,debian 需要安装pv 软件
yum -y install gcc
wget http://www.ivarch.com/programs/sources/pv-1.5.3.tar.bz2
tar xjf pv-1.5.3.tar.bz2
cd pv-1.5.3
./configure
make && make install
二、使用步骤
centos 需要epel 源安装pv 软件,debian 需要安装pv 软件
#测试本机到192.168.1.103 的实时速率
yes | pv | ssh 192.168.1.103 "cat > /dev/null"