主页 > 知识库 > linux下监控网络流量的脚本

linux下监控网络流量的脚本

热门标签:免费门店地图标注注册入驻 外呼系统一天耗费多少流量 电话机器人每天搜索多少次 艾比利外呼系统 陕西便宜电销机器人软件 杞县地图标注app 海口智能语音电销机器人好用吗 衡水外呼线路解决 昆明电话外呼系统好么
我看了下,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
您可能感兴趣的文章:
  • linux 双网卡绑定网络设置方法
  • Linux网络编程之基于UDP实现可靠的文件传输示例
  • Linux下用netstat查看网络状态、端口状态
  • linux命令学习之10个网络命令和监控命令
  • 检查linux网络状态的两个脚本
  • Linux基本网络配置方法介绍
  • Linux 检测服务器是否连接着网络
  • Linux的常用网络命令
  • Linux下的网络监听技术之一
  • Linux模拟网络丢包与延迟的方法

标签:泰安 西宁 营口 宿迁 南京 昌都 临沧 海口

巨人网络通讯声明:本文标题《linux下监控网络流量的脚本》,本文关键词  linux,下,监控,网络,流量,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《linux下监控网络流量的脚本》相关的同类信息!
  • 本页收集关于linux下监控网络流量的脚本的相关信息资讯供网民参考!
  • 推荐文章