Fedora 15
Sponsored Link

ファイアウォール2011/05/25

[1] ネットワーク内の上位にファイアウォールがおり、ホスト側では必要なければ停止しておきます。
[root@dlp ~]#
/etc/rc.d/init.d/iptables stop

Stopping iptables (via systemctl):
[ OK ]

[root@dlp ~]#
chkconfig iptables off

[root@dlp ~]#
chkconfig ip6tables off

SELinux 無効化
[2] SELinux (Security-Enhanced Linux)はここでは無効にしておきます。
[root@dlp ~]#
vi /etc/sysconfig/selinux
# 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 - SELinux is fully disabled.

SELINUX=
disabled
# 修正

# SELINUXTYPE= type of policy in use. Possible values are:
#
targeted - Only targeted network daemons are protected.

#
strict - Full SELinux protection.

SELINUXTYPE=targeted
関連コンテンツ