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

iptables 应用

时间:2017-11-21 17:39:07      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:iptables 应用

1、iptables 针对一个网段(将如下范围内的ip段都禁用)

iptables -I INPUT -m iprange --src-range 61.4.176.0-61.4.191.255 -j DROP


2、我们要把访问202.103.96.112的访问转发到192.168.0.112上

iptables -t nat -A PREROUTING -d 202.103.96.112 -j DNAT --to-destination 192.168.0.112


3、将9889禁用

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


4、允许部分ip通过

iptables -I INPUT -s 192.168.1.0/24 -p tcp --dport 9889 -j ACCEPT


5、开放80端口

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT

/etc/init.d/iptables save

service iptables restart



本文出自 “探索发现新事物” 博客,请务必保留此出处http://jacksoner.blog.51cto.com/5802843/1983815

iptables 应用

标签:iptables 应用

原文地址:http://jacksoner.blog.51cto.com/5802843/1983815

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