Create new VHD with a standard Network Adapter
Download CentOS-7-x86_64-Minimal-1503-01.iso (insert disk & install)
Download lis4-0-11.iso (insert disk)
mkdir -p /mnt/cdrom
mount /dev/cdrom /mnt/cdrom
cp -rp /mnt/cdrom /opt/linux_ic4011
umount /mnt/cdrom
cd /opt/linux_ic4011/RHEL71
./install.sh
Once the install is done, reboot the VPS
Update your network settings via vi
vi /etc/sysconfig/network-scripts/ifcfg-eth0
use "i" to insert text, (esc) to exit and ":wq" to write your changes.
It should look something like this:
DEVICE="eth0"
BOOTPROTO=none
ONBOOT="yes"
TYPE="Ethernet"
HWADDR=(MAC ADDRESS, This should match what is configured in Hyper-V)
IPADDR=(YOUR SERVER IP)
GATEWAY=(YOUR DEFAULT GATEWAY)
DNS1=(PRIMARY DNS SERVER IP)
DNS2=(SECONDARY DNS SERVER IP)
Networking=yes
If your system is still not online for static IP do this:
ifconfig eth0 (IP) netmask (MASK) up
service network restart