码迷,mamicode.com
首页 > 其他好文 > 详细

查询DDOS攻击IP列表 grep -i

时间:2016-06-12 12:25:24      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

[root@xsx ~]# netstat -an|grep -i syn_recv|awk ‘{print $5}‘|awk -F\: ‘{print $1}‘|sort|uniq -c
      1 149.56.41.159

 

grep -i (不区分大小写)

[root@bass Desktop]# grep -i "test" test.txt 
this is test
THIS IS TEST 1
this is TEST 2
this is test3
[root@bass Desktop]# grep  "test" test.txt 
this is test
this is test3

 

查询DDOS攻击IP列表 grep -i

标签:

原文地址:http://www.cnblogs.com/bass6/p/5577032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!