1. during installation prompt, insert net.ifnames=0 biosdevname=0 to disable consistent network device naming

2. after first reboot of installation, add net.ifnames=0 biosdevname=0:

3. enable normal ethx interface name and disable ipv6

vi /etc/default/grub

add net.ifnames=0 biosdevname=0 ipv6.disable=1 to GRUB_CMDLINE_LINUX line
grub2-mkconfig -o /boot/grub2/grub.cfg

4. enable UTC and NTP

timedatectl set-local-rtc false

 install and configure ntp/chrony service to enable ntp service

5. disable selinux

vi /etc/selinux/config

SELINUX=disabled

6. disable firewall

systemctl stop firewalld

systemctl disable firewalld

7. yum -y install net-tools

systemctl stop NetworkManager

systemctl disable NetworkManager

systemctl restart network

chkconfig network on

ifconfig

8. reboot

repository:

cat << EOF > /etc/yum.repos.d/iso.repo
[iso]
name=iso
baseurl=http://mirrors.aliyun.com/centos/7.2.1511/os/x86_64
enable=1
gpgcheck=0
EOF
cat << EOF > /etc/yum.repos.d/updates.repo
[updates]
name=updates
baseurl=http://mirrors.aliyun.com/centos/7.2.1511/updates/x86_64
enable=1
gpgcheck=0
EOF
cat << EOF > /etc/yum.repos.d/epel.repo
[epel]
name=epel
baseurl=http://mirrors.aliyun.com/epel/7/x86_64
enable=1
gpgcheck=0
EOF