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

centos7 防火墙屏蔽IP

时间:2019-02-14 13:44:58      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:weixin   防火   eve   tables   tps   nbsp   log   blog   NPU   

1.屏蔽指定IP:124.115.0.199

iptables -I INPUT -s 124.115.0.199 -j DROP     

 

2.屏蔽IP段:

iptables -I INPUT -s 61.37.80.0/24 -j DROP    //61.37.80开头
iptables -I INPUT -s 124.115.0.0/16 -j DROP        //124.115开头
iptables -I INPUT -s 124.0.0.0/8 -j DROP      //124开头
 

3.解封

iptables -D INPUT -s 124.115.0.199  -j REJECT

iptables -F     //全清掉了

 

 

 

 

 

https://blog.csdn.net/weixin_40461281/article/details/83008976

centos7 防火墙屏蔽IP

标签:weixin   防火   eve   tables   tps   nbsp   log   blog   NPU   

原文地址:https://www.cnblogs.com/wayneliu007/p/10374022.html

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