银河麒麟服务器操作系统V10开始,默认使用了firewall防火墙,由firewalld提供了支持网络/防火墙区域
(zone)定义网络链接以及接口安全等级的动态防火墙管理工具
防火墙工具:system-config-firewall firewall-config firewall-cmd
防火墙服务: iptables service firewalld(daemon & sevice)
iptables命令:iptables command
内核net filter: kernel netfilter
Netfilter 是linux核心层内部的一个数据包处理模块,linux平台下的包过滤防火墙
1、网络地址转换(Network Address Translate)
2、数据包内容修改
3、以及数据包过程的防火墙功能
raw表:关闭nat表上启用的连接追踪机制;iptable_raw
mangle表:拆解报文,做出修改,并重新封装功能;iptable_mangle
nat表:network address translation,网络地址转换功能;内核模块:iptable_nat
filter表:负责过滤功能,防火墙;内核模块:iptables_filter
注