防火墙对centos6和7版本操作不同所以第一步要看操作系统的版本
1、查看操作系统的版本
cat /etc/redhat-release
2、 6版本的相关操作
iptables防火墙启动、重启、停止 service iptables start service iptables restart service iptables stop iptables防火墙开机启动、不启动 chkconfig iptables on chkconfig iptables off 查看iptables防火墙生效配置 iptables -L
3、 7版本的相关操作
启动服务: systemctl start 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
标签:iptables,服务,service,防火墙,firewalld,systemctl,基本操作 From: https://www.cnblogs.com/yclh/p/17540973.html