Centos7默认firewalld防火墙使用命令
Posted Linux就该这么学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7默认firewalld防火墙使用命令相关的知识,希望对你有一定的参考价值。
Centos7默认的firewalld防火墙说实话真不好用,不如使用iptables。但一物的存在是有它的道理,比如在高级功能方面iptables就要次于firewalld防火墙,所以建议大家还是要追随主流,现在开源产品相对过去的版本更新很快,所以要跟得上脚步,特别是对于运维人员来讲。下面是我平时在生产环境当中维护机器常用到的,大家可以参考下。
基本操作;
# systemctl start firewalld //启动
# systemctl status firewalld //状态
# systemctl disable firewalld //禁用
# systemctl stop firewalld //停止
systemctl在centos7中必不可缺少的管理工具,它具备service和chkconfig的所有功能;
# systemctl start firewalld.service //启动某个服务
# systemctl stop firewalld.service //关闭某个服务
# systemctl restart firewalld.service //重启某个服务
# systemctl status firewalld.service //显示某个服务的状态
# systemctl enable firewalld.service //开机时随机自启动
# systemctl disable firewalld.service //禁止开机启动
# systemctl is-enabled firewalld.service //查看是否开机启动
# systemctl list-unit-files|grep enabled //查看已经启动的服列表
# systemctl --failed //查看启动失败的服务列表
基本配置firewalld-cmd;
# firewall-cmd --version //查看防火墙版本
# firewall-cmd --help //查看命令操作帮助
# firewall-cmd --state //显示当前状态
# firewall-cmd --zone=public --list-ports //查看所有打开运行的端口
# firewall-cmd --reload //不重启立即加载
# firewall-cmd --list-all-zones | more //查看区域信息情况
# firewall-cmd --get-zone-of-interface=eth0 //查看指定接口所属区域
# firewall-cmd --panic-on //拒绝所有包
# firewall-cmd --panic-off //取消拒绝状态
# firewall-cmd --query-panic //查看是否拒绝
举个例子,如何打开一个端口,例如3306;
# firewall-cmd --zone=public --add-port=3306/tcp --permanent //添加3306端口(--permanent)永久生效,没有此参数重启后失效
# firewall-cmd --reload //不重启立即加载
# firewall-cmd --zone= public --query-port=3306/tcp //查看加入3306端口状态
# firewall-cmd --zone= public --remove-port=3306/tcp --permanent //删除刚刚加入的防火墙规则3306
# firewall-cmd --permanent --remove-icmp-block=echo-request //删除禁ping
# firewall-cmd --permanent --add-icmp-block=echo-request //开启禁ping
# firewall-cmd --get-service //查看已被允许的信息
具体的规则管理,可以使用 firewall-cmd,具体的使用方法可以
# firewall-cmd --help
firewall-cmd高级功能可以到官方资料库了解更多信息。
https://fedoraproject.org/wiki/FirewallD/zh-cn
https://access.redhat.com/documentation/zh-CN/Red_Hat_Enterprise_Linux/7/html/Security_Guide/sec-Using_Firewalls.html
https://www.ibm.com/developerworks/cn/linux/1507_caojh/
注意:以上操作方法以及命令并不适用于Centos7以下版本,除你在其他linux发行版单独安装firewall的。
《Linux就该这么学》是一本基于最新Linux系统编写,面向零基础读者的技术书籍。从Linux基础知识讲起,然后渐进式地提高内容难度,详细讲解Linux系统中各种服务的工作原理和配置方式,以匹配真实生产环境对运维人员的要求,突显内容的实用性。想要学习Linux系统的读者可以点击"阅读原文"按钮了解这本书,同时这本书也适合专业的运维人员阅读,作为一本非常有参考价值的工具书!
以上是关于Centos7默认firewalld防火墙使用命令的主要内容,如果未能解决你的问题,请参考以下文章