Fedora 23
Sponsored Link

ファイアウォール2015/11/03

[1] ネットワーク内の上位にファイアウォールがおり、ホスト側ではファイアウォールは必要ない場合は、以下のようにして停止しておきます。
[root@localhost ~]#
systemctl stop firewalld

[root@localhost ~]#
systemctl disable firewalld rolekit
SELinux 無効化
[2] SELinux (Security-Enhanced Linux)を無効にする場合は以下のように設定します。
[root@localhost ~]#
vi /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=
disabled
   
# 変更

# SELINUXTYPE= can take one of these three values:
#     targeted - Targeted processes are protected,
#     minimum - Modification of targeted policy. Only selected processes are protected.
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted
関連コンテンツ