10.linux防火墙
2022/8/11 5:22:59
本文主要是介绍10.linux防火墙,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、防火墙分类 1.软件防火墙和硬件防火墙 2.包过滤防火墙和应用层防火墙 Centos 6默认的防火墙是iptables Centos 7默认的防火墙是firewallD(底层使用netfilter) 3.firewallD会把自己的规则转换为iptables,最终底层使用netfilter。 4.iptables规则表filter nat mangle raw 规则链 INPUT OUTPUT FORWARD PREOUTING POSTROUTING 二、iptables规则的基本使用 1.iptables的filter表 iptables -t filter 命令 规则链 规则 常用参数: -L 列出添加防火墙规则 -A 添加防火墙规则 -D 删除防火墙规则 -F 清空防火墙规则 -P 设置链默认规则 -N 创建新的用户自定义规则 2.规则查看: iptables -nvL 添加规则 iptables -t filter -A INPUT -s 10.0.0.1 -j ACCEPT 如果是filter表 filter可以省略 iptables -A INPUT -s 10.0.0.1 -j DROP accept在前drop在后所以10.0.0.1是可以进来的。 inptables -I INPUT -s 10.0.0.2 -j DROP -I增加到规则的第一条 3.清空自己添加的规则 iptables -F 4.iptables的net表 iptables -t nat 命令 规则链 规则 pre目的地转换 把内网预设到外网进行访问 ipdatbles -t nat -A PREOUTING -i eth0 -d 114.115.116 -p tcp --dport 80 -j DNAT --to-destination 10.0.0.1 post源地址转换 统一代理上网节点等 iptables -t nat -A POSTROUTING -s 10.0.0.0/24 -o eth1 -j SANT --to-source 111.112.113.114 5.iptables配置文件 /etc/sysconfig/iptables centos6 service iptables save|start|stop|restart centos7 yum install iptables-services 三、firewalld 1.firewallD特点 支持区域“zone”概念 firewall-cmd systemctl start|stop|enable|disable firewalld.service 2.查看 systemctl status firewalld.service 启动 systemctl start firewalld.service 需停service iptables stop 3.常用命令 查看所有打开的端口 firewall-cmd --zone=public --list-ports 添加/删除规则 firewall-cmd --zone=public --add/remove-port=22/tcp --permanent 查看防火墙 firewall-cmd --list-all 注意:打开防火墙后一定要先添加ssh端口到规则中并重新载入 filrewall-cmd --zone=public --add-port=22/tcp --permanent firewall-cmd --reload这篇关于10.linux防火墙的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法