Fedora 32にファイアウォールと SELinuxを設定する方法
1.ファイアウォールサービスの現在の状態を確認
[root@localhost ~]# systemctl status firewalld ● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled) Active: active (running) since Sun 2021-10-17 18:11:55 JST; 2h 44min ago
2.サービス停止
[root@localhost ~]# systemctl stop firewalld
SELINUX=disabled
自動起動設定を無効にする
[root@localhost ~]# systemctl disable firewalld
3.SELinux (Security-Enhanced Linux) の現在の状態を確認
[root@localhost ~]# getenforce Enforcing [root@localhost ~]# vi /etc/selinux/config 7行目 修正前 SELINUX=enforcing 修正後 SELINUX=disabled
サーバを再起動して変更を有効にする
# shutdown -r now
4.SELinuxの状態を確認
[root@localhost ~]# getenforce
Disabled