当前位置: 移动技术网 > 网络运营>服务器>Linux > linux下监控网络流量的脚本

linux下监控网络流量的脚本

2017年12月12日  | 移动技术网网络运营  | 我要评论
我看了下,linux下的/proc/net/dev记录了每块网卡发送和接受的包和字节数。因此萌生想法,写了一个。运行效果:

复制代码 代码如下:

[root@74-82-173-217 ~]# ./net.sh
current ip: inet addr:74.82.173.217 bcast:74.82.173.223 mask:255.255.255.224
summry info: rx bytes:203692709 (194.2 mib) tx bytes:93525930 (89.1 mib)
eth0 receive bytes: 573 packets: 3
eth0 send bytes: 3086 packets: 3
eth0 receive bytes: 378 packets: 7
eth0 send bytes: 11236 packets: 7
eth0 receive bytes: 324 packets: 6
eth0 send bytes: 444 packets: 2
eth0 receive bytes: 54 packets: 1
eth0 send bytes: 0 packets: 0


具体脚本的内容如下,几乎不需要修改,就可以拿到任何机器上去使用了。
复制代码 代码如下:

[root@74-82-173-217 ~]# cat net.sh
#! /bin/bash
#author: vogts wangtao 2008-12-18
#get summry info
echo "current ip: "`/sbin/ifconfig eth0 | grep inet`
echo "summry info: "`/sbin/ifconfig eth0 | grep bytes`
#sleep 1 second ,monitor eth0
while true
do
receive1=`cat /proc/net/dev|grep eth0 | awk '{print$1}'|sed -s 's/eth0://g'`
receive_pack1=`cat /proc/net/dev|grep eth0 | awk '{print$2}'`
send1=`cat /proc/net/dev|grep eth0 | awk '{print$9}'`
send_pack1=`cat /proc/net/dev|grep eth0 | awk '{print$10}'`
sleep 1
receive2=`cat /proc/net/dev|grep eth0 | awk '{print$1}'|sed -s 's/eth0://g'`
receive_pack2=`cat /proc/net/dev|grep eth0 | awk '{print$2}'`
receive_cnt=`expr $receive2 - $receive1`
receive_pack_cnt=`expr $receive_pack2 - $receive_pack1`
send2=`cat /proc/net/dev|grep eth0 | awk '{print$9}'`
send_pack2=`cat /proc/net/dev|grep eth0 | awk '{print$10}'`
send_cnt=`expr $send2 - $send1`
send_pack_cnt=`expr $send_pack2 - $send_pack1`
echo 'eth0 receive bytes:' $receive_cnt ' packets:' $receive_pack_cnt
echo 'eth0 send bytes:' $send_cnt ' packets:' $send_pack_cnt
done

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网