次のコラム centos 基本チュートリアル では、CentOS7 のファイアウォール設定を紹介します。
ファイアウォールを設定する場合は、まず Linux のシステム バージョンを確認します。
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 中国語 Web サイトの他の関連記事を参照してください。