https://www.cnblogs.com/moxiaoan/p/5683743.html https://www.cnblogs.com/moxiaoan/p/5683743.html https://www.cnblogs.com/yizhipanghu/p/11171211.html
CentOS7使用firewalld打开关闭防火墙与端口
1、firewalld的基本使用 状态: systemctl status firewalld 启动: systemctl start firewalld 关闭: systemctl stop firewalld 开机禁用: systemctl disable firewalld 开机启用: systemctl enable firewalld
2.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 查看服务是否开机启动:
|