Assign IP to Proxmox

Bennyy

New Member
Apr 25, 2016
1
0
1
25
Good day,
I rented me a Dedicated Server at OVH and unfortunately get the 6 failover IPs "installed" in Proxmox.
My goal is to use the 6 IPv4's 6 VM's, but get the / etc / network / interfaces file is not set correctly :(
Could anyone help me?

The freshly exposed config looks like

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# for Routing
auto vmbr1
iface vmbr1 inet manual
post-up /etc/pve/kvm-networking.sh
bridge_ports dummy0
bridge_stp off
bridge_fd 0


# vmbr0: Bridging. Make sure to use only MAC adresses that were assigned to you.
auto vmbr0
iface vmbr0 inet static
address 37.59.14.xxx
netmask 255.255.255.0
network 37.59.14.0
broadcast 37.59.14.255
gateway 37.59.14.xxx
bridge_ports eth0
bridge_stp off
bridge_fd 0

iface vmbr0 inet6 static
address 2001:41d0:8:6171::
netmask 64
post-up /sbin/ip -f inet6 route add 2001:41d0:8:61ff:ff:ff:ff:ff dev vm$
post-up /sbin/ip -f inet6 route add default via 2001:41d0:8:61ff:ff:ff:$
pre-down /sbin/ip -f inet6 route del default via 2001:41d0:8:61ff:ff:ff$
pre-down /sbin/ip -f inet6 route del 2001:41d0:8:61ff:ff:ff:ff:ff dev v$