iftop 是类似于top的实时流量监控工具。主要用来显示本机网络流量情况及各相互通信的流量集合,如单独同那台机器间的流量大小,非常适合于代理服务器和iptables服务器使用
官方网站:http://www.ex-parrot.com/~pdw/iftop/
系统centos6.5
安装过程中碰到2个错误:
首先确认是安装了libpcap ,但是还是报错,后发现是libpcap-devel没有安装
checking where to find pcap.h... no idea
configure: error: can't find pcap.h
You're not going to get very far without libpcap.
重新编译还是报错:
configure: error: Curses! Foiled again!
(Can't find a curses library supporting mvchgat.)
Consider installing ncurses.
提示要安装ncurses
安装完ncurses后,编译正常。
转载于:https://blog.51cto.com/cmmwyy/1684833