系统相关
首页 > 系统相关> > Linux下查看网络流量常用方法

Linux下查看网络流量常用方法

作者:互联网

(1)使用ifconfig查看网络流量

RX是接收流量,TX是发送流量。

(2)使用watch more /proc/net/dev查看网卡流量,默认是以字节显示

watch使用命令:

(3)iftop

下载地址:http://www.tcpdump.org/release/libpcap-0.8.3.tar.gz

http://www.ex-parrot.com/~pdw/iftop/download/iftop-0.16.tar.gz

首先安装libpcap

 tar  -zxvf  libpcap-0.8.3.tar.gz

      cd libpcap-0.8.3

      ./configure

      make

      make install

      之后安装iftop,方法同上:

       tar -zxvf   iftop-0.16.tar.gz

       cd iftop-0.16

       ./configure

       make

使用./iftop

方法1:./iftop     ##查看默认的网卡信息

方法2:./iftop  -i  eth1     ##查看多网卡的系统时,可以指点网卡名

方法3:./iftop  -i eth0  -F  192.168.0.0/24   ##查看192.168.0.0/24网段的ip在网卡eth0上面的流量信息

相关参数及说明

1、iftop界面相关说明

  界面上面显示的是类似刻度尺的刻度范围,为显示流量图形的长条作标尺用的。中间的<= =>这两个左右箭头,表示的是流量的方向。

2、iftop相关参数

  常用的参数

  进入iftop画面后的一些操作命令(注意大小写)

参考原文链接:

https://blog.csdn.net/zcatlinux/article/details/58964

https://blog.csdn.net/weiyuefei/article/details/78752490?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-0&spm=1001.2101.3001.4242

标签:显示,查看,iftop,流量,网络流量,网卡,信息,切换,Linux
来源: https://blog.csdn.net/aovenus/article/details/117093577