技術ブログ

プログラミング、IT関連の記事中心

CentOS7のファイアーウォール操作まとめ【コマンド集】

■コマンド集

ファイアーウォール の起動

systemctl start firewalld

ファイアーウォール の自動起動

systemctl enable firewalld

ファイアーウォール の再起動

systemctl restart firewalld

ファイアーウォール の停止

systemctl stop firewalld

ファイアーウォール の穴あけ

# ポート番号指定(「1234」の例)
firewall-cmd --add-port=1234/tcp --permanent

# HTTP
firewall-cmd --add-service=http --zone=public --permanent

# HTTPS
firewall-cmd --add-service=https --zone=public --permanent

ファイアーウォール 穴あけ後の再読み込み

firewall-cmd --reload

ファイアーウォール の開通確認

firewall-cmd --list-all