{% extends "servers/servers_base.html" %} {% block pagehead %}

VM : {{ vm.name }} ({{vm.state }})

{% endblock pagehead %} {% block head %} {% endblock %} {% block content %}

General Parameters

Name:{{ vm.name }}
State:{{ vm.state }}
UUID:{{ vm.uuid }}
Project {{vm.projectName }} ({{vm.projectId}})
Project {{vm.sliceName }} ({{vm.sliceId}})
Memory : {{vm.memory}}
OS Type : {{vm.operatingSystemType }}
OS Version : {{vm.operatingSystemVersion }}
OS Dist : {{vm.operatingSystemDistribution }}

Virtualization parameters

Virtualization Setup Type : {{vm.virtualizationSetupType }}
HD Setup Type : {{vm.hdSetupType }}
HD Origin Path : {{vm.hdOriginPath }}

Interfaces

{% for iface in vm.networkInterfaces.all %} {% if iface.isMgmt == 1 %} {% endif%} {% if iface.ip4s.all %} {% for ip4 in iface.ip4s.all %} {% endfor %} {% endif %} {% endfor %}
Interface name : {{iface.name }}Management
IP : {{ ip4.ip}}
MAC : {{iface.mac.mac }}
Dashboard | Back
{% endblock content %}