震惊!!iptables还能这样用!

基本语法:iptables [-t 表] [操作命令] [链][规则匹配器][-j 目标动作]

震惊!!iptables还能这样用!

系统的INPUT和OUTPUT默认策略为DROP;

# iptables -P INPUT DROP
    # iptables -P OUTPUT DROP

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

本地主机的web服务器在周一不允许访问

#iptables -A INPUT -p tcp --dport 80 -m time ! --weekdays Mon -j ACCEPT

新请求速率不能超过100个每秒

# iptables -A INPUT -p tcp --dport 80 -m limit --limit 100/s

web包含admin字符串的页面不允许访问

# iptables -A INPUT -p tcp --dport 80 -m string --algo bm --string 'admin' -j REJECT

web服务器仅允许响应报文离开主机

# iptables -A OUTPUT -p tcp --sport 80 -m state --state ESTABLISHED -j ACCEPT

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

#iptables -A INPUT -p tcp --dport 21 -s 172.16.0.0 -m time ! --weekdays 6,7  -m time --timestart 8:30 --timestop 18:00 -m limit --limit 5/m

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

# iptables -A INPUT -p tcp --dport 22 -m iprange --src-range 172.16.0.1-172.16.0.100 -m limit --limit 2/m

# iptables -A OUTPUT -p tcp --sport 22 -m iprange --dst-range 172.16.0.1-172.16.0.100 -m state --state ESTABLISHED -j ACCEPT

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

# iptables -A INPUT -p tcp --tcp-flags ALL ALL -j DROP

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

# iptables -A INPUT  -p icmp --icmp-type 0 -j ACCEPT

# iptables -A OUTPUT  -p icmp --icmp-type 8 -j ACCEPT

6、判断下述规则的意义:

# iptables -N clean_in

创建一条自定义链clean_in

# iptables -A clean_in -d 255.255.255.255 -p icmp -j DROP

丢弃同网络的的icmp协议包

# iptables -A clean_in -d 172.16.255.255 -p icmp -j DROP

丢弃来源172.16网络的icmp协议包

# iptables -A clean_in -p tcp ! –syn -m state –state NEW -j DROP

丢弃syn状态不为1且为NEW 的连接

# iptables -A clean_in -p tcp –tcp-flags ALL ALL -j DROP

丢弃所有tcp标志位为1的数据包

# iptables -A clean_in -p tcp –tcp-flags ALL NONE -j DROP

在clean_in链中添加一条规则,丢弃tcp报文中tcp标志位都为0的

# iptables -A clean_in -d 172.16.100.7 -j RETURN

在clean_in链中添加一条规则,遇到目的端为172.16.100.7的主机,返回调用位置

# iptables -A INPUT -d 172.16.100.7 -j clean_in

在cleanin链中添加一条规则,遇到目的端为172.16.100.7的主机,调用cleanin

# iptables -A INPUT -i lo -j ACCEPT

允许回环接口进

# iptables -A OUTPUT -o lo -j ACCEPT

允许回环接口出

# iptables -A INPUT -i eth0 -m multiport -p tcp –dports 53,113,135,137,139,445 -j DROP

丢弃通过eth0网卡访问53,113,135,137,139,445端口的tcp报文

# iptables -A INPUT -i eth0 -m multiport -p udp –dports 53,113,135,137,139,445 -j DROP

丢弃通过eth0网卡访问53,113,135,137,139,445端口的udp报文

# iptables -A INPUT -i eth0 -p udp –dport 1026 -j DROP

丢弃通过eth0网卡访问1026端口的udp报文

# iptables -A INPUT -i eth0 -m multiport -p tcp –dports 1433,4899 -j DROP

丢弃通过eth0网卡访问1433,4899端口的tcp报文

# iptables -A INPUT -p icmp -m limit –limit 10/second -j ACCEPT

接收icmp报文限速每秒10次

7、通过tcpwrapper控制vsftpd仅允许172.16.0.0/255.255.0.0网络中的主机访问,但172.16.100.3除外;对所被被拒绝的访问尝试都记录在/var/log/tcpwrapper.log日志文件中;

vim /etc/host.allow
     vsftpd:172.16. EXCEPT 172.16.100.3

vim /etc/host.deny
     vsftdp:ALL :spawn /bin/echo $(date) login attemp from %c to %s,%d >> /bar/log/tcp_wrapper.log

原创文章,作者:N24_Jerry,如若转载,请注明出处:http://www.178linux.com/73672

(0)
N24_JerryN24_Jerry
上一篇 2017-04-18
下一篇 2017-04-18

相关推荐

  • 千万不要把 bool 设计成函数参数

    我们有很多Coding Style 或 代码规范。但这一条可能会经常被我们所遗忘,就是我们经常会在函数的参数里使用bool参数,这会大大地降低代码的可读性。不信?我们先来看看下面的代码。 当你读到下面的代码,你会觉得这个代码是什么意思? widget->repaint(false); 是不要repaint吗?还是别的什么意思?看了文档后,我们才知道这个…

    Linux干货 2016-07-10
  • Linux 基础命令

    时间命令:     date:         date [option].. [+format]:显示      [root@localhost ~]# dateThu Feb 25 14…

    Linux干货 2016-02-28
  • 图文演示Netmeeting的三大功能

    原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://jeffyyko.blog.51cto.com/28563/153578     可能很多朋友对Netmeeting有一定认识,但我想真正用过的朋友应该不多,因为类似的软件太多太多了,所以Netmeet…

    Linux干货 2015-03-25
  • 文件查找命令之find

    文件查找命令之find   特点:实时查找,精确查找,由于find是全磁盘文件查找所有查找速度要比locate略慢一些。   find查找功能强大,下面主要介绍find查找条件的一个重要特性–德·摩根定律     德·摩根定律      非(A &&B)=(非A…

    Linux干货 2016-08-16
  • 关于 shell脚本编程第一篇

                                                   shell脚本编程(1) …

    系统运维 2016-08-15

评论列表(2条)

  • 18740476814
    18740476814 2017-05-02 10:12

    你适合去UC,这标题也是够可以的

  • 马哥教育
    马哥教育 2017-05-04 14:48

    不错,标题到内容。