pre {
display: block;
width: 95%;
background: #222;
border-left: 6px solid #1664d9;
color: #0c0;
padding: 10px;
overflow:auto;
}
星期四, 十二月 22, 2011
星期二, 十二月 13, 2011
Linux查询网络连接并搜索统计。
lsof -i4 |grep -c -E '10.1.11.12|10.1.11.24'
grep -E 选项可以同时搜索多个字符串,用符号 |隔开。
lsof -i4 只显示TCP IPV4的记录,也就是网络连接数目了。
grep -E 选项可以同时搜索多个字符串,用符号 |隔开。
lsof -i4 只显示TCP IPV4的记录,也就是网络连接数目了。
订阅:
博文 (Atom)