Manual Einrichtung Proxmox/en

Aus EUserv Wiki

Wechseln zu: Navigation, Suche

Manual Setting up Proxmox

Inhaltsverzeichnis

Manual Setting up Proxmox

Webinterface

Enter the IP address of your server followed by :8006 to reach the web interface. Here you can login with your 'username' and 'password'.

Datei:proxmox_webinterface_en.png


Creating a VM

With Proxmox you have the possibility to create virtual machines. Click "Create VM" in the upper right corner. Here you can do a pre-configuration of your virtual machine.

Datei:proxmox_vm_1_en.png


Assign a name to your VM. Additionally you can specify a ressource pool here. Click Next when you are done.

Datei:proxmox_vm_2_en.png


Select an operating system for your virtual machine.

Datei:proxmox_vm_3_en.png


Here you can select an uploaded image. Uploading an image is explained under the section Uploading an image.

Datei:proxmox_vm_4_en.png


Set a drive for your virtual machine.

Datei:proxmox_vm_5_en.png


Here you can specify which CPU is supposed to be used for your VM.

Datei:proxmox_vm_6_en.png


Next, you can set your VM's memory.

Datei:proxmox_vm_7_en.png


Finally, you can specify the network settings for your virtual machine.

Datei:proxmox_vm_8_en.png


In the confirmation window click Finish to create your virtual machine.

Datei:proxmox_vm_9_en.png


Starting the virtual machine

Click Start in the upper right corner to start the VM. Additionally you have the possibility to shutdown, stop or restart your VM. This can be done with a click on Shutdown, Stop or Reset. If you want to delete your VM click Delete.

Datei:proxmox_vm_10_en.png


Proxmox also provides the option to connect to your VM via a VNC console. Click Console in the upper right corner.

Datei:proxmox_vm_11_en.png


Click Start in the next window to connect to your VM via console.

Datei:proxmox_vm_13_en.png


Uploading an image

To use an ISO image for the virtual machine, you have to upload it. Please proceed as follows:

Select storage from the server view.

Datei:proxmox_image_upload_1_en.png


In the tab Content, click the Upload button.

Datei:proxmox_image_upload_2_en.png


Select a locally stored ISO image and click Upload.

Datei:proxmox_image_upload_3_en.png


After having successfully uploaded the image, it is displayed in the main window.

Datei:proxmox_image_upload_4_en.png


Creating an OpenVZ container

With Proxmox you have the possibility to create an OpenVZ container. To do this click on storage in the 'Server View'.

Datei:proxmox_openvz1_en.png


Click the Content tab.

Datei:proxmox_openvz2_en.png


Select the tab Templates to download a template.

Datei:proxmox_openvz3_en.png


Select a template (in this case centos-6-standard) and click Download.

Datei:proxmox_openvz4_en.png


After the download has finished, the following output appears:

Datei:proxmox_openvz5_en.png


Click the Create CT button to create an OpenVZ container.

Datei:proxmox_openvz6_en.png


In the following window individual settings for the OpenVZ container can be set up. Enter a name for the CT and assign a password.

Datei:proxmox_openvz7_en.png


Select the downloaded template that you want to use for the new CT.

Datei:proxmox_openvz8_en.png


Set the ressources of your container. These include memory, disk size, swap and number of the CPUs.

Datei:proxmox_openvz9_en.png


On the tab Network choose between Routed mode or Bridged mode. Confirm your choice with Next.

Datei:proxmox_openvz10_en.png


Here your DNS settings can be configured.

Datei:proxmox_openvz11_en.png


Finally you will be presented with a confirmation window that gives you a summary of all the settings you have made.

Datei:proxmox_openvz12_en.png


Finished! You have created an OpenVZ container, displayed in the 'Server View'.

Datei:proxmox_openvz13_en.png


To start the OpenVZ container click on Start. If you want to shutdown your CT click on Shutdown. To stop your container click on Stop.

Configuration OpenVZ routed

If you want to use Proxmox OpenVZ VMs with routed networking, some additional configuration is needed.

Activate IP-forwarding :

echo 'net.ipv4.ip_forward=1' >> /etc/sysctl.conf
echo 'net.ipv6.conf.all.proxy_ndp=1' >> /etc/sysctl.conf 

Configure OpenVZ for the use of multiple subnets on the same network interface:

/etc/vz/vz.conf

# Controls which interfaces to send ARP requests and modify APR tables on.
NEIGHBOUR_DEVS=all

Configuration of IPv6

Preparations

To use IPv6 for your virtual machines or OpenVZ containers you must set up the free contained IPv6 /64 net via the support. Send an accordingly request to EUserv Support.

The IPv6 net will be routed via the main IPv6 address of your server. If you don't have created the main IPv6 address, please follow these steps:

Creating the IPv6 addresses

Configuration of the host system

You need the main IPv6 address and the associated IPv6 gateway for configuration of the host system. In the customer service center both data can be found by clicking on IPv6 addresses.

Assign the main IPv6 address of your server to the active network interface ('vmbr0' in the default installation) and create the default gateway:

ip -6 addr add <IPv6 main address> dev vmbr0
route -A inet6 add default gw <IPv6 gateway>

Next, test the IPv6 connectivity:

ping6 ipv6.google.com

If you get a positive result, make the changes in /etc/network/interfaces persistent (add the following lines):

iface vmbr0 inet6 static
       address   <IPv6 main address> 
       netmask   64
       gateway   <IPv6 gateway>

Next, IPv6 forwarding must be activated and the changes applied to the kernel:

echo 'net.ipv6.conf.all.proxy_ndp=1' >> /etc/sysctl.conf 
echo 'net.ipv6.conf.all.forwarding=1' >> /etc/sysctl.conf
sysctl -p

Make sure that in /etc/bz/vz.conf the following is included (i.e. not commented):

IPV6="yes"

Configuration of the guest system (OpenVZ)

Now you can assign the IPv6 addresses from the /64 subnet to your virtual machines. The webinterface of Proxmox can only handle IPv4 addresses, so the configuration must be made via the terminal in the host system. The first three addresses are (supposing the /64 net is 2001:db8:beef:1001::/64):

 2001:db8:beef:1001::1
 2001:db8:beef:1001::2
 2001:db8:beef:1001::3
           .
           .
           .

Repeat the following step vor all VMs that you want to assign an IP:

vzctl set <container_id> --ipadd <IPv6-Adresse> --save

Subsequently start the VM. The connectivity should now be established:

vzctl start <container_id>
(this step can also be done via the webinterface)

Configuration of the guest system (KVM/routed)

Hint: The bridged network configuration is needed for the assignment of IPv6 addresses from the /64 subnet.

First assign an IPv6 address from the /64 subnet to the network interface in the VM (replace the example address with the actual address you are planning to assign):

ip -6 addr add 2001:db8:beef:1001::1/64 dev eth0

Set the default gateway (the IPv6 main address of your server):

route -A inet6 add default gw <IPv6 main address>/64

Finally, you have to create the corresponding route on the host to the virtual machines:


ip -6 route add 2001:db8:beef:1001::1 dev vmbr0
ip -6 route add 2001:db8:beef:1001::2 dev vmbr0
ip -6 route add 2001:db8:beef:1001::3 dev vmbr0
           .
           .
           .

Test the connectivity with a ping6 or SSH access to your VM.