IPTABLEs

1、限制本地主机的web服务器在周一不允许访问;新请求的速率不能超过100个每秒;web服务器包含了admin字符串的页面不允许访问;web服务器仅允许响应报文离开本机;

    2、在工作时间,即周一到周五的8:30-18:00,开放本机的ftp服务给172.16.0.0网络中的主机访问;数据下载请求的次数每分钟不得超过5个;

    3、开放本机的ssh服务给172.16.x.1-172.16.x.100中的主机,x为你的座位号,新请求建立的速率一分钟不得超过2个;仅允许响应报文通过其服务端口离开本机;

    4、拒绝TCP标志位全部为1及全部为0的报文访问本机;

    5、允许本机ping别的主机;但不开放别的主机ping本机;

 

1、限制本地主机的web服务器在周一不允许访问;新请求的速率不能超过100个每秒;web服务器包含了admin字符串的页面不允许访问;web服务器仅允许响应报文离开本机;

    # iptables -t filter -A INPUT -d 192.168.2.5 -p tcp --dport 80 -m state --state NEW -m limit --limit 100/second -m time ! --weekdays Mon  -j ACCEPT

    # iptables -t filter -A INPUT -d 192.168.2.5 -p tcp --dport 80 -m state --state ESTABLISHED -j ACCEPT

    # iptables -t filter -A OUTPUT-s 192.168.2.5 -p tcp --sport 80 -m state --state ESTABLISHED -m string --algo kmp ! --string "admin" -j ACCEPT

    

    2、在工作时间,即周一到周五的8:30-18:00,开放本机的ftp服务给192.168.2.0网络中的主机访问;数据下载请求的次数每分钟不得超过5个

    # iptables -t filter -R INPUT 2 -d 192.168.2.5 -s 192.168.2.0/24 -p tcp --dport 21 -m state --state NEW,ESTABLISHED -m time --weekdays Mon,Tus,Wed,Thu,Fri --timestart 08:00:00 --timestop 18:00:00 -j ACCEPT

    # iptables -t filter -R INPUT 3 -d 192.168.2.5  -s 192.168.2.0/24 -p tcp -m state --state RELATED  -m limit --limit 5/min  -j ACCEPT

    # iptables -t filter -A INPUT -d 192.168.2.5  -s 192.168.2.0/24 -p tcp -m state --state ESTABLISHED  -j ACCEPT

    # iptables -t filter -A OUTPUT -d 192.168.2.0/24 -s 192.168.2.5 -p tcp -m state --state ESTABLISHED -j ACCEPT 

    

    3、开放本机的ssh服务给192.168.2.10-192.168.2.20中的主机,新请求建立的速率一分钟不得超过2个;仅允许响应报文通过其服务端口离开本机;

    # iptables -t filter -A INPUT -d 192.168.2.5 -p tcp --dport 22 -m state --state NEW -m iprange --src-range 192.168.2.10-192.168.2.20 -m limit --limit 2/min -j ACCEPT 

    # iptables -t filter -A INPUT -d 192.168.2.5 -p tcp --dport 22 -m state --state ESTABLISHED -m iprange --src-range 192.168.2.10-192.168.2.20  -j ACCEPT

    # iptables -t filter -A OUTPUT -s 192.168.2.5 -p tcp --sport 22 -m iprange --dst-range 192.168.2.10-192.168.2.20 -m state --state ESTABLISHED -j ACCEPT

    

    4、拒绝TCP标志位全部为1及全部为0的报文访问本机;

    # iptables -t filter -A INPUT -d 192.168.2.5 -p --tcp-flags ALL ALL -j DROP


    5、允许本机ping别的主机;但不开放别的主机ping本机;

    # iptables -A INPUT -p icmp --icmp-type 8 -d 192.168.2.5 -j DROP

    # iptables -A OUTPUT -p icmp --icmp-type 0 -s 192.168.2.5 -j ACCEPT


你可能感兴趣的:(字符串,filter,web服务器,admin,Second)