Private IP:
diff --git a/ui/scripts/cloud.core.host.js b/ui/scripts/cloud.core.host.js
index 82eee69567d..2435c7d3db6 100644
--- a/ui/scripts/cloud.core.host.js
+++ b/ui/scripts/cloud.core.host.js
@@ -314,7 +314,8 @@ function hostSystemvmJSONToTemplate(jsonObj, template) {
template.attr("id", "host_systemvm_"+jsonObj.id).data("hostSystemvmId", jsonObj.id);
template.find("#grid_header_title").text(fromdb(jsonObj.name));
template.find("#id").text(jsonObj.id);
- template.find("#name").text(fromdb(jsonObj.name));
+ template.find("#name").text(fromdb(jsonObj.name));
+ template.find("#systemvmtype").text(toSystemVMTypeText(jsonObj.systemvmtype));
template.find("#publicip").text(fromdb(jsonObj.publicip));
template.find("#privateip").text(fromdb(jsonObj.privateip));
setDateField(jsonObj.created, template.find("#created"));