iptables命令 是linux上常用的防火墙软件,是netfilter项目的一部分。可以直接配置,也可以通过许多前端和图形界面配置。
一、iptables工作流程
iptables是采用数据包过滤机制工作的,所以它会对请求的数据包的包头进行分析,并根据我们预先设定的规则进行匹配来决定是否可以进入主机。
① 防火墙是一层一层过滤的。实际是按照配置规则的顺序从上到下,从前到后进行过滤的;
② 如果匹配上规则,即明确表明阻止还是通过,此时数据包就不再向下匹配新规则了;
③ 如果所有规则中没有明确表明是阻止还是通过这个数据包,也就是没有匹配上规则,则按照默认策略进行处理;
④ 防火墙的默认规则是对应的链的所有的规则执行完成后才会执行的;
二、iptables四表五链
2.1 表与链的对应关系
实际上iptables包含4张表5条链,如图:
规则链名包括(也被称为五个钩子函数(hook functions)):
- input链 :处理输入数据包。
- output链 :处理输出数据包。
- forward链 :处理转发数据包。
- prerouting链 :用于目标地址转换(dnat)。
- postouting链 :用于源地址转换(snat)。
但主要记住两张表即可:filter表和nat表!
filter表
nat表
三、iptables工作原理
如图:
3.1 防火墙的策略
防火墙策略一般分为两种,一种叫通
策略,一种叫堵
策略,通策略,默认门是关着的,必须要定义谁能进。堵策略则是,大门是洞开的,但是你必须有身份认证,否则不能进。所以我们要定义,让进来的进来,让出去的出去,所以通,是要全通,而堵,则是要选择
。当我们定义的策略的时候,要分别定义多条功能,其中:定义数据包中允许或者不允许的策略,filter过滤的功能,而定义地址转换的功能的则是nat选项。为了让这些功能交替工作,我们制定出了“表”这个定义,来定义、区分各种不同的工作功能和处理方式。
我们现在用的比较多个功能有3个:
- filter 定义允许或者不允许的,只能做在3个链上:input ,forward ,output
- nat 定义地址转换的,也只能做在3个链上:prerouting ,output ,postrouting
- mangle功能:修改报文原数据,是5个链都可以做:prerouting,input,forward,output,postrouting
我们修改报文原数据就是来修改ttl的。能够实现将数据包的元数据拆开,在里面做标记/修改内容的。而防火墙标记,其实就是靠mangle来实现的。
小扩展:
- 对于filter来讲一般只能做在3个链上:input ,forward ,output
- 对于nat来讲一般也只能做在3个链上:prerouting ,output ,postrouting
- 而mangle则是5个链都可以做:prerouting,input,forward,output,postrouting
iptables/netfilter(这款软件)是工作在用户空间的,它可以让规则进行生效的,本身不是一种服务,而且规则是立即生效的。而我们iptables现在被做成了一个服务,可以进行启动,停止的。启动,则将规则直接生效,停止,则将规则撤销。
iptables还支持自己定义链。但是自己定义的链,必须是跟某种特定的链关联起来的。在一个关卡设定,指定当有数据的时候专门去找某个特定的链来处理,当那个链处理完之后,再返回。接着在特定的链中继续检查。
注意:规则的次序非常关键,谁的规则越严格,应该放的越靠前
,而检查规则的时候,是按照从上往下的方式进行检查的。
表名包括:
- raw :高级功能,如:网址过滤。
- mangle :数据包修改(qos),用于实现服务质量。
- nat :地址转换,用于网关路由器。
- filter :包过滤,用于防火墙规则。
动作包括:
- accept :接收数据包。
- drop :丢弃数据包。
- redirect :重定向、映射、透明代理。
- snat :源地址转换。
- dnat :目标地址转换。
- masquerade :ip伪装(nat),用于adsl。
- log :日志记录。
四、iptables常用选项与参数
语法
iptables(选项)(参数)
选项
-t, --table table:对指定的表 table 进行操作, table 必须是 raw, nat,filter,mangle 中的一个。如果不指定此选项,默认的是 filter 表。
# 通用匹配:源地址目标地址的匹配
-p:指定要匹配的数据包协议类型;
-s, --source [!] address[/mask] :把指定的一个/一组地址作为源地址,按此规则进行过滤。当后面没有 mask 时,address 是一个地址,比如:192.168.1.1;当 mask 指定时,可以表示一组范围内的地址,比如:192.168.1.0/255.255.255.0。
-d, --destination [!] address[/mask] :地址格式同上,但这里是指定地址为目的地址,按此进行过滤。
-i, --in-interface [!] <网络接口name> :指定数据包的来自来自网络接口,比如最常见的 eth0 。注意:它只对 input,forward,prerouting 这三个链起作用。如果没有指定此选项, 说明可以来自任何一个网络接口。同前面类似,"!" 表示取反。
-o, --out-interface [!] <网络接口name> :指定数据包出去的网络接口。只对 output,forward,postrouting 三个链起作用。
# 查看管理命令
-l, --list [chain] 列出链 chain 上面的所有规则,如果没有指定链,列出表上所有链的所有规则。
# 规则管理命令
-a, --append chain rule-specification 在指定链 chain 的末尾插入指定的规则,也就是说,这条规则会被放到最后,最后才会被执行。规则是由后面的匹配来指定。
-i, --insert chain [rulenum] rule-specification 在链 chain 中的指定位置插入一条或多条规则。如果指定的规则号是1,则在链的头部插入。这也是默认的情况,如果没有指定规则号。
-d, --delete chain rule-specification -d, --delete chain rulenum 在指定的链 chain 中删除一个或多个指定规则。
-r num:replays替换/修改第几条规则
# 链管理命令(这都是立即生效的)
-p, --policy chain target :为指定的链 chain 设置策略 target。注意,只有内置的链才允许有策略,用户自定义的是不允许的。
-f, --flush [chain] 清空指定链 chain 上面的所有规则。如果没有指定链,清空该表上所有链的所有规则。
-n, --new-chain chain 用指定的名字创建一个新的链。
-x, --delete-chain [chain] :删除指定的链,这个链必须没有被其它任何规则引用,而且这条上必须没有任何规则。如果没有指定链名,则会删除该表中所有非内置的链。
-e, --rename-chain old-chain new-chain :用指定的新名字去重命名指定的链。这并不会对链内部造成任何影响。
-z, --zero [chain] :把指定链,或者表中的所有链上的所有计数器清零。
-j, --jump target <指定目标> :即满足某条件时该执行什么样的动作。target 可以是内置的目标,比如 accept,也可以是用户自定义的链。
-h:显示帮助信息;
基本参数
参数 | 作用 |
---|---|
-p | 设置默认策略:iptables -p input (drop |
-f | 清空规则链 |
-l | 查看规则链 |
-a | 在规则链的末尾加入新规则 |
-i | num 在规则链的头部加入新规则 |
-d | num 删除某一条规则 |
-s | 匹配来源地址ip/mask,加叹号"!"表示除这个ip外。 |
-d | 匹配目标地址 |
-i | 网卡名称 匹配从这块网卡流入的数据 |
-o | 网卡名称 匹配从这块网卡流出的数据 |
-p | 匹配协议,如tcp,udp,icmp |
--dport num | 匹配目标端口号 |
--sport num | 匹配来源端口号 |
命令选项输入顺序
iptables -t 表名 <-a/i/d/r> 规则链名 [规则号] <-i/o 网卡名> -p 协议名 <-s 源ip/源子网> --sport 源端口 <-d 目标ip/目标子网> --dport 目标端口 -j 动作
┌───────────────┐ ┃ network ┃
│ table: filter │ ┗━━━━━━━┳━━━━━━━┛
│ chain: input │◀────┐ │
└───────┬───────┘ │ ▼
│ │ ┌───────────────────┐
┌ ▼ ┐ │ │ table: nat │
│local process│ │ │ chain: prerouting │
└ ┘ │ └─────────┬─────────┘
│ │ │
▼ │ ▼ ┌─────────────────┐
┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ │ ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ │table: nat │
routing decision └───── outing decision ─────▶│chain: prerouting│
┅┅┅┅┅┅┅┅┅┳┅┅┅┅┅┅┅┅┅ ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ └────────┬────────┘
│ │
▼ │
┌───────────────┐ │
│ table: nat │ ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ │
│ chain: output │ ┌─────▶ outing decision ◀──────────────┘
└───────┬───────┘ │ ┅┅┅┅┅┅┅┅┳┅┅┅┅┅┅┅┅
│ │ │
▼ │ ▼
┌───────────────┐ │ ┌────────────────────┐
│ table: filter │ │ │ chain: postrouting │
│ chain: output ├────┘ └──────────┬─────────┘
└───────────────┘ │
▼
┏╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍┓
┃ network ┃
┗━━━━━━━━━━━━━━━┛
五、iptables环境准备
5.1 安装iptables管理命令
$ yum -y install iptables-services
5.2 加载防火墙的内核模块
$ modprobe ip_tables
$ modprobe iptable_filter
$ modprobe iptable_nat
$ modprobe ip_conntrack
$ modprobe ip_conntrack_ftp
$ modprobe ip_nat_ftp
$ modprobe ipt_state
$ lsmod |egrep 'filter|nat|ipt'
# 查看已经加载的模块
5.3 启动iptables
$ systemctl stop firewalld && systemctl disable firewalld
$ systemctl start iptables && systemctl enable iptables
六、 iptables基本操作指令
6.1 查看iptables规则
$ iptables -l # 查看iptables规则
$ iptables -l -vn # 查看iptables规则(详细信息)
6.2 清空iptables规则
$ iptables -f # 清除所有规则,不会处理默认的规则
$ iptables -x # 删除用户自定义的链
$ iptables -z # 链的计数器清零(数据包计数器与数据包字节计数器)
6.3 添加iptables规则
$ iptables -t # 指定表(default: `filter')
$ iptables -a # 把规则添加到指定的链上,默认添加到最后一行
$ iptables -i # 插入规则,默认插入到第一行(封ip)
$ iptables -d # 删除链上的规则
6.4 删除某条规则
$ iptables -nl --line-numbers # 查看规则号码
$ iptables -d input 1 # 删除指定链上的指定序号
七、iptables实战
7.1 配置允许ssh端口连接
$ iptables -a input -s 192.168.1.0/24 -p tcp --dport 22 -j accept
# 22为你的ssh端口, -s 192.168.1.0/24表示允许这个网段的机器来连接,其它网段的ip地址是登陆不了你的机器的。 -j accept表示接受这样的请求
7.2 允许本地回环地址可以正常使用
$ iptables -a input -i lo -j accept
$ iptables -a output -o lo -j accept
# 本地圆环地址就是那个127.0.0.1,是本机上使用的,它进与出都设置为允许
7.3 设置默认规则
$ iptables -p input drop # 配置默认的不让进
$ iptables -p forward drop # 默认的不允许转发
$ iptables -p output accept # 默认的可以出去
7.4 配置白名单
$ iptables -a input -p all -s 192.168.1.0/24 -j accept # 允许机房内网机器可以访问
$ iptables -a input -p all -s 192.168.140.0/24 -j accept # 允许机房内网机器可以访问
$ iptables -a input -p tcp -s 183.121.3.7 --dport 3380 -j accept # 允许183.121.3.7访问本机的3380端口
7.5 开启相应的服务端口
$ iptables -a input -p tcp --dport 80 -j accept # 开启80端口,因为web对外都是这个端口
$ iptables -a input -p icmp --icmp-type 8 -j accept # 允许被ping
$ iptables -a input -m state --state established,related -j accept # 已经建立的连接得让它进来
7.6 保存iptables规则
第一种方式:
$ iptables-save > 1.txt
# 将防火墙规则保存到文件中
$ iptables-save
# 将防火墙规则保存到配置文件中,防止重启后失效
$ iptables-restore < 1.txt
# 从配置文件里载入防火墙配置
第二种方式:
$ cp /etc/sysconfig/iptables /etc/sysconfig/iptables.bak # 任何改动之前先备份,请保持这一优秀的习惯
$ iptables-save > /etc/sysconfig/iptables
$ cat /etc/sysconfig/iptables
7.7 禁止某个ip访问
$ iptables -i input -p tcp -s 192.168.1.253 -i ens33 -j drop
$ iptables -a input -p tcp ! -s 192.168.1.1 -i ens33 -j drop
$ iptables -a input -p tcp ! -s 192.168.1.0/24 -i ens33 -j drop
选项解释:
-s # 指定源地址或网段(192.168.1.0/24)。 ! 取反;
-d # 指定目的地址(nat表prerouting);
-i # 进入的网络接口(ens33,ens37);
-o # 出去的网络接口(ens33,ens37);
7.8 禁止初跳板机以外的ip访问
$ iptables -i input -p tcp ! -s 192.168.1.1 -j drop
7.9 匹配端口范围
$ iptables -i input -p tcp -m multiport --dport 21,22,23,24 -j drop
$ iptables -i input -p tcp --dport 3306:8809 -j accept
$ iptables -i input -p tcp --dport 18:80 -j drop
$ iptables -a input -s 127.0.0.1 -d 127.0.0.1 -j accept
# 允许本地回环接口(即运行本机访问本机)
$ iptables -a input -m state --state established,related -j accept
# 允许已建立的或相关连的通行
$ iptables -a output -j accept
# 允许所有本机向外的访问
$ iptables -a input -p tcp --dport 22 -j accept
# 允许访问22端口
$ iptables -a input -p tcp --dport 80 -j accept
# 允许访问80端口
$ iptables -a input -p tcp --dport 21 -j accept
# 允许ftp服务的21端口
$ iptables -a input -p tcp --dport 20 -j accept
# 允许ftp服务的20端口
$ iptables -a input -j reject
# 禁止其他未允许的规则访问
$ iptables -a forward -j reject
# 禁止其他未允许的规则访问
7.10 匹配icmp类型
$ iptables -a input -p icmp --icmp-type 8
# 例:iptables -a input -p icmp --icmp-type 8 -j drop
$ iptables -a input -p icmp -m icmp --icmp-type any -j accept
$ iptables -a forward -s 192.168.1.0/24 -p icmp -m icmp --icmp-type any -j accept
7.10.1 举例
$ iptables -i input -s 192.168.1.200 -j drop
# 封掉190.168.1.200
$ iptables -i input -p icmp --icmp-type 8 -s 192.168.1.10 -j accept
$ iptables -i input 2 -p icmp ! -s 192.168.1.1 --icmp-type 8 -j drop
# 只允许192.168.1.1 192.168.1.10可以ping
$ iptables -i input -p tcp --dport 3306 -j drop
# 将3306端口封掉
$ iptables -a input -p tcp -m tcp -s 192.168.0.8 -j drop
# 屏蔽恶意主机(比如,192.168.0.8
$ iptables -i input -s 123.45.6.7 -j drop
# 屏蔽单个ip的命令
$ iptables -i input -s 123.0.0.0/8 -j drop
# 封整个段即从123.0.0.1到123.255.255.254的命令
$ iptables -i input -s 124.45.0.0/16 -j drop
# 封ip段即从123.45.0.1到123.45.255.254的命令
$ iptables -i input -s 123.45.6.0/24 -j drop
# 封ip段即从123.45.6.1到123.45.6.254
7.11 端口映射
$ iptables -t nat -a prerouting -d 10.0.1.61 -p tcp --dport 9000 -j dnat --to-destination 172.16.1.7:22
命令拆解:
表:nat
链:prerouting
源ip:10.0.1.61
源端口:9000
协议:tcp
动作:dnat
目标ip:172.16.1.7
目标端口:22
$ iptables -t nat -a prerouting -d 210.14.67.127 -p tcp --dport 2222 -j dnat --to-dest 192.168.188.115:22
# 本机的 2222 端口映射到内网 虚拟机的22 端口
7.12 ip映射
$ iptables -t nat -a prerouting -d 10.0.1.62 -j dnat --to-destination 172.16.1.7
# 将10.0.1.62的访问请求转发到172.16.1.7
7.13 启动网络转发规则
$ iptables -a forward -o eth0
# 只对 output,forward,postrouting 三个链起作用
7.14 字符串匹配
比如,我们要过滤所有tcp连接中的字符串test
,一旦出现它我们就终止这个连接,我们可以这么做:
iptables -a input -p tcp -m string --algo kmp --string "test" -j reject --reject-with tcp-reset
iptables -l
# chain input (policy accept)
# target prot opt source destination
# reject tcp -- anywhere anywhere string match "test" algo name kmp to 65535 reject-with tcp-reset
#
# chain forward (policy accept)
# target prot opt source destination
#
# chain output (policy accept)
# target prot opt source destination
7.15 阻止windows蠕虫
$ iptables -i input -j drop -p tcp -s 0.0.0.0/0 -m string --algo kmp --string "cmd.exe"
7.16 防止syn洪水
$ iptables -a input -p tcp --syn -m limit --limit 5/second -j accept
7.17 列出已设置的规则
iptables -l [-t 表名] [链名]
- 四个表名
raw
,nat
,filter
,mangle
- 五个规则链名
input
、output
、forward
、prerouting
、postrouting
- filter表包含
input
、output
、forward
三个规则链
$ iptables -l -t nat # 列出 nat 上面的所有规则
# ^ -t 参数指定,必须是 raw, nat,filter,mangle 中的一个
$ iptables -l -t nat --line-numbers # 规则带编号
$ iptables -l input
$ iptables -l -nv # 查看,这个列表看起来更详细
八、 使用场景实例
- 场景一
开放 tcp 10-22/80 端口 开放 icmp 其他未被允许的端口禁止访问
存在的问题: 本机无法访问本机; 本机无法访问其他主机
- 场景二
ftp: 默认被动模式(服务器产生随机端口告诉客户端, 客户端主动连接这个端口拉取数据) vsftpd: 使 ftp 支持主动模式(客户端产生随机端口通知服务器, 服务器主动连接这个端口发送数据)
- 场景三
允许外网访问: web http -> 80/tcp; https -> 443/tcp mail smtp -> 25/tcp; smtps -> 465/tcp pop3 -> 110/tcp; pop3s -> 995/tcp imap -> 143/tcp
内部使用: file nfs -> 123/udp samba -> 137/138/139/445/tcp ftp -> 20/21/tcp remote ssh -> 22/tcp sql mysql -> 3306/tcp oracle -> 1521/tcp
- 场景四
nat 转发
- 场景五
防cc
$ iptables -l -f -a -d # list flush append delete
# 场景一
$ iptables -i input -p tcp --dport 80 -j accept # 允许 tcp 80 端口
$ iptables -i input -p tcp --dport 10:22 -j accept # 允许 tcp 10-22 端口
$ iptables -i input -p icmp -j accept # 允许 icmp
$ iptables -a input -j reject # 添加一条规则, 不允许所有
# 优化场景一
$ iptables -i input -i lo -j accept # 允许本机访问
$ iptables -i input -m state --state established,related -j accept # 允许访问外网
$ iptables -i input -p tcp --dport 80 -s 10.10.188.233 -j accept # 只允许固定ip访问80
# 场景二
$ vi /etc/vsftpd/vsftpd.conf # 使用 vsftpd 开启 ftp 主动模式
port_enable=yes
connect_from_port_20=yes
$ iptables -i input -p tcp --dport 21 -j accept
$ vi /etc/vsftpd/vsftpd.conf # 建议使用 ftp 被动模式
pasv_min_port=50000
pasv_max_port=60000
$ iptables -i input -p tcp --dport 21 -j accept
$ iptables -i input -p tcp --dport 50000:60000 -j accept
# 还可以使用 iptables 模块追踪来自动开发对应的端口
# 场景三
$ iptables -i input -i lo -j accept # 允许本机访问
$ iptables -i input -m state --state established,related -j accept # 允许访问外网
$ iptables -i input -s 10.10.155.0/24 -j accept # 允许内网访问
$ iptables -i input -p tcp -m multiport --dports 80,1723 -j accept # 允许端口, 80 -> http, 1723 -> vpn
$ iptables -a input -j reject # 添加一条规则, 不允许所有
$ iptables-save # 保存设置到配置文件
# 场景四
$ iptables -t nat -l # 查看 nat 配置
$ iptables -t nat -a post_routing -s 10.10.177.0/24 -j snat --to 10.10.188.232 # snat
$ vi /etc/sysconfig/network # 配置网关
$ iptables -t nat -a post_routing -d 10.10.188.232 -p tcp --dport 80 -j dnat --to 10.10.177.232:80 # dnat
#场景五
$ iptables -i input -p tcp --syn --dport 80 -m connlimit --connlimit-above 100 -j reject # 限制并发连接访问数
$ iptables -i input -m limit --limit 3/hour --limit-burst 10 -j accept # limit模块; --limit-burst 默认为5
九、iptables注意事项
1)修改之前导出备份一份;
2)修改时小心,别把自己关外面;
3)可以先在定时任务中添加一条定时清空的规则,等测试没有问题再取消定时任务;