在 CentOS 7 中,防火墙服务由 firewalld
管理。以下是启动和停止防火墙的命令:
启动防火墙:
systemctl start firewalld
停止防火墙:
systemctl stop firewalld
检查防火墙状态:
systemctl status firewalld
在 CentOS 6 中,防火墙服务由 iptables
管理。以下是停止防火墙的命令:
停止防火墙:
service iptables stop
启动防火墙:
service iptables start
检查防火墙状态:
service iptables status
注意:在执行这些命令时,需要具有管理员权限,建议使用 sudo
命令来提升权限。