Your RHEL 6 sandbox is behind a firewall and you don't want or need SELINUX or iptables firewalls

Disable SELINUX as root

cd /etc/selinux
vi config
selinux=disabled
reboot your OS

Disable your firewalls ip and ip6 as root

service iptables stop
service ip6tables stop
chkconfig –list iptables
# if they are on at all
chkconfig iptables off
chkconfig ip6tables off
# now chkconfig –list iptables will show them off at all run levels
 

Scroll to Top