Edit repo file to enable Centos repository:
vi /etc/yum.repos.d/CentOS-Base.repo
baseurl=http://mirror.centos.org/centos/7.2.1511/os/$basearch/
enabled=1
Install Intel raid web console
yum install csh net-snmp net-snmp-agent-libs net-snmp-libs net-snmp-utils
wget https://downloadmirror.intel.com/26267/eng/RWC2_MR6.11.zip
unzip RWC2_MR6.11.zip && cd RWC2_MR6.11/Linux_x64/disk
./install.csh
Add to /etc/sysconfig/iptables just before:
-A RH-Firewall-1-INPUT -j REJECT –reject-with icmp-host-prohibited
COMMIT
-A RH-Firewall-1-INPUT -p udp -m udp --dport 3071 -j ACCEPT
-A RH-Firewall-1-INPUT -p udp -m udp --dport 5571 -j ACCEPT
-A RH-Firewall-1-INPUT -p tcp -m tcp --dport 3071 -j ACCEPT
-A RH-Firewall-1-INPUT -p tcp -m tcp --dport 5571 -j ACCEPT
Restart iptables
systemctl stop iptables
systemctl start iptables