How do I add IP's to proxmox so I can allocate them to VM's

JofleyUK

New Member
Nov 4, 2009
8
0
1
Hi there,

I have been allocated 5 x IP's from my server provider for my proxmox server xxx.xxx.xxx.90 - xxx.xxx.xxx.94.

xxx.xxx.xxx.90 is the main server IP address. I would like to know how to configure the Network side to add the other IP's in so that proxmox gives an IP address to each VM.

Setup Proxmox v1.4, installing PBX In a flash ISO thru KVM.

Your help will be greatly appreciated.
 
I don't believe Proxmox will handle this. Use 'netconfig' to configure your IP's in PBX in a Flash.
 
WOOHOO. I found the solution:

On the host, type the following:
ip route add YOUR_IP_FAILOVER dev vmbr0

On the guest, if it's Linux:
ifconfig eth0 YOUR_IP_FAILOVER/32 up # configure interface
ip route add default dev eth0 # add default route
echo "nameserver RESOLVER_IP" > /etc/resolv.conf

Replace YOUR_IP_FAILOVER with your next IP that has not been allocated to a VPS.

Replace RESOLVER_IP with the one or ones issued by your hosting company.

I hope this clears that up for everyone. :)