kis 发表于 2020-11-4 18:45:16

mcs7 ssh下查看实时网速

在使用魔盒的时候,会经常有查看系统当前网速的需求,那么直接在SSH终端里就能用命令查看网速就很需要了。
直接用网上现有的shell修改一下就可实现。
ssh 登陆后
cd /usr/bin
sudo ln -s /sbin/ifconfig ./
sudo vi netspeed.sh

#!/bin/sh

LANG=""

while true

do

up_time1=`ifconfig $1 | grep "TX bytes" | awk '{print $6}'`

down_time1=`ifconfig $1 | grep "RX bytes" | awk '{print $2}'`

sleep 1

clear

up_time2=`ifconfig $1 | grep "TX bytes" | awk '{print $6}'`

down_time2=`ifconfig $1 | grep "RX bytes" | awk '{print $2}'`
up_time3=`echo ${up_time1#bytes:}`
up_time4=`echo ${up_time2#bytes:}`

up_time=`expr $up_time4 - $up_time3`

down_time3=`echo ${down_time1#bytes:}`
down_time4=`echo ${down_time2#bytes:}`

down_time=`expr $down_time4 - $down_time3`

up_time=`expr $up_time / 1024`

down_time=`expr $down_time / 1024`

echo 上传速度: $up_time KB/s

echo 下载速度: $down_time KB/s

done
给该文件添加可执行权限chmod +x netspeed.sh执行./netspeed.sh eth0





风云郎 发表于 2020-11-4 20:18:08

最近的教程有点多啊,看来是真准备涨价了!
页: [1]
查看完整版本: mcs7 ssh下查看实时网速