码迷,mamicode.com
首页 > 其他好文 > 详细

统计每分钟的流量

时间:2015-10-12 02:04:02      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:shell脚本插件

#!/bin/bash

while   true

        do

                RX=`ifconfig|awk ‘NR==7{print$2}‘ | cut -d ":" -f2`

                TX=`ifconfig|awk ‘NR==7{print$6}‘ | cut -d ":" -f2`

                ZX=`expr $RX + $TX`

        sleep 60

 

#       for i in `seq 120 -1 1`

#               do

#                       echo -n -e "\b$i"

#                       sleep 1

#               done

#               echo    -n -e "\b"

 

                RX1=`ifconfig|awk ‘NR==7{print$2}‘ | cut -d ":" -f2`

                TX1=`ifconfig|awk ‘NR==7{print$6}‘ | cut -d ":" -f2`

                ZX1=`expr $RX1 + $TX1`

        ZPX=`expr $ZX1 - $ZX`

 

#       echo $ZPX

                 if [ $ZPX -ge 3145728 ];then

                               echo "eth0:每秒流量为:`echo"scale=2;$ZPX / 1048576" | bc` M/s";exit 2

                 elif [ $ZPX -ge 2359296 ];then

                               echo "eth0:每秒流量为:`echo"scale=2;$ZPX / 1048576" | bc` M/s";exit 1

                 else

                               echo "eth0:每秒流量为:`echo"scale=2;$ZPX / 1048576" | bc` M/s";exit 0

                 fi

 

 

#                iptables -A INPUT -p tcp--dport 80 -s $IP -j REJECT

#        fi

done


本文出自 “运维之道” 博客,请务必保留此出处http://lrtao2010.blog.51cto.com/10425744/1701935

统计每分钟的流量

标签:shell脚本插件

原文地址:http://lrtao2010.blog.51cto.com/10425744/1701935

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!