다음 칼럼에서는 centos 기본 튜토리얼 칼럼에서 소개한 CentOS7 방화벽 설정이 필요한 친구들에게 도움이 되길 바랍니다!
방화벽을 설정할 때 먼저 리눅스 시스템 버전을 확인하세요.
lsb_release -a
centOS7 시스템에는 이 명령이 없습니다.
cat /etc/redhat-release(/etc/centos-release) 输出:CentOS Linux release 7.4.1708 (Core)
이 명령은 CentOS6과 CentOS7 모두에서 사용할 수 있습니다. Linux 시스템의 etc 폴더는 주로 일부 구성 파일을 저장하는 데 사용됩니다.
启动: systemctl start firewalld 查看状态: systemctl status firewalld 禁止开机启动: systemctl disable firewalld 关闭服务: systemctl stop firewalld 关闭
systemctl은 CentOS7의 서비스 관리 도구 중 주요 도구로, 이전 서비스와 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
참고: 다음 CentOS7 버전은 iptables를 사용하여 방화벽을 제공합니다.
위 내용은 CentOS7 방화벽 설정에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!