发布时间:2018-05-02作者:laosun阅读(12732)
iftop是一个实时流量监控工具,不具有统计功能,跟top类似,看起来比较直观。centos yum 快速安装iftop
iftop是什么?
Iftop 主要用来显示本机网络流量情况及各相互通信的流量集合,如单独同那台机器间的流量大小,非常适合于代理服务器和iptables服务器使用。官方网站:http://www.ex-parrot.com/~pdw/iftop/
iftop有什么用?
iftop可以用来监控网卡的实时流量(可以指定网段)、反向解析IP、显示端口信息等,详细的将会在后面的使用参数中说明。
yum源查找安装
首先先查看yum源是否能找到iftop
[root@localhost ~]# yum search iftop ========================================================== N/S matched: iftop ========================================================== iftop.x86_64 : Command line tool that displays bandwidth usage on an interface Name and summary matches only, use "search all" for everything. [root@localhost ~]# yum -y install iftop #进行安装 [root@localhost ~]# iftop #安装完成后,使用命令iftop
编译安装
安装依赖包
[root@localhost ~]# yum install gcc flex byacc libpcap libpcap-devel ncurses ncurses-devel
编译、安装源码
[root@localhost ~]# cd /mnt/ [root@localhost mnt]# wget http://www.ex-parrot.com/pdw/iftop/download/iftop-0.17.tar.gz
如果没有wget指令,可以使用yum install wget进行安装。或者直接本地下载tar.gz包,然后上传到服务器
编译安装,如果需要指定安装目录 ./configure --prefix=/usr/local/iftop/ :
tar zxvf iftop-0.17.tar.gz cd iftop-0.17 ./configure make make install
相关参数及说明
如果安装iftop时没有自定义路径,那么直接运行iftop就可以查看流量统计了,例如:iftop或者iftop -i eth0 -n
版权属于: 技术客
原文地址: https://www.sunjs.com/article/detail/f206bcafb867410d96131889a0a30b04.html
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
关键字: linux