页面“每天一命令之grep”与“每天一命令之iftop”之间的差异

来自linux中国网wiki
(页面间的差异)
跳到导航 跳到搜索
(导入1个版本)
 
docker>Evan
 
第1行: 第1行:
 +
一、iftop是什么?
 +
iftop是类似于top的实时流量监控工具。
  
=常用参数=
+
官方网站:http://www.ex-parrot.com/~pdw/iftop/
<pre>
 
#多个and
 
ps -ef | grep  -E 'tomcat1 |tomcat2 |grep -v grep '
 
</pre>
 
  
[http://blog.51cto.com/haowen/2068456 find & grep 总结]
+
二、iftop有什么用?
 +
iftop可以用来监控网卡的实时流量(可以指定网段)、反向解析IP、显示端口信息等。
  
== 精准 非贪婪匹配==
+
=see also=
<pre> -w, --word-regexp        强制 PATTERN 仅完全匹配字词
+
[https://www.vpser.net/manage/iftop.html Linux流量监控工具 - iftop (最全面的iftop教程)]
              Select  only  those  lines containing matches that form whole words. The test is that the matching substring must either be at the beginning of the line, or preceded by a
+
 
              non-word constituent character. Similarly, it must be either at the end of the line or followed by a non-word  constituent  character.   Word-constituent  characters  are
+
 
              letters, digits, and the underscore. This option has no effect if -x is also specified.
+
[https://www.cnblogs.com/ggjucheng/archive/2013/01/13/2858923.html Linux网络流量实时监控ifstat iftop命令详解]
</pre>
+
 
[[category:shell]]
+
[https://huataihuang.gitbooks.io/cloud-atlas/network/packet_analysis/utilities/iftop.html iftop简介]
 +
 
 +
[https://blog.csdn.net/mfk870109/article/details/78986109 iftop 用法个人实例 查看指定端口流量]
 +
 
 +
[[category:ops]]

2018年11月16日 (五) 03:23的版本

一、iftop是什么? iftop是类似于top的实时流量监控工具。

官方网站:http://www.ex-parrot.com/~pdw/iftop/

二、iftop有什么用? iftop可以用来监控网卡的实时流量(可以指定网段)、反向解析IP、显示端口信息等。

see also

Linux流量监控工具 - iftop (最全面的iftop教程)


Linux网络流量实时监控ifstat iftop命令详解

iftop简介

iftop 用法个人实例 查看指定端口流量