我们可以用iftop来查看实时的网络流量,监控TCP/IP连接等信息。它的官方网站:http://www.ex-parrot.com/~pdw/iftop/
一些常用的参数命令:
查看ppp0网络接口的实时流量:
# iftop -i ppp0
以字节(bytes)为单位显示流量(预设是位bits):
# iftop -B
直接显示IP, 不进行DNS反解:
# iftop -n
直接显示连接端口编号, 不显示服务名称:
# iftop -N
显示192.168.1.0网段进出封包流量
# iftop -F 192.168.1.0/24 (或192.168.1.0/255.255.255.0)
其它参数可下 iftop -h 看说明。
像top一样,进入iftop画面时,
iftop界面相关说明
界面上面显示的是类似刻度尺的刻度范围,为显示流量图形的长条作标尺用的。
中间的“<=” “=>”这两个左右箭头,表示的是流量的方向。
TX:发送流量
RX:接收流量
TOTAL:总流量
Cumm:运行iftop到目前时间的总流量
peak:流量峰值
rates:分别表示过去 2s 10s 40s 的平均流量
一些常见问题
1、make: yacc: Command not found
make: *** [grammar.c] Error 127
解决方法:apt-get install byacc / yum install byacc
2、configure: error: Curses! Foiled again!
(Can’t find a curses library supporting mvchgat.)
Consider installing ncurses.
解决方法:apt-get install libncurses5-dev / yum install ncurses-devel
参考资料:
linux下用iftop 查看你的网卡流量
http://xok.la/2008/08/linux_interface_iftop.html
使用iftop查看实时的网络流量
http://www.linuxfly.org/post/247/
Linux流量监控工具 – iftop
http://www.iwanna.cn/archives/2010/07/30/4802/