I just added a whole bunch of RIPE IP's..
For Virtual Mac failover IP's, You'll have to add your static IP manually inside each container, OpenVZ or KVM.
Try this:
1) edit your OpenVZ - choose OS, passwd, disksize etc..
2) Down below, choose Bridged networking and Veth
3) Choose vmbr0 interface (which should be bridged with to your host server eth0 in a STANDARD proxmox install)
4) Add your virtual mac address from the OVH manager
5) add nameservers and DNS Domain
6) Create (make sure to uncheck startup at boot)
7)Start your container
8) Open a console and edit your static failover IP attached to the virtual mac you entered above by using the CLi method here:
CENTOS network Config
I've never used CentOS, but in Deb/Ubuntu (openVZ and KVM) and Windows I've added all my IP's straight in the container after creation.
EDIT: I've just created a CentOS container:
Code:
cd /etc/sysconfig/network-scripts/
Create the eth0 interface
Insert the following Info:
Code:
DEVICE=eth0
BOOTPROTO=static
DHCPCLASS=
HWADDR=VI:RT:UA:L:MA:C
IPADDR=YOUR.FAIL.OVER.IP
NETMASK=255.255.255.0
ONBOOT=yes
Create the gateway and DNS domain entries:
Code:
/etc/sysconfig/network
Insert:
Code:
NETWORKING=yes
HOSTNAME=YOUR.HOSTNAME.COM
GATEWAY=YOUR.FAIL.OVER.IP
Restart the networking interface:
Code:
/etc/init.d/network restart
And finally setup your nameservers:
Code:
nano /etc/resolv.conf
Insert:
Code:
nameserver 8.8.8.8
nameserver 8.8.4.4
nameserver 213.186.33.99
That should be it..I was able to ping 8.8.8.8 from there..
BTW: I've never had to route my Ripe IPs with any commands on my EG series..They've worked out of the box..Except for my recent Kimsufi server that had the bad luck of being provisioned through RBX3 - then nothing I did helped..Virtual macs wouldn't work on RBX3 servers at that time..I had to dump the server after two months of wasted $$ waiting for tech support..Better check if that's the case and inquire Max if that may be the problem with yours too!