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

iptables禁止来源IP访问限制

时间:2015-12-10 11:27:58      阅读:378      评论:0      收藏:0      [点我收藏+]

标签:iptables   ip   禁止   

#屏蔽公网

iptables -I INPUT -p tcp --dport 2222 -j DROP 

#只允许某ip访问指定端口

iptables -I INPUT -p tcp --dport 2222 -s 123.123.123.123 -j ACCEPT 

#添加白名单 允许某IP 访问此服务器
iptables -I INPUT -s 12.12.12.12 -j ACCEPT


本文出自 “智能化未来_XFICC” 博客,请务必保留此出处http://xficc.blog.51cto.com/1189288/1721370

iptables禁止来源IP访问限制

标签:iptables   ip   禁止   

原文地址:http://xficc.blog.51cto.com/1189288/1721370

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