iptables详细参数讲解

Posted kkblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iptables详细参数讲解相关的知识,希望对你有一定的参考价值。

table 表 --> chain 链 --->rule 规则
Commands:
Either long or short options are allowed.
--append -A chain 添加规则到链上
[!]--proto -p proto 指定过滤的协议tcp udp icmp all
[!]--source -s address[/mask][...]指定源地址
[!] --destination -d address[/mask][...]指定目标地址
[!] --in-interface -i input name[+] 进入的网络接口(eth1 eth0)
[!] --out-interface -o output name[+]出去的网络接口
--dport 指定目的端口
--jump -j target 对规则的具体处理方法(ACCEPT DROP REJECT)
(SNAT DNAT
--policy -P chain target 指定链的默认规则
--sport 指定源端口

--delete -D chain 删除链上的规则
--delete -D chain rulenum 根据规则号删除链
--insert -I chain [rulenum] 插入规则到第一行
--list -L [chain [rulenum]] 列表链里的所有规则
--numeric -n 以数字的形式显示规则 iptables -nL
--line-number 打印规则序号iptables -nL --line-num
--flush -F [chain] 清除一个链或所有链上的规则
--zero -Z [chain [rulenum]] 链的计数器
--new -N chain 用户自定义链
--delete-chain -X [chain] 删除用户自定义的链

以上是关于iptables详细参数讲解的主要内容,如果未能解决你的问题,请参考以下文章

iptables系列教程| iptables语法规则

iptables详解

iptables实用教程:管理链和策略

iptables 详细使用

防火墙 之 iptables 匹配条件讲解

2-10~2-11 配置iptables防火墙增强服务 selinux简单讲解