Centos 7のファイアウォールに関するコマンド

1473 ワード

Systemctlコマンドは、実際にserviceとchkconfigの2つのコマンドを組み合わせたシステムサービスマネージャコマンドです.
Systemctlコマンド:
サービスを自動的に開始するには、次の手順に従います.
systemctl enable firewalld.service

サービスが自動的に開始されないようにするには、次の手順に従います.
systemctl disable httpd.service

サービスのステータスを確認します.
systemctl status httpd.service
systemctl is-active httpd.service

起動したすべてのサービスを表示します.
systemctl list-units --type=service

サービスの開始、停止、再起動:
systemctl start\stop\restart httpd.service

サービスが起動するかどうか:
systemctl is-enabled firewalld.service

開始されたサービス:
systemctl list-unit-files|grep enabled

ファイアウォールコマンド:
ファイアウォールのステータス:
systemctl status firewalld.service

ファイアウォールを閉じる:
systemctl stop firewalld.service

起動禁止:
systemctl disable firewalld.service

ファイアウォールオープンポート
追加:
firewall-cmd --zone=public --add-port=80/tcp --permanent

再読み込み:
firewall-cmd --reload

表示:
firewall-cmd --zone= public --query-port=80/tcp

すべてを表示:
firewall-cmd --list-ports

 
削除:
firewall-cmd --zone= public --remove-port=80/tcp --permanent

再起動:
firewall-cmd --reload