iptable 查看规则
它们分别是raw表、mangle表、nat表、filter表
iptables -t filter -L
iptables -t raw -L
iptables -t mangle -L
iptables -t nat -L
filter负责过滤功能
- 比如允许哪些IP地址访问,拒绝哪些IP地址访问,允许访问哪些端口,禁止访问哪些端口,filter表会根据我们定义的规则进行过滤
- INPUT链、FORWARD链、OUTPUT链
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/18887533