Pour certains logiciels, l'activation par défaut de iptables et de selinux est problématique. Ceci concerne Oracle notamment, mais aussi pas mal de fonctionnalité de cluster

Désactiver iptables

C'est le plus simple, stopper le service et désactiver son démarrage automatique

/etc/init.d/iptables stop
chkconfig iptables off

Désactiver selinux

La configuration se trouve dans le fichier /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 - SELinux is fully disabled.
SELINUX=enforcing
# SELINUXTYPE= type of policy in use. Possible values are:
#       targeted - Only targeted network daemons are protected.
#       strict - Full SELinux protection.
SELINUXTYPE=targeted

Pour désactiver selinux remplacer "SELINUX=enforcing" to "SELINUX=disabled"

# 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

Pour le prendre en compte immédiatement taper la commande suivante :

setenforce 0