系统的INPUT和OUTPUT默认策略为DROP;
先把策略设置为DROP # iptables -t filter -P OUTPUT DROP # iptables -t filter -P INPUT DROP
1、限制本地主机的web服务器在周一不允许访问;新请求的速率不能超过100个每秒;web服务器包含了admin字符串的页面不允许访问;web服务器仅允许响应报文离开本机;
周一不允许访问: # iptables -t filter -I INPUT -d 192.168.0.130 -p tcp --dport 80 -m time ! --weekdays Mon -j ACCEPT # iptables -t filter -I OUTPUT -s 192.168.0.130 -p tcp --dport 80 -m time ! --weekdays Mon -j ACCEPT 请求速率最大为100个/秒: # iptables -t filter -R INPUT 1 -d 172.16.2.24 -p tcp --dport 80 -m connlimit ! --connlimit-above 100 -m time ! --weekdays Mon -j ACCEPT web服务器包含了admin字符串的页面不允许访问: # iptables -t filter -I OUTPUT 1 -s 172.16.2.24 -p tcp --sport 80 -m string --string "admin" --algo kmp -j REJECT web服务器仅允许响应报文离开本机:
2、在工作时间,即周一到周五的8:30-18:00,开放本机的ftp服务给172.16.0.0网络中的主机访问;数据下载请求的次数每分钟不得超过5个;
# iptables -I INPUT 3 -s 172.16.0.0/16 -d 172.16.0.21 -p tcp --dport 21 -m limit --limit 5/minute -m time --timestart 08:30 --timestop 18:00 --weekdays Mon,Tus,Wed,Thu,Fri -j ACCEPT # iptables -I OUTPUT 3 -d 172.16.0.0/16 -s 172.16.0.21 -p tcp --dport 21 -m limit --limit 5/minute -m time --timestart 08:30 --timestop 18:00 --weekdays Mon,Tus,Wed,Thu,Fri -j ACCEPT
3、开放本机的ssh服务给172.16.x.1-172.16.x.100中的主机,x为你的座位号,新请求建立的速率一分钟不得超过2个;仅允许响应报文通过其服务端口离开本机;
# iptables -I INPUT 4 -d 172.16.2.24 -p tcp --dport 22 -m iprange --src-range 172.16.2.1-172.16.2.100 -m limit --limit 2/minute -j ACCEPT
4、拒绝TCP标志位全部为1及全部为0的报文访问本机;
# iptables -I INPUT 1 -p tcp --tcp-flags ALL ALL -j DROP # iptables -I INPUT 2 -p tcp --tcp-flags ALL NONE -j DROP
5、允许本机ping别的主机;但不开放别的主机ping本机;
# iptables -A OUTPUT -s 172.16.0.21 -p icmp --icmp-type 8 -jACCEPT # iptables -A INPUT -d 172.16.0.21 -p icmp --icmp-type 0 -jACCEPT
6、判断下述规则的意义:
# iptables -N clean_in
新创建一条自定义链叫clean_in
# iptables -A clean_in -d 255.255.255.255 -p icmp -j DROP
# iptables -A clean_in -d 172.16.255.255 -p icmp -j DROP
丢弃所有同一物理网段或者子网以及172.16的icmp(或ping)协议包
# iptables -A clean_in -p tcp ! –syn -m state –state NEW -j DROP
丢弃tcp标记除syn以外所有连接状态为新建的数据包
# iptables -A clean_in -p tcp –tcp-flags ALL ALL -j DROP
# iptables -A clean_in -p tcp –tcp-flags ALL NONE -j DROP
防止tcp NULL扫描
# iptables -A clean_in -d 172.16.100.7 -j RETURN
停止执行当前链中目标地址为172.16.100.7的后续Rules,并返回到调用链中
7、通过tcp_wrapper控制vsftpd仅允许172.16.0.0/255.255.0.0网络中的主机访问,但172.16.100.3除外;对所被被拒绝的访问尝试都记录在/var/log/tcp_wrapper.log日志文件中;
# vim /etc/hosts.all 添加一行内容如下: vsftpd: 172.16. EXCEPT 172.16.100.3 # vim /etc/hosts.deny 添加一行内容如下: vsftpd: ALL : spawn /bin/echo `date` login attempt from %c to%s, %d >> /var/log/tcp_wrapper.log
原创文章,作者:Net19_口香糖,如若转载,请注明出处:http://www.178linux.com/33499
评论列表(1条)
写的很好,排版也很棒,加油