shell实时监控网卡流量

post by rocdk890 / 2013-5-4 12:11 Saturday linux技术
  今天给大家分享个实时查看网卡流量的脚本,经测试效果还可以,但不是很完美,如果大家有更好的,请联系我.
  系统:centos 5.5
脚本内容:
#!/bin/bash
#network
#by rocdk890
while : ; do
      time=`date +%m"-"%d" "%k":"%M`
      day=`date +%m"-"%d`
      port=`ifconfig |grep eth|awk '{print $1}'`
      rx_before=`ifconfig $port|sed -n "8"p|awk '{print $2}'|cut -c7-`
      tx_before=`ifconfig $port|sed -n "8"p|awk '{print $6}'|cut -c7-`
      sleep 2
      rx_after=`ifconfig $port|sed -n "8"p|awk '{print $2}'|cut -c7-`
      tx_after=`ifconfig $port|sed -n "8"p|awk '{print $6}'|cut -c7-`
      rx_result=$[(rx_after-rx_before)/256]
      tx_result=$[(tx_after-tx_before)/256]
      echo "$time Now_In_Speed: "$rx_result"kbps Now_OUt_Speed: "$tx_result"kbps"
      sleep 2
done
夜空- 本站版权
1、本站所有主题由该文章作者发表,该文章作者与夜空享有文章相关版权
2、其他单位或个人使用、转载或引用本文时必须同时征得该文章作者和夜空的同意
3、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
4、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
5、原文链接:blog.slogra.com/post-359.html

标签: centos linux shell 监控 网卡 network 流量

评论: