diff --git a/app/models/manageiq/providers/vmware/infra_manager/inventory/parser.rb b/app/models/manageiq/providers/vmware/infra_manager/inventory/parser.rb
index 0d33b4056..44b079b9d 100644
--- a/app/models/manageiq/providers/vmware/infra_manager/inventory/parser.rb
+++ b/app/models/manageiq/providers/vmware/infra_manager/inventory/parser.rb
@@ -114,7 +114,6 @@ def parse_folder(object, kind, props)
:ems_ref => object._ref,
:ems_ref_obj => managed_object_to_vim_string(object),
:uid_ems => object._ref,
- :type => "EmsFolder",
:name => CGI.unescape(props[:name]),
:parent => lazy_find_managed_object(props[:parent]),
:hidden => hidden,
@@ -135,6 +134,7 @@ def parse_host_system(object, kind, props)
:parent => cluster,
}
+ parse_host_system_summary(host_hash, props)
parse_host_system_config(host_hash, props)
parse_host_system_product(host_hash, props)
parse_host_system_network(host_hash, props)
diff --git a/app/models/manageiq/providers/vmware/infra_manager/inventory/parser/host_system.rb b/app/models/manageiq/providers/vmware/infra_manager/inventory/parser/host_system.rb
index f512525f9..cd7dbaa93 100644
--- a/app/models/manageiq/providers/vmware/infra_manager/inventory/parser/host_system.rb
+++ b/app/models/manageiq/providers/vmware/infra_manager/inventory/parser/host_system.rb
@@ -1,10 +1,16 @@
class ManageIQ::Providers::Vmware::InfraManager::Inventory::Parser
module HostSystem
+ def parse_host_system_summary(host_hash, props)
+ summary = props[:summary]
+ return if summary.nil?
+
+ host_hash[:uid_ems] = summary.fetch_path(:config, :name)
+ end
+
def parse_host_system_config(host_hash, props)
config = props[:config]
return if config.nil?
- host_hash[:uid_ems] = config[:name]
host_hash[:admin_disabled] = config[:adminDisabled].to_s.downcase == "true"
host_hash[:hyperthreading] = config.fetch_path(:hyperThread, :active).to_s.downcase == "true"
end
diff --git a/app/models/manageiq/providers/vmware/infra_manager/inventory/parser/resource_pool.rb b/app/models/manageiq/providers/vmware/infra_manager/inventory/parser/resource_pool.rb
index 9900627f3..a344083bf 100644
--- a/app/models/manageiq/providers/vmware/infra_manager/inventory/parser/resource_pool.rb
+++ b/app/models/manageiq/providers/vmware/infra_manager/inventory/parser/resource_pool.rb
@@ -19,7 +19,7 @@ def parse_resource_pool_cpu_allocation(cluster_hash, props)
cluster_hash[:cpu_reserve_expand] = cpu_allocation[:expandableReservation].to_s.downcase == "true"
cluster_hash[:cpu_limit] = cpu_allocation[:limit]
cluster_hash[:cpu_shares] = cpu_allocation.fetch_path(:shares, :shares)
- cluster_hash[:cpu_shares_level] = cpu_allocation.fetch_path(:limit, :limit)
+ cluster_hash[:cpu_shares_level] = cpu_allocation.fetch_path(:shares, :level)
end
end
end
diff --git a/spec/models/manageiq/providers/vmware/infra_manager/inventory/collector_spec.rb b/spec/models/manageiq/providers/vmware/infra_manager/inventory/collector_spec.rb
index 75fe5f7fd..38148ff6a 100644
--- a/spec/models/manageiq/providers/vmware/infra_manager/inventory/collector_spec.rb
+++ b/spec/models/manageiq/providers/vmware/infra_manager/inventory/collector_spec.rb
@@ -1,7 +1,7 @@
require 'rbvmomi/vim'
describe ManageIQ::Providers::Vmware::InfraManager::Inventory::Collector do
- let(:ems) do
+ let!(:ems) do
_, _, zone = EvmSpecHelper.create_guid_miq_server_zone
hostname = Rails.application.secrets.vmware.try(:[], "hostname") || "HOSTNAME"
FactoryBot.create(:ems_vmware_with_authentication, :hostname => hostname, :zone => zone).tap do |ems|
@@ -37,6 +37,58 @@
assert_specific_vm
end
end
+
+ it "Same as classic refresh" do
+ with_vcr("classic") { EmsRefresh.init_console; EmsRefresh.refresh(ems) }
+ inventory_after_classic_refresh = serialize_inventory
+
+ with_vcr("graph") { collector.run }
+ inventory_after_graph_refresh = serialize_inventory
+
+ assert_inventory_not_changed(inventory_after_classic_refresh, inventory_after_graph_refresh)
+ end
+
+ def with_vcr(suffix, &block)
+ path = described_class.name
+ path << "::#{suffix}"
+
+ VCR.use_cassette(path.underscore, :match_requests_on => [:body]) { block.call }
+ end
+
+ def serialize_inventory
+ tables = [:vms, :hosts, :storages, :host_storages, :hardwares, :guest_devices,
+ :disks, :networks, :system_services, :snapshots, :operating_systems,
+ :custom_attributes, :ems_clusters, :resource_pools, :subnets,
+ #:ems_folders, :switches, :lans
+ :miq_scsi_luns, :miq_scsi_targets, :storage_profiles, :customization_specs]
+
+ global_skip_attrs = ["created_on", "updated_on"]
+ table_skip_attrs = {
+ :storages => ["ems_ref", "ems_ref_obj"],
+ :vms => ["state_changed_on"],
+ }
+
+ tables.each_with_object({}) do |table, inventory|
+ model = table.to_s.classify.constantize
+
+ inventory[table] = model.all.map do |rec|
+ skip_attrs = global_skip_attrs + table_skip_attrs[table].to_a
+ rec.attributes.except(*skip_attrs)
+ end.sort { |rec| rec["id"] }
+ end
+ end
+
+ def assert_inventory_not_changed(before, after)
+ expect(before.keys).to match_array(after.keys)
+ before.keys.each do |model|
+ expect(before[model].count).to eq(after[model].count)
+
+ before[model].each do |item_before|
+ item_after = after[model].detect { |i| i["id"] == item_before["id"]}
+ expect(item_before).to eq(item_after)
+ end
+ end
+ end
end
context "targeted refresh" do
@@ -702,7 +754,7 @@ def assert_specific_resource_pool
:cpu_reserve => 47_984,
:cpu_reserve_expand => true,
:cpu_shares => 4_000,
- :cpu_shares_level => nil,
+ :cpu_shares_level => "normal",
:memory_limit => 59_872,
:memory_reserve => 59_872,
:memory_reserve_expand => true,
diff --git a/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector/classic.yml b/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector/classic.yml
new file mode 100644
index 000000000..f04ef5762
--- /dev/null
+++ b/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector/classic.yml
@@ -0,0 +1,2852 @@
+---
+http_interactions:
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ ServiceInstance
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:52 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrieveServiceContent
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:53 GMT
+ Set-Cookie:
+ - vmware_soap_session="5267cbf4-8a65-cf31-1624-45122758d12a"; Path=/; HttpOnly;
+ Secure;
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '3611'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ group-d1propertyCollectorViewManagerVMware vCenter ServerVMware vCenter Server 5.5.0 build-4180647 (Sim)VMware, Inc.5.5.04180647 (Sim)INTL000linux-x64vpxVirtualCenter5.5D6EB1D64-05B2-4937-BFF6-6F77C6E647B7VMware VirtualCenter Server5.0VpxSettingsUserDirectorySessionManagerAuthorizationManagerServiceMgrPerfMgrScheduledTaskManagerAlarmManagerEventManagerTaskManagerExtensionManagerCustomizationSpecManagerCustomFieldsManagerDiagMgrLicenseManagerSearchIndexFileManagerDatastoreNamespaceManagervirtualDiskManagerSnmpSystemProvCheckerCompatCheckerOvfManagerIpPoolManagerDVSManagerHostProfileManagerClusterProfileManagerMoComplianceManagerLocalizationManagerStorageResourceManagerguestOperationsManager
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:53 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ SessionManager
+ root
+ vmware
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:53 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - Login
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:53 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '830'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ 52039dec-a029-7d91-ff45-e5e18776a5a7rootroot 2019-01-29T19:22:53.722008Z2019-01-29T19:22:53.722008Zenenfalse10.10.112.84HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))0
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:53 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/pbm/sdk
+ body:
+ encoding: UTF-8
+ string: 5267cbf4-8a65-cf31-1624-45122758d12a<_this type="PbmServiceInstance">ServiceInstance
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:pbm/1.0
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Set-Cookie:
+ - vmware_soap_session=344dc9c3-dc7d-4379-8f5f-c9bd9ebbf44b; HttpOnly
+ Content-Type:
+ - text/xml;charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ Date:
+ - Tue, 29 Jan 2019 19:22:54 GMT
+ Server:
+ - Apache
+ body:
+ encoding: UTF-8
+ string: PBM1.0b1d512f8-2a53-4ea2-ae96-ca4d669df3f9SessionManagerCapabilityMetadataManagerProfileManagercomplianceManagerplacementSolver
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:54 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ ManagedEntity
+ false
+
+
+ Datastore
+ false
+
+
+ group-d1
+ false
+
+ folderTraversalSpec
+ Folder
+ childEntity
+ false
+
+ folderTraversalSpec
+
+
+ datacenterHostTraversalSpec
+ Datacenter
+ hostFolder
+ false
+
+ folderTraversalSpec
+
+
+
+ datacenterVmTraversalSpec
+ Datacenter
+ vmFolder
+ false
+
+ folderTraversalSpec
+
+
+
+ datacenterDsTraversalSpec
+ Datacenter
+ datastore
+ false
+
+
+ dcTodf
+ Datacenter
+ datastoreFolder
+ false
+
+ folderTraversalSpec
+
+
+
+ dcTonf
+ Datacenter
+ networkFolder
+ false
+
+ folderTraversalSpec
+
+
+
+ computeResourceRpTraversalSpec
+ ComputeResource
+ resourcePool
+ false
+
+ resourcePoolTraversalSpec
+
+
+
+ computeResourceHostTraversalSpec
+ ComputeResource
+ host
+ false
+
+
+ resourcePoolTraversalSpec
+ ResourcePool
+ resourcePool
+ false
+
+ resourcePoolTraversalSpec
+
+
+
+ virtualAppTraversalSpec
+ VirtualApp
+ vm
+ false
+
+
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:54 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:54 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '6330'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ 0group-d1datacenter-2datacenter-61group-n6group-s5datastore-15group-v3group-h4group-n65group-s64datastore-74group-v62group-h63dvportgroup-9dvportgroup-11dvportgroup-10dvs-8network-7vm-48vm-47vm-46vm-45vm-44vm-24vm-23vm-26vm-25vm-20vm-29vm-22vm-30vm-57vm-21vm-58vm-59vm-60vm-27vm-53vm-31vm-54vm-32vm-55vm-33vm-56vm-34vm-35vm-36vm-51vm-50vm-49domain-c37domain-c12dvportgroup-68dvportgroup-70dvportgroup-69dvs-67network-66vm-95vm-110vm-109vm-91vm-92vm-104vm-93vm-103vm-94vm-88vm-108vm-89vm-107vm-80vm-90vm-106vm-79vm-118vm-82vm-105vm-119vm-81vm-84vm-83vm-112vm-113vm-116vm-86vm-117vm-114vm-85vm-115domain-c96domain-c71host-42host-41host-40host-39resgroup-38host-18host-17host-16host-14
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:54 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+ 0
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:54 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - ContinueRetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:54 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '1560'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ resgroup-13host-99host-98host-101host-100resgroup-97host-77host-76host-75host-73resgroup-72resgroup-52resgroup-43resgroup-28resgroup-19resgroup-102resgroup-111resgroup-78resgroup-87
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:55 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ Datastore
+ false
+ info
+ host
+ capability.directoryHierarchySupported
+ capability.perFileThinProvisioningSupported
+ capability.rawDiskMappingsSupported
+ summary.accessible
+ summary.capacity
+ summary.datastore
+ summary.freeSpace
+ summary.maintenanceMode
+ summary.multipleHostAccess
+ summary.name
+ summary.type
+ summary.uncommitted
+ summary.url
+ parent
+
+
+ datastore-15
+
+
+ datastore-74
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:55 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:55 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '9336'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ datastore-15capability.directoryHierarchySupportedtruecapability.perFileThinProvisioningSupportedtruecapability.rawDiskMappingsSupportedtruehosthost-18/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-17/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-16/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-14/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-40/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-41/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-39/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-42/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z00VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falseparentgroup-s5summary.accessibletruesummary.capacity1099511627776summary.datastoredatastore-15summary.freeSpace824633720832summary.maintenanceModenormalsummary.multipleHostAccesstruesummary.nameGlobalDS_0summary.typeVMFSsummary.urlds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/datastore-74capability.directoryHierarchySupportedtruecapability.perFileThinProvisioningSupportedtruecapability.rawDiskMappingsSupportedtruehosthost-73/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-76/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-99/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-75/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-100/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-98/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-101/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-77/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z00VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falseparentgroup-s64summary.accessibletruesummary.capacity1099511627776summary.datastoredatastore-74summary.freeSpace824633720832summary.maintenanceModenormalsummary.multipleHostAccesstruesummary.nameGlobalDS_0summary.typeVMFSsummary.urlds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:55 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ DistributedVirtualPortgroup
+ false
+ summary.name
+ config.key
+ config.distributedVirtualSwitch
+ config.name
+ parent
+ host
+ tag
+
+
+ dvportgroup-9
+
+
+ dvportgroup-11
+
+
+ dvportgroup-10
+
+
+ dvportgroup-68
+
+
+ dvportgroup-70
+
+
+ dvportgroup-69
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:55 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:55 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '10283'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ dvportgroup-10config.distributedVirtualSwitchdvs-8config.keydvportgroup-10config.nameDC0_DVPG0hosthost-18host-17host-14host-16host-40host-41host-39host-42parentgroup-n6summary.nameDC0_DVPG0tagdvportgroup-11config.distributedVirtualSwitchdvs-8config.keydvportgroup-11config.nameDC0_DVPG1hosthost-18host-17host-14host-16host-40host-41host-39host-42parentgroup-n6summary.nameDC0_DVPG1tagdvportgroup-68config.distributedVirtualSwitchdvs-67config.keydvportgroup-68config.nameDC1_DVS-DVUplinks-67hosthost-73host-76host-99host-75host-100host-98host-101host-77parentgroup-n65summary.nameDC1_DVS-DVUplinks-67tagSYSTEM/DVS.UPLINKPGdvportgroup-69config.distributedVirtualSwitchdvs-67config.keydvportgroup-69config.nameDC1_DVPG0hosthost-73host-76host-99host-75host-100host-98host-101host-77parentgroup-n65summary.nameDC1_DVPG0tagdvportgroup-70config.distributedVirtualSwitchdvs-67config.keydvportgroup-70config.nameDC1_DVPG1hosthost-73host-76host-99host-75host-100host-98host-101host-77parentgroup-n65summary.nameDC1_DVPG1tagdvportgroup-9config.distributedVirtualSwitchdvs-8config.keydvportgroup-9config.nameDC0_DVS-DVUplinks-8hosthost-18host-17host-14host-16host-40host-41host-39host-42parentgroup-n6summary.nameDC0_DVS-DVUplinks-8tagSYSTEM/DVS.UPLINKPG
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:55 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ VmwareDistributedVirtualSwitch
+ false
+ config.uplinkPortgroup
+ config.defaultPortConfig
+ config.numPorts
+ summary.name
+ summary.uuid
+ summary.host
+ summary.hostMember
+ parent
+
+
+ dvs-8
+
+
+ dvs-67
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:55 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:55 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '10456'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ dvs-67config.defaultPortConfigfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPorts288config.uplinkPortgroupdvportgroup-68parentgroup-n65summary.hostsummary.hostMemberhost-73host-75host-76host-77host-98host-99host-100host-101summary.nameDC1_DVSsummary.uuidd8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvs-8config.defaultPortConfigfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPorts288config.uplinkPortgroupdvportgroup-9parentgroup-n6summary.hostsummary.hostMemberhost-14host-16host-17host-18host-39host-40host-41host-42summary.nameDC0_DVSsummary.uuidc0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:55 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.adminDisabled
+ config.consoleReservation.serviceConsoleReserved
+ config.hyperThread.active
+ config.network.consoleVnic
+ config.network.dnsConfig.domainName
+ config.network.dnsConfig.hostName
+ config.network.ipRouteConfig.defaultGateway
+ config.network.pnic
+ config.network.portgroup
+ config.network.vnic
+ config.network.vswitch
+ config.service.service
+ datastore
+ hardware.systemInfo.otherIdentifyingInfo
+ hardware.systemInfo.uuid
+ name
+ summary.host
+ summary.config.name
+ summary.config.product.build
+ summary.config.product.name
+ summary.config.product.osType
+ summary.config.product.vendor
+ summary.config.product.version
+ summary.config.vmotionEnabled
+ summary.hardware.cpuMhz
+ summary.hardware.cpuModel
+ summary.hardware.memorySize
+ summary.hardware.model
+ summary.hardware.numCpuCores
+ summary.hardware.numCpuPkgs
+ summary.hardware.numNics
+ summary.hardware.vendor
+ summary.quickStats.overallCpuUsage
+ summary.quickStats.overallMemoryUsage
+ summary.runtime.connectionState
+ summary.runtime.inMaintenanceMode
+
+
+ host-42
+
+
+ host-41
+
+
+ host-40
+
+
+ host-39
+
+
+ host-18
+
+
+ host-17
+
+
+ host-16
+
+
+ host-14
+
+
+ host-99
+
+
+ host-98
+
+
+ host-101
+
+
+ host-100
+
+
+ host-77
+
+
+ host-76
+
+
+ host-75
+
+
+ host-73
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:55 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:55 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-100config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC1_C1_H2config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0FManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-74hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC1_C1_H2summary.config.nameDC1_C1_H2summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-100summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-101config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC1_C1_H3config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:10Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-74hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC1_C1_H3summary.config.nameDC1_C1_H3summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-101summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-14config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC0_C0_H0config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:01Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-15hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC0_C0_H0summary.config.nameDC0_C0_H0summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-14summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-16config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC0_C0_H1config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:02Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-15hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC0_C0_H1summary.config.nameDC0_C0_H1summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-16summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-17config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC0_C0_H2config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:03Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-15hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC0_C0_H2summary.config.nameDC0_C0_H2summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-17summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-18config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC0_C0_H3config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:04Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-15hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC0_C0_H3summary.config.nameDC0_C0_H3summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-18summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-39config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC0_C1_H0config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:05Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-15hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC0_C1_H0summary.config.nameDC0_C1_H0summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-39summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-40config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC0_C1_H1config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:06Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-15hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC0_C1_H1summary.config.nameDC0_C1_H1summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-40summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-41config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC0_C1_H2config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:07Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-15hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC0_C1_H2summary.config.nameDC0_C1_H2summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-41summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-42config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC0_C1_H3config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:08Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-15hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC0_C1_H3summary.config.nameDC0_C1_H3summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-42summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-73config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC1_C0_H0config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:09Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-74hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC1_C0_H0summary.config.nameDC1_C0_H0summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-73summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-75config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC1_C0_H1config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0AManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-74hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC1_C0_H1summary.config.nameDC1_C0_H1summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-75summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-76config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC1_C0_H2config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0BManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-74hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC1_C0_H2summary.config.nameDC1_C0_H2summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-76summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-77config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC1_C0_H3config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0CManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-74hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC1_C0_H3summary.config.nameDC1_C0_H3summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-77summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-98config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC1_C1_H0config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0DManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-74hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC1_C1_H0summary.config.nameDC1_C1_H0summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-98summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalsehost-99config.adminDisabledfalseconfig.hyperThread.activefalseconfig.network.consoleVnicconfig.network.dnsConfig.domainNameeng.vmware.comconfig.network.dnsConfig.hostNameDC1_C1_H1config.network.ipRouteConfig.defaultGateway10.17.39.253config.network.pnickey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0EManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.servicentpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoredatastore-74hardware.systemInfo.otherIdentifyingInfo unknownAsset tag of the systemAssetTaghardware.systemInfo.uuid33393138-3335-5553-4537-32324e35394bnameDC1_C1_H1summary.config.nameDC1_C1_H1summary.config.product.build5.0.0.19summary.config.product.nameVMware ESXsummary.config.product.osTypevmnix-x86summary.config.product.vendorVMware, Inc.summary.config.product.version5.0.0summary.config.vmotionEnabledtruesummary.hardware.cpuMhz2999summary.hardware.cpuModelIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySize17175269376summary.hardware.modelProLiant DL380 G5summary.hardware.numCpuCores4summary.hardware.numCpuPkgs2summary.hardware.numNics2summary.hardware.vendorHPsummary.hosthost-99summary.quickStats.overallCpuUsage0summary.quickStats.overallMemoryUsage0summary.runtime.connectionStateconnectedsummary.runtime.inMaintenanceModefalse
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:56 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ VirtualMachine
+ false
+ availableField
+ config.cpuAffinity.affinitySet
+ config.cpuHotAddEnabled
+ config.cpuHotRemoveEnabled
+ config.defaultPowerOps.standbyAction
+ config.hardware.device
+ config.hardware.numCoresPerSocket
+ config.hotPlugMemoryIncrementSize
+ config.hotPlugMemoryLimit
+ config.memoryHotAddEnabled
+ config.uuid
+ config.version
+ datastore
+ guest.net
+ resourceConfig.cpuAllocation.expandableReservation
+ resourceConfig.cpuAllocation.limit
+ resourceConfig.cpuAllocation.reservation
+ resourceConfig.cpuAllocation.shares.level
+ resourceConfig.cpuAllocation.shares.shares
+ resourceConfig.memoryAllocation.expandableReservation
+ resourceConfig.memoryAllocation.limit
+ resourceConfig.memoryAllocation.reservation
+ resourceConfig.memoryAllocation.shares.level
+ resourceConfig.memoryAllocation.shares.shares
+ snapshot
+ summary.vm
+ summary.config.annotation
+ summary.config.ftInfo.instanceUuids
+ summary.config.guestFullName
+ summary.config.guestId
+ summary.config.memorySizeMB
+ summary.config.name
+ summary.config.numCpu
+ summary.config.template
+ summary.config.uuid
+ summary.config.vmPathName
+ summary.customValue
+ summary.guest.hostName
+ summary.guest.ipAddress
+ summary.guest.toolsStatus
+ summary.runtime.bootTime
+ summary.runtime.connectionState
+ summary.runtime.host
+ summary.runtime.powerState
+ summary.storage.unshared
+ summary.storage.committed
+
+
+ vm-48
+
+
+ vm-47
+
+
+ vm-46
+
+
+ vm-45
+
+
+ vm-44
+
+
+ vm-24
+
+
+ vm-23
+
+
+ vm-26
+
+
+ vm-25
+
+
+ vm-20
+
+
+ vm-29
+
+
+ vm-22
+
+
+ vm-30
+
+
+ vm-57
+
+
+ vm-21
+
+
+ vm-58
+
+
+ vm-59
+
+
+ vm-60
+
+
+ vm-27
+
+
+ vm-53
+
+
+ vm-31
+
+
+ vm-54
+
+
+ vm-32
+
+
+ vm-55
+
+
+ vm-33
+
+
+ vm-56
+
+
+ vm-34
+
+
+ vm-35
+
+
+ vm-36
+
+
+ vm-51
+
+
+ vm-50
+
+
+ vm-49
+
+
+ vm-95
+
+
+ vm-110
+
+
+ vm-109
+
+
+ vm-91
+
+
+ vm-92
+
+
+ vm-104
+
+
+ vm-93
+
+
+ vm-103
+
+
+ vm-94
+
+
+ vm-88
+
+
+ vm-108
+
+
+ vm-89
+
+
+ vm-107
+
+
+ vm-80
+
+
+ vm-90
+
+
+ vm-106
+
+
+ vm-79
+
+
+ vm-118
+
+
+ vm-82
+
+
+ vm-105
+
+
+ vm-119
+
+
+ vm-81
+
+
+ vm-84
+
+
+ vm-83
+
+
+ vm-112
+
+
+ vm-113
+
+
+ vm-116
+
+
+ vm-86
+
+
+ vm-117
+
+
+ vm-114
+
+
+ vm-85
+
+
+ vm-115
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:56 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:56 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ vm-103availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM0/DC1_C1_RP0_VM0.vmdkdatastore-74persistentfalsefalsefalse524b7c3e-80fe-fe75-69f7-8ce04a217af9100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:00:ddfalseconfig.uuid420f48db-966f-a988-7ce7-19f4d4fdeb3fconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.6500:50:56:8f:00:ddtrue4000172.16.1.6524dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP0_VM0summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f48db-966f-a988-7ce7-19f4d4fdeb3fsummary.config.vmPathName[GlobalDS_0] DC1_C1_RP0_VM0/DC1_C1_RP0_VM0.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP0_VM0summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:43.304847Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-98summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-103vm-104availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM1/DC1_C1_RP0_VM1.vmdkdatastore-74persistentfalsefalsefalse527fa7e7-2174-6bce-68a2-d00d35b837b4100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:45:e6falseconfig.uuid420f8f1d-afde-3c6f-36d6-ab3fb746caf9config.versionvmx-07datastoredatastore-74guest.net172.16.1.6600:50:56:8f:45:e6true4000172.16.1.6624dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP0_VM1summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f8f1d-afde-3c6f-36d6-ab3fb746caf9summary.config.vmPathName[GlobalDS_0] DC1_C1_RP0_VM1/DC1_C1_RP0_VM1.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP0_VM1summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:43.322312Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-99summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-104vm-105availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM2/DC1_C1_RP0_VM2.vmdkdatastore-74persistentfalsefalsefalse524cdc39-95c8-5923-f4ce-42f49d8eb636100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:df:59falseconfig.uuid420f0cee-9084-47e4-7a84-741372941822config.versionvmx-07datastoredatastore-74guest.net172.16.1.6700:50:56:8f:df:59true4000172.16.1.6724dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP0_VM2summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f0cee-9084-47e4-7a84-741372941822summary.config.vmPathName[GlobalDS_0] DC1_C1_RP0_VM2/DC1_C1_RP0_VM2.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP0_VM2summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:43.337707Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-100summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-105vm-106availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM3/DC1_C1_RP0_VM3.vmdkdatastore-74persistentfalsefalsefalse52277fd8-7f73-c9e7-4ad4-be999a5b1f57100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:3f:72falseconfig.uuid420f6ece-c4a2-12a9-08c7-07eec4db479aconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.6800:50:56:8f:3f:72true4000172.16.1.6824dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP0_VM3summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f6ece-c4a2-12a9-08c7-07eec4db479asummary.config.vmPathName[GlobalDS_0] DC1_C1_RP0_VM3/DC1_C1_RP0_VM3.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP0_VM3summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:43.358317Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-101summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-106vm-107availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM4/DC1_C1_RP0_VM4.vmdkdatastore-74persistentfalsefalsefalse527db23b-fbdf-389e-e599-86dc8f2136ee100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:e8:c3falseconfig.uuid420f40d6-29c2-a569-9299-457167e88bb0config.versionvmx-07datastoredatastore-74guest.net172.16.1.6900:50:56:8f:e8:c3true4000172.16.1.6924dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP0_VM4summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f40d6-29c2-a569-9299-457167e88bb0summary.config.vmPathName[GlobalDS_0] DC1_C1_RP0_VM4/DC1_C1_RP0_VM4.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP0_VM4summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:43.382367Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-98summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-107vm-108availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM5/DC1_C1_RP0_VM5.vmdkdatastore-74persistentfalsefalsefalse52a81692-ab54-d012-ea21-7246248fd9c7100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:c5:7bfalseconfig.uuid420f2605-91f4-f178-9452-b32590c0d635config.versionvmx-07datastoredatastore-74guest.net172.16.1.7000:50:56:8f:c5:7btrue4000172.16.1.7024dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP0_VM5summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f2605-91f4-f178-9452-b32590c0d635summary.config.vmPathName[GlobalDS_0] DC1_C1_RP0_VM5/DC1_C1_RP0_VM5.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP0_VM5summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:43.396778Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-99summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-108vm-109availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM6/DC1_C1_RP0_VM6.vmdkdatastore-74persistentfalsefalsefalse524d0838-7d53-db33-a59d-f0ef792358f8100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruefalse1003Assigned00:50:56:8f:ef:a4falseconfig.uuid420fa952-1560-06f5-1b2f-f6b789bf7436config.versionvmx-07datastoredatastore-74guest.net172.16.1.7100:50:56:8f:ef:a4false4000172.16.1.7124dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP0_VM6summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fa952-1560-06f5-1b2f-f6b789bf7436summary.config.vmPathName[GlobalDS_0] DC1_C1_RP0_VM6/DC1_C1_RP0_VM6.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-100summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-109vm-110availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM7/DC1_C1_RP0_VM7.vmdkdatastore-74persistentfalsefalsefalse526390e5-c41f-a811-eb95-e36496f6b33c100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruefalse1003Assigned00:50:56:8f:6b:9bfalseconfig.uuid420f871b-c40d-d31b-3f1e-e530fe328d1aconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.7200:50:56:8f:6b:9bfalse4000172.16.1.7224dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP0_VM7summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f871b-c40d-d31b-3f1e-e530fe328d1asummary.config.vmPathName[GlobalDS_0] DC1_C1_RP0_VM7/DC1_C1_RP0_VM7.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-101summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-110vm-112availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM0/DC1_C1_RP1_VM0.vmdkdatastore-74persistentfalsefalsefalse5286b84f-9a53-8f41-d80e-92c5e5862e21100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:23:6afalseconfig.uuid420facc4-151c-b938-ff5e-4cadc5a20621config.versionvmx-07datastoredatastore-74guest.net172.16.1.7300:50:56:8f:23:6atrue4000172.16.1.7324dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP1_VM0summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420facc4-151c-b938-ff5e-4cadc5a20621summary.config.vmPathName[GlobalDS_0] DC1_C1_RP1_VM0/DC1_C1_RP1_VM0.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP1_VM0summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:44.634603Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-98summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-112vm-113availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM1/DC1_C1_RP1_VM1.vmdkdatastore-74persistentfalsefalsefalse522d42f2-c45c-719c-44a3-6ac1b37bf3de100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:73:27falseconfig.uuid420fb2b8-7ce1-0cbc-9bab-46b2a3198074config.versionvmx-07datastoredatastore-74guest.net172.16.1.7400:50:56:8f:73:27true4000172.16.1.7424dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP1_VM1summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fb2b8-7ce1-0cbc-9bab-46b2a3198074summary.config.vmPathName[GlobalDS_0] DC1_C1_RP1_VM1/DC1_C1_RP1_VM1.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP1_VM1summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:44.66324Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-99summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-113vm-114availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM2/DC1_C1_RP1_VM2.vmdkdatastore-74persistentfalsefalsefalse520272c2-a15c-da01-9f53-abd13c019eaa100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:ae:f5falseconfig.uuid420f9acd-0445-95af-e048-1a54948bd463config.versionvmx-07datastoredatastore-74guest.net172.16.1.7500:50:56:8f:ae:f5true4000172.16.1.7524dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP1_VM2summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f9acd-0445-95af-e048-1a54948bd463summary.config.vmPathName[GlobalDS_0] DC1_C1_RP1_VM2/DC1_C1_RP1_VM2.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP1_VM2summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:44.690386Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-100summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-114vm-115availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM3/DC1_C1_RP1_VM3.vmdkdatastore-74persistentfalsefalsefalse52cc9a07-fb96-3834-5909-2adfb8a6c032100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:23:b0falseconfig.uuid420fd043-7f29-0841-00c4-420f0b303912config.versionvmx-07datastoredatastore-74guest.net172.16.1.7600:50:56:8f:23:b0true4000172.16.1.7624dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP1_VM3summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fd043-7f29-0841-00c4-420f0b303912summary.config.vmPathName[GlobalDS_0] DC1_C1_RP1_VM3/DC1_C1_RP1_VM3.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP1_VM3summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:44.714348Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-101summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-115vm-116availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM4/DC1_C1_RP1_VM4.vmdkdatastore-74persistentfalsefalsefalse52bc8cdd-8bb8-dc23-5576-05e287f6f7db100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:e4:78falseconfig.uuid420fa02a-0745-d887-6e39-979a487a9a3cconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.7700:50:56:8f:e4:78true4000172.16.1.7724dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP1_VM4summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fa02a-0745-d887-6e39-979a487a9a3csummary.config.vmPathName[GlobalDS_0] DC1_C1_RP1_VM4/DC1_C1_RP1_VM4.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP1_VM4summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:44.730675Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-98summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-116vm-117availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM5/DC1_C1_RP1_VM5.vmdkdatastore-74persistentfalsefalsefalse5271528b-5e27-26ed-1b52-2ff51cf2f689100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:39:04falseconfig.uuid420f8d20-575c-08c0-2891-1a9cdb3e9827config.versionvmx-07datastoredatastore-74guest.net172.16.1.7800:50:56:8f:39:04true4000172.16.1.7824dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP1_VM5summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f8d20-575c-08c0-2891-1a9cdb3e9827summary.config.vmPathName[GlobalDS_0] DC1_C1_RP1_VM5/DC1_C1_RP1_VM5.vmxsummary.customValuesummary.guest.hostNameDC1_C1_RP1_VM5summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:44.751271Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-99summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-117vm-118availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM6/DC1_C1_RP1_VM6.vmdkdatastore-74persistentfalsefalsefalse52896982-3719-17e6-bb31-f29efa3dc7b9100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruefalse1003Assigned00:50:56:8f:5a:00falseconfig.uuid420f62e8-daf7-345e-9634-2e7f9d776750config.versionvmx-07datastoredatastore-74guest.net172.16.1.7900:50:56:8f:5a:00false4000172.16.1.7924dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP1_VM6summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f62e8-daf7-345e-9634-2e7f9d776750summary.config.vmPathName[GlobalDS_0] DC1_C1_RP1_VM6/DC1_C1_RP1_VM6.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-100summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-118vm-119availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM7/DC1_C1_RP1_VM7.vmdkdatastore-74persistentfalsefalsefalse529fedce-56d3-06ae-2b00-246659be5451100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruefalse1003Assigned00:50:56:8f:7c:a1falseconfig.uuid420f5873-5ed4-73db-6921-bdb89603cd98config.versionvmx-07datastoredatastore-74guest.net172.16.1.8000:50:56:8f:7c:a1false4000172.16.1.8024dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C1_RP1_VM7summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f5873-5ed4-73db-6921-bdb89603cd98summary.config.vmPathName[GlobalDS_0] DC1_C1_RP1_VM7/DC1_C1_RP1_VM7.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-101summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-119vm-20availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmdkdatastore-15persistentfalsefalsefalse526e271a-b17b-9b17-f94d-cd4e04ba8185100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:98:37falseconfig.uuid420f272e-e82c-e3f8-4647-9bee9b603157config.versionvmx-07datastoredatastore-15guest.net172.16.1.500:50:56:8f:98:37true4000172.16.1.524dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP0_VM0summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f272e-e82c-e3f8-4647-9bee9b603157summary.config.vmPathName[GlobalDS_0] DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP0_VM0summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:24.042777Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-14summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-20vm-21availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmdkdatastore-15persistentfalsefalsefalse5262cf65-6564-f5b9-9858-20dfcf4404a8100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:56:8dfalseconfig.uuid420fe4bd-12b5-222d-554d-44ba94fb4401config.versionvmx-07datastoredatastore-15guest.net172.16.1.600:50:56:8f:56:8dtrue4000172.16.1.624dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP0_VM1summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fe4bd-12b5-222d-554d-44ba94fb4401summary.config.vmPathName[GlobalDS_0] DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP0_VM1summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:24.082009Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-16summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-21vm-22availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM2/DC0_C0_RP0_VM2.vmdkdatastore-15persistentfalsefalsefalse52633e15-337d-87e1-f385-5a284f6cc141100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:a2:a8falseconfig.uuid420f9192-36e4-ab3f-57ba-d19a7611f20bconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.700:50:56:8f:a2:a8true4000172.16.1.724dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP0_VM2summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f9192-36e4-ab3f-57ba-d19a7611f20bsummary.config.vmPathName[GlobalDS_0] DC0_C0_RP0_VM2/DC0_C0_RP0_VM2.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP0_VM2summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:24.119365Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-17summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-22vm-23availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM3/DC0_C0_RP0_VM3.vmdkdatastore-15persistentfalsefalsefalse525e0b2e-ca4d-3f30-e85b-4c838bd0c38e100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:3a:68falseconfig.uuid420f94d0-335b-36f5-7411-d6663b5e03aeconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.800:50:56:8f:3a:68true4000172.16.1.824dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP0_VM3summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f94d0-335b-36f5-7411-d6663b5e03aesummary.config.vmPathName[GlobalDS_0] DC0_C0_RP0_VM3/DC0_C0_RP0_VM3.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP0_VM3summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:24.148893Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-18summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-23vm-24availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM4/DC0_C0_RP0_VM4.vmdkdatastore-15persistentfalsefalsefalse52e27a44-e3d4-3dcb-7ea0-10bde9ce19e0100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:d2:c7falseconfig.uuid420f7788-af96-d344-d3a5-9308f609ba86config.versionvmx-07datastoredatastore-15guest.net172.16.1.900:50:56:8f:d2:c7true4000172.16.1.924dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP0_VM4summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f7788-af96-d344-d3a5-9308f609ba86summary.config.vmPathName[GlobalDS_0] DC0_C0_RP0_VM4/DC0_C0_RP0_VM4.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP0_VM4summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:24.17398Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-14summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-24vm-25availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM5/DC0_C0_RP0_VM5.vmdkdatastore-15persistentfalsefalsefalse52992269-d993-4f57-d8b4-791a7e81a8c1100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:91:5afalseconfig.uuid420f5b31-cfe0-a416-29b3-632c3e11fd18config.versionvmx-07datastoredatastore-15guest.net172.16.1.1000:50:56:8f:91:5atrue4000172.16.1.1024dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP0_VM5summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f5b31-cfe0-a416-29b3-632c3e11fd18summary.config.vmPathName[GlobalDS_0] DC0_C0_RP0_VM5/DC0_C0_RP0_VM5.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP0_VM5summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:24.206061Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-16summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-25vm-26availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM6/DC0_C0_RP0_VM6.vmdkdatastore-15persistentfalsefalsefalse52410edc-0459-918a-5c33-508eda915f62100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruefalse1003Assigned00:50:56:8f:1c:73falseconfig.uuid420f633c-1d67-a6de-ad6a-2dac060242a2config.versionvmx-07datastoredatastore-15guest.net172.16.1.1100:50:56:8f:1c:73false4000172.16.1.1124dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP0_VM6summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f633c-1d67-a6de-ad6a-2dac060242a2summary.config.vmPathName[GlobalDS_0] DC0_C0_RP0_VM6/DC0_C0_RP0_VM6.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-17summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-26vm-27availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM7/DC0_C0_RP0_VM7.vmdkdatastore-15persistentfalsefalsefalse52651c8d-c227-4001-276f-f81c510a69fb100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruefalse1003Assigned00:50:56:8f:c3:86falseconfig.uuid420f1231-12cb-05bf-5a18-9f685d74fe62config.versionvmx-07datastoredatastore-15guest.net172.16.1.1200:50:56:8f:c3:86false4000172.16.1.1224dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP0_VM7summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f1231-12cb-05bf-5a18-9f685d74fe62summary.config.vmPathName[GlobalDS_0] DC0_C0_RP0_VM7/DC0_C0_RP0_VM7.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-18summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-27vm-29availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM0/DC0_C0_RP1_VM0.vmdkdatastore-15persistentfalsefalsefalse52d66afe-1766-7985-ac3f-a2512382fc51100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:43:8ffalseconfig.uuid420feed9-3435-dbf1-d197-ea691a2702cbconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.1300:50:56:8f:43:8ftrue4000172.16.1.1324dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP1_VM0summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420feed9-3435-dbf1-d197-ea691a2702cbsummary.config.vmPathName[GlobalDS_0] DC0_C0_RP1_VM0/DC0_C0_RP1_VM0.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP1_VM0summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:25.610787Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-14summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-29vm-30availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM1/DC0_C0_RP1_VM1.vmdkdatastore-15persistentfalsefalsefalse529a58bb-1083-dc86-adaa-a9e5d9ae8d00100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:9e:70falseconfig.uuid420f44b5-2f15-1804-5242-8ad64cfee8d8config.versionvmx-07datastoredatastore-15guest.net172.16.1.1400:50:56:8f:9e:70true4000172.16.1.1424dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP1_VM1summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f44b5-2f15-1804-5242-8ad64cfee8d8summary.config.vmPathName[GlobalDS_0] DC0_C0_RP1_VM1/DC0_C0_RP1_VM1.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP1_VM1summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:25.628823Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-16summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-30vm-31availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM2/DC0_C0_RP1_VM2.vmdkdatastore-15persistentfalsefalsefalse52b7670a-617f-57b9-4207-43f879b7a8de100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:da:50falseconfig.uuid420f8f04-00c0-f18a-2877-80d0c4d53226config.versionvmx-07datastoredatastore-15guest.net172.16.1.1500:50:56:8f:da:50true4000172.16.1.1524dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP1_VM2summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f8f04-00c0-f18a-2877-80d0c4d53226summary.config.vmPathName[GlobalDS_0] DC0_C0_RP1_VM2/DC0_C0_RP1_VM2.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP1_VM2summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:25.650527Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-17summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-31vm-32availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM3/DC0_C0_RP1_VM3.vmdkdatastore-15persistentfalsefalsefalse52b03eaf-54b9-3405-4ff4-f0660121fa1c100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:b5:88falseconfig.uuid420f6387-b060-9131-d674-3b0361ad547cconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.1600:50:56:8f:b5:88true4000172.16.1.1624dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP1_VM3summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f6387-b060-9131-d674-3b0361ad547csummary.config.vmPathName[GlobalDS_0] DC0_C0_RP1_VM3/DC0_C0_RP1_VM3.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP1_VM3summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:25.669515Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-18summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-32vm-33availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM4/DC0_C0_RP1_VM4.vmdkdatastore-15persistentfalsefalsefalse52f62c62-579d-e1b1-eb92-45601c2be853100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:9b:fefalseconfig.uuid420f6fa7-56c0-4e21-7657-4765a48139f6config.versionvmx-07datastoredatastore-15guest.net172.16.1.1700:50:56:8f:9b:fetrue4000172.16.1.1724dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP1_VM4summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f6fa7-56c0-4e21-7657-4765a48139f6summary.config.vmPathName[GlobalDS_0] DC0_C0_RP1_VM4/DC0_C0_RP1_VM4.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP1_VM4summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:25.684823Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-14summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-33vm-34availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM5/DC0_C0_RP1_VM5.vmdkdatastore-15persistentfalsefalsefalse52f314db-2fae-c6bf-9295-55c71bde0dea100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:15:05falseconfig.uuid420fe34b-9df7-621a-b361-804d58a564f1config.versionvmx-07datastoredatastore-15guest.net172.16.1.1800:50:56:8f:15:05true4000172.16.1.1824dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP1_VM5summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fe34b-9df7-621a-b361-804d58a564f1summary.config.vmPathName[GlobalDS_0] DC0_C0_RP1_VM5/DC0_C0_RP1_VM5.vmxsummary.customValuesummary.guest.hostNameDC0_C0_RP1_VM5summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:25.704358Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-16summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-34vm-35availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM6/DC0_C0_RP1_VM6.vmdkdatastore-15persistentfalsefalsefalse52472dde-cc84-443c-12fe-909df602c927100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruefalse1003Assigned00:50:56:8f:ed:81falseconfig.uuid420f8a6a-f8a7-135f-48a5-5168b83597c3config.versionvmx-07datastoredatastore-15guest.net172.16.1.1900:50:56:8f:ed:81false4000172.16.1.1924dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP1_VM6summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f8a6a-f8a7-135f-48a5-5168b83597c3summary.config.vmPathName[GlobalDS_0] DC0_C0_RP1_VM6/DC0_C0_RP1_VM6.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-17summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-35vm-36availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM7/DC0_C0_RP1_VM7.vmdkdatastore-15persistentfalsefalsefalse520e03b9-ed26-0cb0-bbb5-395e107da048100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruefalse1003Assigned00:50:56:8f:cd:6dfalseconfig.uuid420fe995-1921-a28a-a6b0-b412efedbcedconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.2000:50:56:8f:cd:6dfalse4000172.16.1.2024dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C0_RP1_VM7summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fe995-1921-a28a-a6b0-b412efedbcedsummary.config.vmPathName[GlobalDS_0] DC0_C0_RP1_VM7/DC0_C0_RP1_VM7.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-18summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-36vm-44availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM0/DC0_C1_RP0_VM0.vmdkdatastore-15persistentfalsefalsefalse52c2ec22-4070-00df-3646-bd8e2be916eb100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:30:03falseconfig.uuid420f6f3b-e8b6-e452-5724-75d3239ff0ccconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.2500:50:56:8f:30:03true4000172.16.1.2524dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP0_VM0summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f6f3b-e8b6-e452-5724-75d3239ff0ccsummary.config.vmPathName[GlobalDS_0] DC0_C1_RP0_VM0/DC0_C1_RP0_VM0.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP0_VM0summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:30.699835Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-39summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-44vm-45availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM1/DC0_C1_RP0_VM1.vmdkdatastore-15persistentfalsefalsefalse5236066f-4a98-9d8f-5ccf-50f575d36703100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:23:29falseconfig.uuid420f9aa1-3136-a59c-529c-092556dff375config.versionvmx-07datastoredatastore-15guest.net172.16.1.2600:50:56:8f:23:29true4000172.16.1.2624dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP0_VM1summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f9aa1-3136-a59c-529c-092556dff375summary.config.vmPathName[GlobalDS_0] DC0_C1_RP0_VM1/DC0_C1_RP0_VM1.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP0_VM1summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:30.723215Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-40summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-45vm-46availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM2/DC0_C1_RP0_VM2.vmdkdatastore-15persistentfalsefalsefalse527f303f-cbca-e411-efc6-5aa90322b14e100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:29:ccfalseconfig.uuid420febfc-4cd2-2743-cec8-4b238e93a4d7config.versionvmx-07datastoredatastore-15guest.net172.16.1.2700:50:56:8f:29:cctrue4000172.16.1.2724dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP0_VM2summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420febfc-4cd2-2743-cec8-4b238e93a4d7summary.config.vmPathName[GlobalDS_0] DC0_C1_RP0_VM2/DC0_C1_RP0_VM2.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP0_VM2summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:30.745225Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-41summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-46vm-47availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM3/DC0_C1_RP0_VM3.vmdkdatastore-15persistentfalsefalsefalse52c5554e-c009-6e2e-a5ac-8e5998ab3a11100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:bf:40falseconfig.uuid420fa061-60b4-8dd4-980a-b4870aea9ae7config.versionvmx-07datastoredatastore-15guest.net172.16.1.2800:50:56:8f:bf:40true4000172.16.1.2824dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP0_VM3summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fa061-60b4-8dd4-980a-b4870aea9ae7summary.config.vmPathName[GlobalDS_0] DC0_C1_RP0_VM3/DC0_C1_RP0_VM3.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP0_VM3summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:30.779044Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-42summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-47vm-48availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM4/DC0_C1_RP0_VM4.vmdkdatastore-15persistentfalsefalsefalse52a6f7ed-b3a9-c171-6799-16ac3bdc1a02100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:fe:39falseconfig.uuid420fc00a-e6da-98ca-ec29-4e88b6633a3cconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.2900:50:56:8f:fe:39true4000172.16.1.2924dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP0_VM4summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fc00a-e6da-98ca-ec29-4e88b6633a3csummary.config.vmPathName[GlobalDS_0] DC0_C1_RP0_VM4/DC0_C1_RP0_VM4.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP0_VM4summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:30.807141Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-39summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-48vm-49availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM5/DC0_C1_RP0_VM5.vmdkdatastore-15persistentfalsefalsefalse5271c192-5a85-6376-161a-f5ddee23e672100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:fc:8cfalseconfig.uuid420f3804-946e-8266-ee6c-27c3b0833181config.versionvmx-07datastoredatastore-15guest.net172.16.1.3000:50:56:8f:fc:8ctrue4000172.16.1.3024dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP0_VM5summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f3804-946e-8266-ee6c-27c3b0833181summary.config.vmPathName[GlobalDS_0] DC0_C1_RP0_VM5/DC0_C1_RP0_VM5.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP0_VM5summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:30.825451Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-40summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-49vm-50availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM6/DC0_C1_RP0_VM6.vmdkdatastore-15persistentfalsefalsefalse52e5f04f-7e80-199f-f4a4-3caf7265fef2100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruefalse1003Assigned00:50:56:8f:2f:91falseconfig.uuid420f01b5-434f-5d2f-73be-ca68c062402dconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.3100:50:56:8f:2f:91false4000172.16.1.3124dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP0_VM6summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f01b5-434f-5d2f-73be-ca68c062402dsummary.config.vmPathName[GlobalDS_0] DC0_C1_RP0_VM6/DC0_C1_RP0_VM6.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-41summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-50vm-51availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM7/DC0_C1_RP0_VM7.vmdkdatastore-15persistentfalsefalsefalse522656ff-5e94-fe08-f745-198ae179088b100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruefalse1003Assigned00:50:56:8f:52:b9falseconfig.uuid420f9698-2681-bf24-30b6-1aa8589a652dconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.3200:50:56:8f:52:b9false4000172.16.1.3224dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP0_VM7summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f9698-2681-bf24-30b6-1aa8589a652dsummary.config.vmPathName[GlobalDS_0] DC0_C1_RP0_VM7/DC0_C1_RP0_VM7.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-42summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-51vm-53availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM0/DC0_C1_RP1_VM0.vmdkdatastore-15persistentfalsefalsefalse527978c8-7989-450f-615c-34bce4938453100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:01:2afalseconfig.uuid420fe982-e1df-cffd-3609-db3b8efe91e2config.versionvmx-07datastoredatastore-15guest.net172.16.1.3300:50:56:8f:01:2atrue4000172.16.1.3324dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP1_VM0summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fe982-e1df-cffd-3609-db3b8efe91e2summary.config.vmPathName[GlobalDS_0] DC0_C1_RP1_VM0/DC0_C1_RP1_VM0.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP1_VM0summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:31.94306Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-39summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-53vm-54availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM1/DC0_C1_RP1_VM1.vmdkdatastore-15persistentfalsefalsefalse52ae4a5a-50ac-25e1-087c-4bbc76f3fe04100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:69:5bfalseconfig.uuid420f1dad-9a2d-2740-0b1c-12df72a99203config.versionvmx-07datastoredatastore-15guest.net172.16.1.3400:50:56:8f:69:5btrue4000172.16.1.3424dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP1_VM1summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f1dad-9a2d-2740-0b1c-12df72a99203summary.config.vmPathName[GlobalDS_0] DC0_C1_RP1_VM1/DC0_C1_RP1_VM1.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP1_VM1summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:31.957321Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-40summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-54vm-55availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM2/DC0_C1_RP1_VM2.vmdkdatastore-15persistentfalsefalsefalse521279af-928e-7e89-8447-6a19bae2a5fb100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:03:66falseconfig.uuid420fe19d-b481-38bc-161b-ae9cc58f56fbconfig.versionvmx-07datastoredatastore-15guest.net172.16.1.3500:50:56:8f:03:66true4000172.16.1.3524dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP1_VM2summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fe19d-b481-38bc-161b-ae9cc58f56fbsummary.config.vmPathName[GlobalDS_0] DC0_C1_RP1_VM2/DC0_C1_RP1_VM2.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP1_VM2summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:31.991465Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-41summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-55vm-56availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM3/DC0_C1_RP1_VM3.vmdkdatastore-15persistentfalsefalsefalse521911e3-390b-939b-777a-eee6d85f3a0d100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:20:39falseconfig.uuid420fab1b-414d-7866-ddb9-98989762cdd2config.versionvmx-07datastoredatastore-15guest.net172.16.1.3600:50:56:8f:20:39true4000172.16.1.3624dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP1_VM3summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fab1b-414d-7866-ddb9-98989762cdd2summary.config.vmPathName[GlobalDS_0] DC0_C1_RP1_VM3/DC0_C1_RP1_VM3.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP1_VM3summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:32.009196Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-42summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-56vm-57availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM4/DC0_C1_RP1_VM4.vmdkdatastore-15persistentfalsefalsefalse5284f451-2aee-1ef0-27d6-48320e28949c100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:18:93falseconfig.uuid420fdb1a-2ca7-7df1-2311-4bf94a5f03c7config.versionvmx-07datastoredatastore-15guest.net172.16.1.3700:50:56:8f:18:93true4000172.16.1.3724dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP1_VM4summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fdb1a-2ca7-7df1-2311-4bf94a5f03c7summary.config.vmPathName[GlobalDS_0] DC0_C1_RP1_VM4/DC0_C1_RP1_VM4.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP1_VM4summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:32.038281Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-39summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-57vm-58availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM5/DC0_C1_RP1_VM5.vmdkdatastore-15persistentfalsefalsefalse520ad958-e578-b8cf-69ac-3e4f67e18cda100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:6f:8cfalseconfig.uuid420f87b4-ccbd-2cb4-e336-b7ff2e49c5b8config.versionvmx-07datastoredatastore-15guest.net172.16.1.3800:50:56:8f:6f:8ctrue4000172.16.1.3824dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP1_VM5summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f87b4-ccbd-2cb4-e336-b7ff2e49c5b8summary.config.vmPathName[GlobalDS_0] DC0_C1_RP1_VM5/DC0_C1_RP1_VM5.vmxsummary.customValuesummary.guest.hostNameDC0_C1_RP1_VM5summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:32.074121Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-40summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-58vm-59availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM6/DC0_C1_RP1_VM6.vmdkdatastore-15persistentfalsefalsefalse52846b20-6299-3f6d-3ce4-1ca1f692a041100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruefalse1003Assigned00:50:56:8f:2d:adfalseconfig.uuid420f81fc-19fe-1a2e-0613-5eecf3772163config.versionvmx-07datastoredatastore-15guest.net172.16.1.3900:50:56:8f:2d:adfalse4000172.16.1.3924dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP1_VM6summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f81fc-19fe-1a2e-0613-5eecf3772163summary.config.vmPathName[GlobalDS_0] DC0_C1_RP1_VM6/DC0_C1_RP1_VM6.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-41summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-59vm-60availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM7/DC0_C1_RP1_VM7.vmdkdatastore-15persistentfalsefalsefalse521e3b0d-e9ea-885d-7d0c-d44554c1a3dd100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruefalse1003Assigned00:50:56:8f:69:5dfalseconfig.uuid420fceee-94f5-8dc8-eb2e-a12514524f18config.versionvmx-07datastoredatastore-15guest.net172.16.1.4000:50:56:8f:69:5dfalse4000172.16.1.4024dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC0_C1_RP1_VM7summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fceee-94f5-8dc8-eb2e-a12514524f18summary.config.vmPathName[GlobalDS_0] DC0_C1_RP1_VM7/DC0_C1_RP1_VM7.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-42summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-60vm-79availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmdkdatastore-74persistentfalsefalsefalse5202711b-9fd7-6f7d-816c-8c258b1ea83a100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:00:7cfalseconfig.uuid420f350d-0b9b-7a58-319a-c3f01a975903config.versionvmx-07datastoredatastore-74guest.net172.16.1.4500:50:56:8f:00:7ctrue4000172.16.1.4524dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP0_VM0summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f350d-0b9b-7a58-319a-c3f01a975903summary.config.vmPathName[GlobalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP0_VM0summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:36.858698Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-73summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-79vm-80availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmdkdatastore-74persistentfalsefalsefalse528cbeba-e986-d538-97fe-d74a09971dc4100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:1d:79falseconfig.uuid420fa377-d067-8582-2a9f-695a643780c9config.versionvmx-07datastoredatastore-74guest.net172.16.1.4600:50:56:8f:1d:79true4000172.16.1.4624dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP0_VM1summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fa377-d067-8582-2a9f-695a643780c9summary.config.vmPathName[GlobalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP0_VM1summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:36.886096Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-75summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-80vm-81availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM2/DC1_C0_RP0_VM2.vmdkdatastore-74persistentfalsefalsefalse52c9d5eb-a878-e5ac-5aac-1d7e742b8f00100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:48:20falseconfig.uuid420f0cde-40f5-41c4-fbfd-f0b7af0a045bconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.4700:50:56:8f:48:20true4000172.16.1.4724dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP0_VM2summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f0cde-40f5-41c4-fbfd-f0b7af0a045bsummary.config.vmPathName[GlobalDS_0] DC1_C0_RP0_VM2/DC1_C0_RP0_VM2.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP0_VM2summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:36.906962Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-76summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-81vm-82availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM3/DC1_C0_RP0_VM3.vmdkdatastore-74persistentfalsefalsefalse522c7741-dbec-2727-d75e-f5c324b4ff16100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:28:28falseconfig.uuid420fbacf-98b4-cd0e-654a-4c199fefffaaconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.4800:50:56:8f:28:28true4000172.16.1.4824dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP0_VM3summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fbacf-98b4-cd0e-654a-4c199fefffaasummary.config.vmPathName[GlobalDS_0] DC1_C0_RP0_VM3/DC1_C0_RP0_VM3.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP0_VM3summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:36.938775Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-77summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-82vm-83availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM4/DC1_C0_RP0_VM4.vmdkdatastore-74persistentfalsefalsefalse52009393-1db0-22f5-2dca-8da71c9487b6100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:91:0bfalseconfig.uuid420f2500-7e77-bed7-4638-11509976fff3config.versionvmx-07datastoredatastore-74guest.net172.16.1.4900:50:56:8f:91:0btrue4000172.16.1.4924dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP0_VM4summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f2500-7e77-bed7-4638-11509976fff3summary.config.vmPathName[GlobalDS_0] DC1_C0_RP0_VM4/DC1_C0_RP0_VM4.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP0_VM4summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:36.95947Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-73summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-83vm-84availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM5/DC1_C0_RP0_VM5.vmdkdatastore-74persistentfalsefalsefalse52683803-7ae5-1c46-5860-e8eb05c4c7fb100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:d4:ddfalseconfig.uuid420fcbf0-1fd5-0a71-bdc0-fdd9c42fd960config.versionvmx-07datastoredatastore-74guest.net172.16.1.5000:50:56:8f:d4:ddtrue4000172.16.1.5024dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP0_VM5summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fcbf0-1fd5-0a71-bdc0-fdd9c42fd960summary.config.vmPathName[GlobalDS_0] DC1_C0_RP0_VM5/DC1_C0_RP0_VM5.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP0_VM5summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:36.976372Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-75summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-84vm-85availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM6/DC1_C0_RP0_VM6.vmdkdatastore-74persistentfalsefalsefalse524cf7dd-aae2-ccf6-4600-16fa47e55255100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruefalse1003Assigned00:50:56:8f:2f:79falseconfig.uuid420f5d6f-221e-a8eb-339e-4b58b7adb5c6config.versionvmx-07datastoredatastore-74guest.net172.16.1.5100:50:56:8f:2f:79false4000172.16.1.5124dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP0_VM6summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f5d6f-221e-a8eb-339e-4b58b7adb5c6summary.config.vmPathName[GlobalDS_0] DC1_C0_RP0_VM6/DC1_C0_RP0_VM6.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-76summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-85vm-86availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM7/DC1_C0_RP0_VM7.vmdkdatastore-74persistentfalsefalsefalse529d4fcf-9106-af1d-bf56-92fdc17d1bc1100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruefalse1003Assigned00:50:56:8f:48:2afalseconfig.uuid420f1c80-6270-5a5e-114e-77de606efc94config.versionvmx-07datastoredatastore-74guest.net172.16.1.5200:50:56:8f:48:2afalse4000172.16.1.5224dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP0_VM7summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f1c80-6270-5a5e-114e-77de606efc94summary.config.vmPathName[GlobalDS_0] DC1_C0_RP0_VM7/DC1_C0_RP0_VM7.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-77summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-86vm-88availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM0/DC1_C0_RP1_VM0.vmdkdatastore-74persistentfalsefalsefalse52e15874-7d21-583a-1bd9-f2fe20841692100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:95:ecfalseconfig.uuid420f7b95-23aa-3df5-64ce-5f45d8dafcefconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.5300:50:56:8f:95:ectrue4000172.16.1.5324dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP1_VM0summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f7b95-23aa-3df5-64ce-5f45d8dafcefsummary.config.vmPathName[GlobalDS_0] DC1_C0_RP1_VM0/DC1_C0_RP1_VM0.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP1_VM0summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:38.285159Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-73summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-88vm-89availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM1/DC1_C0_RP1_VM1.vmdkdatastore-74persistentfalsefalsefalse52704f6d-1420-993c-948b-9fcb084516a5100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:5c:fefalseconfig.uuid420f7a20-f940-82bb-1ff6-bfd42a8c5c04config.versionvmx-07datastoredatastore-74guest.net172.16.1.5400:50:56:8f:5c:fetrue4000172.16.1.5424dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP1_VM1summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f7a20-f940-82bb-1ff6-bfd42a8c5c04summary.config.vmPathName[GlobalDS_0] DC1_C0_RP1_VM1/DC1_C0_RP1_VM1.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP1_VM1summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:38.317872Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-75summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-89vm-90availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM2/DC1_C0_RP1_VM2.vmdkdatastore-74persistentfalsefalsefalse524c7da2-ca63-7c54-3b4a-a821aa2d191c100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:c0:9efalseconfig.uuid420f4892-8451-7048-4e7b-7fbd3857362dconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.5500:50:56:8f:c0:9etrue4000172.16.1.5524dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP1_VM2summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f4892-8451-7048-4e7b-7fbd3857362dsummary.config.vmPathName[GlobalDS_0] DC1_C0_RP1_VM2/DC1_C0_RP1_VM2.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP1_VM2summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:38.336979Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-76summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-90vm-91availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM3/DC1_C0_RP1_VM3.vmdkdatastore-74persistentfalsefalsefalse52029b21-19cc-843f-3d37-f60332228da5100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:40:fefalseconfig.uuid420f2d73-950b-0d0d-3c08-e914dd505c92config.versionvmx-07datastoredatastore-74guest.net172.16.1.5600:50:56:8f:40:fetrue4000172.16.1.5624dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP1_VM3summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f2d73-950b-0d0d-3c08-e914dd505c92summary.config.vmPathName[GlobalDS_0] DC1_C0_RP1_VM3/DC1_C0_RP1_VM3.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP1_VM3summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:38.354434Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-77summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-91vm-92availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM4/DC1_C0_RP1_VM4.vmdkdatastore-74persistentfalsefalsefalse52aaf687-7508-5363-58e9-238ba047a083100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:14:b4falseconfig.uuid420fc024-f5f2-4f7c-5163-a5c978e5eec5config.versionvmx-07datastoredatastore-74guest.net172.16.1.5700:50:56:8f:14:b4true4000172.16.1.5724dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP1_VM4summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fc024-f5f2-4f7c-5163-a5c978e5eec5summary.config.vmPathName[GlobalDS_0] DC1_C0_RP1_VM4/DC1_C0_RP1_VM4.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP1_VM4summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:38.373051Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-73summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-92vm-93availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM5/DC1_C0_RP1_VM5.vmdkdatastore-74persistentfalsefalsefalse52b55eef-4844-2807-f04c-defe17e51d31100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:df:82falseconfig.uuid420f9549-2003-a44e-7669-ad01fcf5ae06config.versionvmx-07datastoredatastore-74guest.net172.16.1.5800:50:56:8f:df:82true4000172.16.1.5824dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP1_VM5summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f9549-2003-a44e-7669-ad01fcf5ae06summary.config.vmPathName[GlobalDS_0] DC1_C0_RP1_VM5/DC1_C0_RP1_VM5.vmxsummary.customValuesummary.guest.hostNameDC1_C0_RP1_VM5summary.guest.toolsStatustoolsNotInstalledsummary.runtime.bootTime2019-01-29T19:21:38.396283Zsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-75summary.runtime.powerStatepoweredOnsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-93vm-94availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM6/DC1_C0_RP1_VM6.vmdkdatastore-74persistentfalsefalsefalse52692549-c597-c131-9e0a-1cb1e24d0579100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruefalse1003Assigned00:50:56:8f:e9:b8falseconfig.uuid420f5496-cb0b-ac48-7098-73d01fdeacabconfig.versionvmx-07datastoredatastore-74guest.net172.16.1.5900:50:56:8f:e9:b8false4000172.16.1.5924dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP1_VM6summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420f5496-cb0b-ac48-7098-73d01fdeacabsummary.config.vmPathName[GlobalDS_0] DC1_C0_RP1_VM6/DC1_C0_RP1_VM6.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-76summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-94vm-95availableFieldconfig.defaultPowerOps.standbyActioncheckpointconfig.hardware.device100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM7/DC1_C0_RP1_VM7.vmdkdatastore-74persistentfalsefalsefalse52633f28-919e-6f1c-63ee-a9d8810d070a100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruefalse1003Assigned00:50:56:8f:f0:ccfalseconfig.uuid420fb639-c2cd-7a23-f0f1-8cce5b51b123config.versionvmx-07datastoredatastore-74guest.net172.16.1.6000:50:56:8f:f0:ccfalse4000172.16.1.6024dhcppreferredresourceConfig.cpuAllocation.limit-1resourceConfig.cpuAllocation.reservation0resourceConfig.cpuAllocation.shares.levelnormalresourceConfig.cpuAllocation.shares.shares1000resourceConfig.memoryAllocation.limit-1resourceConfig.memoryAllocation.reservation0resourceConfig.memoryAllocation.shares.levelnormalresourceConfig.memoryAllocation.shares.shares640summary.config.guestFullNameMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdwinNetStandardGuestsummary.config.memorySizeMB64summary.config.nameDC1_C0_RP1_VM7summary.config.numCpu1summary.config.templatefalsesummary.config.uuid420fb639-c2cd-7a23-f0f1-8cce5b51b123summary.config.vmPathName[GlobalDS_0] DC1_C0_RP1_VM7/DC1_C0_RP1_VM7.vmxsummary.customValuesummary.guest.toolsStatustoolsNotInstalledsummary.runtime.connectionStateconnectedsummary.runtime.hosthost-77summary.runtime.powerStatepoweredOffsummary.storage.committed67108864summary.storage.unshared67108864summary.vmvm-95
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:57 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ Datacenter
+ false
+ datastoreFolder
+ hostFolder
+ name
+ parent
+ vmFolder
+
+
+ datacenter-2
+
+
+ datacenter-61
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:58 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:58 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '1567'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ datacenter-2datastoreFoldergroup-s5hostFoldergroup-h4nameDC0parentgroup-d1vmFoldergroup-v3datacenter-61datastoreFoldergroup-s64hostFoldergroup-h63nameDC1parentgroup-d1vmFoldergroup-v62
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:58 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ Folder
+ false
+ childEntity
+ name
+ parent
+
+
+ group-d1
+
+
+ group-n6
+
+
+ group-s5
+
+
+ group-v3
+
+
+ group-h4
+
+
+ group-n65
+
+
+ group-s64
+
+
+ group-v62
+
+
+ group-h63
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:58 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:58 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '12598'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ group-d1childEntitydatacenter-2datacenter-61nameDatacentersgroup-h4childEntitydomain-c12domain-c37namehostparentdatacenter-2group-h63childEntitydomain-c71domain-c96namehostparentdatacenter-61group-n6childEntitynetwork-7dvs-8dvportgroup-10dvportgroup-11dvportgroup-9namenetworkparentdatacenter-2group-n65childEntitynetwork-66dvs-67dvportgroup-69dvportgroup-70dvportgroup-68namenetworkparentdatacenter-61group-s5childEntitydatastore-15namedatastoreparentdatacenter-2group-s64childEntitydatastore-74namedatastoreparentdatacenter-61group-v3childEntityvm-49vm-50vm-51vm-36vm-35vm-34vm-56vm-33vm-55vm-32vm-54vm-31vm-53vm-27vm-60vm-59vm-58vm-21vm-57vm-30vm-22vm-29vm-20vm-25vm-26vm-23vm-24vm-44vm-45vm-46vm-47vm-48namevmparentdatacenter-2group-v62childEntityvm-115vm-85vm-114vm-117vm-86vm-116vm-113vm-112vm-83vm-84vm-81vm-119vm-105vm-82vm-118vm-79vm-106vm-90vm-80vm-107vm-89vm-108vm-88vm-94vm-103vm-93vm-104vm-92vm-91vm-109vm-110vm-95namevmparentdatacenter-61
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:58 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ ClusterComputeResource
+ false
+ configuration.dasConfig.admissionControlPolicy
+ configuration.dasConfig.admissionControlEnabled
+ configuration.dasConfig.enabled
+ configuration.dasConfig.failoverLevel
+ configuration.drsConfig.defaultVmBehavior
+ configuration.drsConfig.enabled
+ configuration.drsConfig.vmotionRate
+ summary.effectiveCpu
+ summary.effectiveMemory
+ host
+ name
+ parent
+ resourcePool
+
+
+ domain-c37
+
+
+ domain-c12
+
+
+ domain-c96
+
+
+ domain-c71
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:58 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:58 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '7929'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ domain-c12configuration.dasConfig.admissionControlEnabledtrueconfiguration.dasConfig.admissionControlPolicy1configuration.dasConfig.enabledfalseconfiguration.dasConfig.failoverLevel1configuration.drsConfig.defaultVmBehaviormanualconfiguration.drsConfig.enabledtrueconfiguration.drsConfig.vmotionRate3hosthost-14host-16host-17host-18nameDC0_C0parentgroup-h4resourcePoolresgroup-13summary.effectiveCpu47984summary.effectiveMemory59872domain-c37configuration.dasConfig.admissionControlEnabledtrueconfiguration.dasConfig.admissionControlPolicy1configuration.dasConfig.enabledfalseconfiguration.dasConfig.failoverLevel1configuration.drsConfig.defaultVmBehaviormanualconfiguration.drsConfig.enabledtrueconfiguration.drsConfig.vmotionRate3hosthost-39host-40host-41host-42nameDC0_C1parentgroup-h4resourcePoolresgroup-38summary.effectiveCpu47984summary.effectiveMemory59872domain-c71configuration.dasConfig.admissionControlEnabledtrueconfiguration.dasConfig.admissionControlPolicy1configuration.dasConfig.enabledfalseconfiguration.dasConfig.failoverLevel1configuration.drsConfig.defaultVmBehaviormanualconfiguration.drsConfig.enabledtrueconfiguration.drsConfig.vmotionRate3hosthost-73host-75host-76host-77nameDC1_C0parentgroup-h63resourcePoolresgroup-72summary.effectiveCpu47984summary.effectiveMemory59872domain-c96configuration.dasConfig.admissionControlEnabledtrueconfiguration.dasConfig.admissionControlPolicy1configuration.dasConfig.enabledfalseconfiguration.dasConfig.failoverLevel1configuration.drsConfig.defaultVmBehaviormanualconfiguration.drsConfig.enabledtrueconfiguration.drsConfig.vmotionRate3hosthost-100host-101host-98host-99nameDC1_C1parentgroup-h63resourcePoolresgroup-97summary.effectiveCpu47984summary.effectiveMemory59872
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:58 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ ResourcePool
+ false
+ name
+ parent
+ resourcePool
+ summary.config.cpuAllocation.expandableReservation
+ summary.config.cpuAllocation.limit
+ summary.config.cpuAllocation.reservation
+ summary.config.cpuAllocation.shares.level
+ summary.config.cpuAllocation.shares.shares
+ summary.config.memoryAllocation.expandableReservation
+ summary.config.memoryAllocation.limit
+ summary.config.memoryAllocation.reservation
+ summary.config.memoryAllocation.shares.level
+ summary.config.memoryAllocation.shares.shares
+ vm
+
+
+ resgroup-38
+
+
+ resgroup-13
+
+
+ resgroup-97
+
+
+ resgroup-72
+
+
+ resgroup-52
+
+
+ resgroup-43
+
+
+ resgroup-28
+
+
+ resgroup-19
+
+
+ resgroup-102
+
+
+ resgroup-111
+
+
+ resgroup-78
+
+
+ resgroup-87
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:22:58 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:22:58 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ resgroup-102nameDC1_C1_RP0parentresgroup-97resourcePoolsummary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit-1summary.config.cpuAllocation.reservation0summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit-1summary.config.memoryAllocation.reservation0summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmvm-107vm-104vm-103vm-110vm-109vm-108vm-106vm-105resgroup-111nameDC1_C1_RP1parentresgroup-97resourcePoolsummary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit-1summary.config.cpuAllocation.reservation0summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit-1summary.config.memoryAllocation.reservation0summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmvm-118vm-114vm-117vm-119vm-112vm-115vm-116vm-113resgroup-13nameResourcesparentdomain-c12resourcePoolresgroup-19resgroup-28summary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit47984summary.config.cpuAllocation.reservation47984summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit59872summary.config.memoryAllocation.reservation59872summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmresgroup-19nameDC0_C0_RP0parentresgroup-13resourcePoolsummary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit-1summary.config.cpuAllocation.reservation0summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit-1summary.config.memoryAllocation.reservation0summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmvm-27vm-24vm-20vm-23vm-26vm-22vm-21vm-25resgroup-28nameDC0_C0_RP1parentresgroup-13resourcePoolsummary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit-1summary.config.cpuAllocation.reservation0summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit-1summary.config.memoryAllocation.reservation0summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmvm-36vm-34vm-31vm-30vm-35vm-33vm-29vm-32resgroup-38nameResourcesparentdomain-c37resourcePoolresgroup-43resgroup-52summary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit47984summary.config.cpuAllocation.reservation47984summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit59872summary.config.memoryAllocation.reservation59872summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmresgroup-43nameDC0_C1_RP0parentresgroup-38resourcePoolsummary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit-1summary.config.cpuAllocation.reservation0summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit-1summary.config.memoryAllocation.reservation0summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmvm-50vm-49vm-48vm-47vm-45vm-46vm-51vm-44resgroup-52nameDC0_C1_RP1parentresgroup-38resourcePoolsummary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit-1summary.config.cpuAllocation.reservation0summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit-1summary.config.memoryAllocation.reservation0summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmvm-56vm-60vm-58vm-57vm-53vm-59vm-54vm-55resgroup-72nameResourcesparentdomain-c71resourcePoolresgroup-87resgroup-78summary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit47984summary.config.cpuAllocation.reservation47984summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit59872summary.config.memoryAllocation.reservation59872summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmresgroup-78nameDC1_C0_RP0parentresgroup-72resourcePoolsummary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit-1summary.config.cpuAllocation.reservation0summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit-1summary.config.memoryAllocation.reservation0summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmvm-82vm-83vm-80vm-86vm-79vm-81vm-85vm-84resgroup-87nameDC1_C0_RP1parentresgroup-72resourcePoolsummary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit-1summary.config.cpuAllocation.reservation0summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit-1summary.config.memoryAllocation.reservation0summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vmvm-95vm-91vm-89vm-90vm-93vm-88vm-92vm-94resgroup-97nameResourcesparentdomain-c96resourcePoolresgroup-111resgroup-102summary.config.cpuAllocation.expandableReservationtruesummary.config.cpuAllocation.limit47984summary.config.cpuAllocation.reservation47984summary.config.cpuAllocation.shares.levelnormalsummary.config.cpuAllocation.shares.shares4000summary.config.memoryAllocation.expandableReservationtruesummary.config.memoryAllocation.limit59872summary.config.memoryAllocation.reservation59872summary.config.memoryAllocation.shares.levelnormalsummary.config.memoryAllocation.shares.shares163840vm
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:22:59 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/pbm/sdk
+ body:
+ encoding: UTF-8
+ string: 5267cbf4-8a65-cf31-1624-45122758d12a<_this type="PbmProfileProfileManager">ProfileManagerSTORAGE
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:pbm/1.0
+ Cookie:
+ - vmware_soap_session=344dc9c3-dc7d-4379-8f5f-c9bd9ebbf44b; HttpOnly
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Set-Cookie:
+ - vmware_soap_session=344dc9c3-dc7d-4379-8f5f-c9bd9ebbf44b; HttpOnly
+ Content-Type:
+ - text/xml;charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ Date:
+ - Tue, 29 Jan 2019 19:23:00 GMT
+ Server:
+ - Apache
+ body:
+ encoding: UTF-8
+ string:
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:00 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/pbm/sdk
+ body:
+ encoding: UTF-8
+ string: 5267cbf4-8a65-cf31-1624-45122758d12a<_this type="PbmProfileProfileManager">ProfileManager
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:pbm/1.0
+ Cookie:
+ - vmware_soap_session=344dc9c3-dc7d-4379-8f5f-c9bd9ebbf44b; HttpOnly
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 500
+ message: Internal Server Error
+ headers:
+ Set-Cookie:
+ - vmware_soap_session=344dc9c3-dc7d-4379-8f5f-c9bd9ebbf44b; HttpOnly
+ Content-Type:
+ - text/xml;charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ Date:
+ - Tue, 29 Jan 2019 19:23:00 GMT
+ Connection:
+ - close
+ Server:
+ - Apache
+ body:
+ encoding: UTF-8
+ string: ServerFaultCodeRequest
+ missing value for required parameter 'profileIds' to method 'PbmRetrieveContent'
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:01 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ CustomizationSpecManager
+ false
+ info
+
+
+ CustomizationSpecManager
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:01 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:01 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '602'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ CustomizationSpecManagerinfo
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:01 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-100
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:01 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:01 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-100config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:01 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-101
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:01 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:01 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-101config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:01 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-14
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:01 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:01 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-14config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:02 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-16
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:02 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:02 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-16config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:02 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-17
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:02 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:02 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-17config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:02 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-18
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:02 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:02 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-18config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:02 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-39
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:02 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:02 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-39config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:03 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-40
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-40config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:03 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-41
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-41config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:03 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-42
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-42config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:03 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-73
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-73config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:03 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-75
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-75config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:04 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-76
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:03 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-76config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:04 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-77
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-77config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:04 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-98
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-98config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:04 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ propertyCollector
+
+
+ HostSystem
+ false
+ config.storageDevice.hostBusAdapter
+ config.storageDevice.scsiLun
+ config.storageDevice.scsiTopology.adapter
+
+
+ host-99
+
+
+
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - RetrievePropertiesEx
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-99config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:04 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+ SessionManager
+
+
+
+ headers:
+ User-Agent:
+ - HTTPClient/1.0 (2.8.3, ruby 2.5.3 (2018-10-18))
+ Accept:
+ - "*/*"
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Soapaction:
+ - Logout
+ Cookie:
+ - vmware_soap_session=5267cbf4-8a65-cf31-1624-45122758d12a
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:04 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '378'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:04 GMT
+recorded_with: VCR 3.0.3
diff --git a/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector/graph.yml b/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector/graph.yml
new file mode 100644
index 000000000..b68895bb2
--- /dev/null
+++ b/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector/graph.yml
@@ -0,0 +1,1342 @@
+---
+http_interactions:
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="ServiceInstance">ServiceInstance
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/6.5
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:15 GMT
+ Set-Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '3611'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ group-d1propertyCollectorViewManagerVMware vCenter ServerVMware vCenter Server 5.5.0 build-4180647 (Sim)VMware, Inc.5.5.04180647 (Sim)INTL000linux-x64vpxVirtualCenter5.5D6EB1D64-05B2-4937-BFF6-6F77C6E647B7VMware VirtualCenter Server5.0VpxSettingsUserDirectorySessionManagerAuthorizationManagerServiceMgrPerfMgrScheduledTaskManagerAlarmManagerEventManagerTaskManagerExtensionManagerCustomizationSpecManagerCustomFieldsManagerDiagMgrLicenseManagerSearchIndexFileManagerDatastoreNamespaceManagervirtualDiskManagerSnmpSystemProvCheckerCompatCheckerOvfManagerIpPoolManagerDVSManagerHostProfileManagerClusterProfileManagerMoComplianceManagerLocalizationManagerStorageResourceManagerguestOperationsManager
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:15 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="ServiceInstance">ServiceInstance
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:16 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '3611'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ group-d1propertyCollectorViewManagerVMware vCenter ServerVMware vCenter Server 5.5.0 build-4180647 (Sim)VMware, Inc.5.5.04180647 (Sim)INTL000linux-x64vpxVirtualCenter5.5D6EB1D64-05B2-4937-BFF6-6F77C6E647B7VMware VirtualCenter Server5.0VpxSettingsUserDirectorySessionManagerAuthorizationManagerServiceMgrPerfMgrScheduledTaskManagerAlarmManagerEventManagerTaskManagerExtensionManagerCustomizationSpecManagerCustomFieldsManagerDiagMgrLicenseManagerSearchIndexFileManagerDatastoreNamespaceManagervirtualDiskManagerSnmpSystemProvCheckerCompatCheckerOvfManagerIpPoolManagerDVSManagerHostProfileManagerClusterProfileManagerMoComplianceManagerLocalizationManagerStorageResourceManagerguestOperationsManager
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:16 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this
+ type="SessionManager">SessionManagerrootvmware
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:17 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '787'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ 52e2bd83-2f8f-6404-5cdd-f23a1eb59b54rootroot 2019-01-29T19:23:17.384748Z2019-01-29T19:23:17.384748Zenenfalse10.10.112.84Ruby0
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:17 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorManagedEntity0nameparentVirtualMachine0availableFieldconfig.cpuAffinity.affinitySetconfig.cpuHotAddEnabledconfig.cpuHotRemoveEnabledconfig.defaultPowerOps.standbyActionconfig.hardware.deviceconfig.hardware.numCoresPerSocketconfig.hotPlugMemoryIncrementSizeconfig.hotPlugMemoryLimitconfig.memoryHotAddEnabledconfig.versiondatastoreguest.netresourceConfig.cpuAllocation.expandableReservationresourceConfig.cpuAllocation.limitresourceConfig.cpuAllocation.reservationresourceConfig.cpuAllocation.shares.levelresourceConfig.cpuAllocation.shares.sharesresourceConfig.memoryAllocation.expandableReservationresourceConfig.memoryAllocation.limitresourceConfig.memoryAllocation.reservationresourceConfig.memoryAllocation.shares.levelresourceConfig.memoryAllocation.shares.sharesresourcePoolsnapshotsummary.vmsummary.config.annotationsummary.config.ftInfo.instanceUuidssummary.config.guestFullNamesummary.config.guestIdsummary.config.memorySizeMBsummary.config.namesummary.config.numCpusummary.config.templatesummary.config.uuidsummary.config.vmPathNamesummary.customValuesummary.guest.hostNamesummary.guest.ipAddresssummary.guest.toolsStatussummary.runtime.bootTimesummary.runtime.connectionStatesummary.runtime.hostsummary.runtime.powerStatesummary.storage.unsharedsummary.storage.committedComputeResource0hostresourcePoolClusterComputeResource0configuration.dasConfig.admissionControlPolicyconfiguration.dasConfig.admissionControlEnabledconfiguration.dasConfig.enabledconfiguration.dasConfig.failoverLevelconfiguration.drsConfig.defaultVmBehaviorconfiguration.drsConfig.enabledconfiguration.drsConfig.vmotionRatesummary.effectiveCpusummary.effectiveMemoryhostresourcePoolResourcePool0resourcePoolsummary.config.cpuAllocation.expandableReservationsummary.config.cpuAllocation.limitsummary.config.cpuAllocation.reservationsummary.config.cpuAllocation.shares.levelsummary.config.cpuAllocation.shares.sharessummary.config.memoryAllocation.expandableReservationsummary.config.memoryAllocation.limitsummary.config.memoryAllocation.reservationsummary.config.memoryAllocation.shares.levelsummary.config.memoryAllocation.shares.sharesvmFolder0Datacenter0datastoreFolderhostFoldernetworkFoldervmFolderHostSystem0config.adminDisabledconfig.consoleReservation.serviceConsoleReservedconfig.hyperThread.activeconfig.network.consoleVnicconfig.network.dnsConfig.domainNameconfig.network.dnsConfig.hostNameconfig.network.ipRouteConfig.defaultGatewayconfig.network.pnicconfig.network.portgroupconfig.network.vnicconfig.network.vswitchconfig.service.servicedatastorehardware.systemInfo.otherIdentifyingInfosummary.hostsummary.config.namesummary.config.product.buildsummary.config.product.namesummary.config.product.osTypesummary.config.product.vendorsummary.config.product.versionsummary.config.vmotionEnabledsummary.hardware.cpuMhzsummary.hardware.cpuModelsummary.hardware.memorySizesummary.hardware.modelsummary.hardware.numCpuCoressummary.hardware.numCpuPkgssummary.hardware.numNicssummary.hardware.vendorsummary.quickStats.overallCpuUsagesummary.quickStats.overallMemoryUsagesummary.runtime.connectionStatesummary.runtime.inMaintenanceModeDatastore0infohostcapability.directoryHierarchySupportedcapability.perFileThinProvisioningSupportedcapability.rawDiskMappingsSupportedsummary.accessiblesummary.capacitysummary.datastoresummary.freeSpacesummary.maintenanceModesummary.multipleHostAccesssummary.namesummary.typesummary.uncommittedsummary.urlStoragePod0summary.capacitysummary.freeSpacesummary.nameDistributedVirtualPortgroup0summary.nameconfig.keyconfig.defaultPortConfigconfig.distributedVirtualSwitchconfig.namehosttagDistributedVirtualSwitch0config.uplinkPortgroupconfig.defaultPortConfigconfig.numPortssummary.namesummary.uuidsummary.hostsummary.hostMembergroup-d1tsFolderFolderchildEntitytsFoldertsDcToDsFoldertsDcToHostFoldertsDcToNetworkFoldertsDcToVmFoldertsCrToHosttsCrToRptsRpToRptsRpToVmtsDcToDsFolderDatacenterdatastoreFoldertsFoldertsDcToHostFolderDatacenterhostFoldertsFoldertsDcToNetworkFolderDatacenternetworkFoldertsFoldertsDcToVmFolderDatacentervmFoldertsFoldertsCrToHostComputeResourcehosttsCrToRpComputeResourceresourcePooltsRpToRptsRpToRpResourcePoolresourcePooltsRpToRptsRpToVmResourcePoolvm1
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:17 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '516'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ session[2d108880-9d2a-28f6-2f70-d203826c600e]52845591-cbd7-da0b-2869-2e856f0fccab
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:17 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollector60
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:18 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ 0_1session[2d108880-9d2a-28f6-2f70-d203826c600e]52845591-cbd7-da0b-2869-2e856f0fccabentergroup-d1nameassignDatacentersparentassignenterdatacenter-2datastoreFolderassigngroup-s5hostFolderassigngroup-h4nameassignDC0networkFolderassigngroup-n6parentassigngroup-d1vmFolderassigngroup-v3enterdatacenter-61datastoreFolderassigngroup-s64hostFolderassigngroup-h63nameassignDC1networkFolderassigngroup-n65parentassigngroup-d1vmFolderassigngroup-v62entergroup-v3nameassignvmparentassigndatacenter-2entergroup-n6nameassignnetworkparentassigndatacenter-2entergroup-h4nameassignhostparentassigndatacenter-2entergroup-s5nameassigndatastoreparentassigndatacenter-2entergroup-v62nameassignvmparentassigndatacenter-61entergroup-n65nameassignnetworkparentassigndatacenter-61entergroup-h63nameassignhostparentassigndatacenter-61entergroup-s64nameassigndatastoreparentassigndatacenter-61entervm-48availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM4/DC0_C1_RP0_VM4.vmdkdatastore-15persistentfalsefalsefalse52a6f7ed-b3a9-c171-6799-16ac3bdc1a02100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:fe:39falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2900:50:56:8f:fe:39true4000172.16.1.2924dhcppreferrednameassignDC0_C1_RP0_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-43snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fc00a-e6da-98ca-ec29-4e88b6633a3csummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM4/DC0_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:30.807141Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-39summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-48entervm-47availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM3/DC0_C1_RP0_VM3.vmdkdatastore-15persistentfalsefalsefalse52c5554e-c009-6e2e-a5ac-8e5998ab3a11100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:bf:40falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2800:50:56:8f:bf:40true4000172.16.1.2824dhcppreferrednameassignDC0_C1_RP0_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-43snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fa061-60b4-8dd4-980a-b4870aea9ae7summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM3/DC0_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:30.779044Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-42summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-47entervm-46availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM2/DC0_C1_RP0_VM2.vmdkdatastore-15persistentfalsefalsefalse527f303f-cbca-e411-efc6-5aa90322b14e100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:29:ccfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2700:50:56:8f:29:cctrue4000172.16.1.2724dhcppreferrednameassignDC0_C1_RP0_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-43snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420febfc-4cd2-2743-cec8-4b238e93a4d7summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM2/DC0_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:30.745225Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-41summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-46entervm-45availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM1/DC0_C1_RP0_VM1.vmdkdatastore-15persistentfalsefalsefalse5236066f-4a98-9d8f-5ccf-50f575d36703100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:23:29falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2600:50:56:8f:23:29true4000172.16.1.2624dhcppreferrednameassignDC0_C1_RP0_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-43snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f9aa1-3136-a59c-529c-092556dff375summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM1/DC0_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:30.723215Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-40summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-45entervm-44availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM0/DC0_C1_RP0_VM0.vmdkdatastore-15persistentfalsefalsefalse52c2ec22-4070-00df-3646-bd8e2be916eb100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:30:03falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2500:50:56:8f:30:03true4000172.16.1.2524dhcppreferrednameassignDC0_C1_RP0_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-43snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f6f3b-e8b6-e452-5724-75d3239ff0ccsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM0/DC0_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:30.699835Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-39summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-44entervm-24availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM4/DC0_C0_RP0_VM4.vmdkdatastore-15persistentfalsefalsefalse52e27a44-e3d4-3dcb-7ea0-10bde9ce19e0100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:d2:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.900:50:56:8f:d2:c7true4000172.16.1.924dhcppreferrednameassignDC0_C0_RP0_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f7788-af96-d344-d3a5-9308f609ba86summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM4/DC0_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:24.17398Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-24entervm-23availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM3/DC0_C0_RP0_VM3.vmdkdatastore-15persistentfalsefalsefalse525e0b2e-ca4d-3f30-e85b-4c838bd0c38e100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:3a:68falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.800:50:56:8f:3a:68true4000172.16.1.824dhcppreferrednameassignDC0_C0_RP0_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f94d0-335b-36f5-7411-d6663b5e03aesummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM3/DC0_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:24.148893Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-23entervm-26availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM6/DC0_C0_RP0_VM6.vmdkdatastore-15persistentfalsefalsefalse52410edc-0459-918a-5c33-508eda915f62100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruefalse1003Assigned00:50:56:8f:1c:73falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1100:50:56:8f:1c:73false4000172.16.1.1124dhcppreferrednameassignDC0_C0_RP0_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f633c-1d67-a6de-ad6a-2dac060242a2summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM6/DC0_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-26entervm-25availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM5/DC0_C0_RP0_VM5.vmdkdatastore-15persistentfalsefalsefalse52992269-d993-4f57-d8b4-791a7e81a8c1100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:91:5afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1000:50:56:8f:91:5atrue4000172.16.1.1024dhcppreferrednameassignDC0_C0_RP0_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f5b31-cfe0-a416-29b3-632c3e11fd18summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM5/DC0_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:24.206061Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-25entervm-20availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmdkdatastore-15persistentfalsefalsefalse526e271a-b17b-9b17-f94d-cd4e04ba8185100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:98:37falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.500:50:56:8f:98:37true4000172.16.1.524dhcppreferrednameassignDC0_C0_RP0_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f272e-e82c-e3f8-4647-9bee9b603157summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:24.042777Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-20entervm-29availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM0/DC0_C0_RP1_VM0.vmdkdatastore-15persistentfalsefalsefalse52d66afe-1766-7985-ac3f-a2512382fc51100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:43:8ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1300:50:56:8f:43:8ftrue4000172.16.1.1324dhcppreferrednameassignDC0_C0_RP1_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420feed9-3435-dbf1-d197-ea691a2702cbsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM0/DC0_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:25.610787Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-29entervm-22availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM2/DC0_C0_RP0_VM2.vmdkdatastore-15persistentfalsefalsefalse52633e15-337d-87e1-f385-5a284f6cc141100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:a2:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.700:50:56:8f:a2:a8true4000172.16.1.724dhcppreferrednameassignDC0_C0_RP0_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f9192-36e4-ab3f-57ba-d19a7611f20bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM2/DC0_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:24.119365Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-22entervm-30availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM1/DC0_C0_RP1_VM1.vmdkdatastore-15persistentfalsefalsefalse529a58bb-1083-dc86-adaa-a9e5d9ae8d00100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:9e:70falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1400:50:56:8f:9e:70true4000172.16.1.1424dhcppreferrednameassignDC0_C0_RP1_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f44b5-2f15-1804-5242-8ad64cfee8d8summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM1/DC0_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:25.628823Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-30entervm-57availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM4/DC0_C1_RP1_VM4.vmdkdatastore-15persistentfalsefalsefalse5284f451-2aee-1ef0-27d6-48320e28949c100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:18:93falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3700:50:56:8f:18:93true4000172.16.1.3724dhcppreferrednameassignDC0_C1_RP1_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-52snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fdb1a-2ca7-7df1-2311-4bf94a5f03c7summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM4/DC0_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:32.038281Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-39summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-57entervm-21availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmdkdatastore-15persistentfalsefalsefalse5262cf65-6564-f5b9-9858-20dfcf4404a8100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:56:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.600:50:56:8f:56:8dtrue4000172.16.1.624dhcppreferrednameassignDC0_C0_RP0_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fe4bd-12b5-222d-554d-44ba94fb4401summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:24.082009Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-21entervm-58availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM5/DC0_C1_RP1_VM5.vmdkdatastore-15persistentfalsefalsefalse520ad958-e578-b8cf-69ac-3e4f67e18cda100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:6f:8cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3800:50:56:8f:6f:8ctrue4000172.16.1.3824dhcppreferrednameassignDC0_C1_RP1_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-52snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f87b4-ccbd-2cb4-e336-b7ff2e49c5b8summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM5/DC0_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:32.074121Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-40summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-58entervm-59availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM6/DC0_C1_RP1_VM6.vmdkdatastore-15persistentfalsefalsefalse52846b20-6299-3f6d-3ce4-1ca1f692a041100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruefalse1003Assigned00:50:56:8f:2d:adfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3900:50:56:8f:2d:adfalse4000172.16.1.3924dhcppreferrednameassignDC0_C1_RP1_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-52snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f81fc-19fe-1a2e-0613-5eecf3772163summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM6/DC0_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-41summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-59entervm-60availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM7/DC0_C1_RP1_VM7.vmdkdatastore-15persistentfalsefalsefalse521e3b0d-e9ea-885d-7d0c-d44554c1a3dd100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruefalse1003Assigned00:50:56:8f:69:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4000:50:56:8f:69:5dfalse4000172.16.1.4024dhcppreferrednameassignDC0_C1_RP1_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-52snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fceee-94f5-8dc8-eb2e-a12514524f18summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM7/DC0_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-42summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-60entervm-27availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM7/DC0_C0_RP0_VM7.vmdkdatastore-15persistentfalsefalsefalse52651c8d-c227-4001-276f-f81c510a69fb100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruefalse1003Assigned00:50:56:8f:c3:86falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1200:50:56:8f:c3:86false4000172.16.1.1224dhcppreferrednameassignDC0_C0_RP0_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f1231-12cb-05bf-5a18-9f685d74fe62summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM7/DC0_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-27entervm-53availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM0/DC0_C1_RP1_VM0.vmdkdatastore-15persistentfalsefalsefalse527978c8-7989-450f-615c-34bce4938453100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:01:2afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3300:50:56:8f:01:2atrue4000172.16.1.3324dhcppreferrednameassignDC0_C1_RP1_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-52snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fe982-e1df-cffd-3609-db3b8efe91e2summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM0/DC0_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:31.94306Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-39summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-53entervm-31availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM2/DC0_C0_RP1_VM2.vmdkdatastore-15persistentfalsefalsefalse52b7670a-617f-57b9-4207-43f879b7a8de100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:da:50falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1500:50:56:8f:da:50true4000172.16.1.1524dhcppreferrednameassignDC0_C0_RP1_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f8f04-00c0-f18a-2877-80d0c4d53226summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM2/DC0_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:25.650527Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-31entervm-54availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM1/DC0_C1_RP1_VM1.vmdkdatastore-15persistentfalsefalsefalse52ae4a5a-50ac-25e1-087c-4bbc76f3fe04100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:69:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3400:50:56:8f:69:5btrue4000172.16.1.3424dhcppreferrednameassignDC0_C1_RP1_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-52snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f1dad-9a2d-2740-0b1c-12df72a99203summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM1/DC0_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:31.957321Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-40summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-54entervm-32availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM3/DC0_C0_RP1_VM3.vmdkdatastore-15persistentfalsefalsefalse52b03eaf-54b9-3405-4ff4-f0660121fa1c100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:b5:88falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1600:50:56:8f:b5:88true4000172.16.1.1624dhcppreferrednameassignDC0_C0_RP1_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f6387-b060-9131-d674-3b0361ad547csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM3/DC0_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:25.669515Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-32entervm-55availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM2/DC0_C1_RP1_VM2.vmdkdatastore-15persistentfalsefalsefalse521279af-928e-7e89-8447-6a19bae2a5fb100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:03:66falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3500:50:56:8f:03:66true4000172.16.1.3524dhcppreferrednameassignDC0_C1_RP1_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-52snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fe19d-b481-38bc-161b-ae9cc58f56fbsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM2/DC0_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:31.991465Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-41summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-55entervm-33availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM4/DC0_C0_RP1_VM4.vmdkdatastore-15persistentfalsefalsefalse52f62c62-579d-e1b1-eb92-45601c2be853100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruetrue1003Assigned00:50:56:8f:9b:fefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1700:50:56:8f:9b:fetrue4000172.16.1.1724dhcppreferrednameassignDC0_C0_RP1_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f6fa7-56c0-4e21-7657-4765a48139f6summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM4/DC0_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:25.684823Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-33entervm-56availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM3/DC0_C1_RP1_VM3.vmdkdatastore-15persistentfalsefalsefalse521911e3-390b-939b-777a-eee6d85f3a0d100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:20:39falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3600:50:56:8f:20:39true4000172.16.1.3624dhcppreferrednameassignDC0_C1_RP1_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-52snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fab1b-414d-7866-ddb9-98989762cdd2summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM3/DC0_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:32.009196Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-42summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-56entervm-34availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM5/DC0_C0_RP1_VM5.vmdkdatastore-15persistentfalsefalsefalse52f314db-2fae-c6bf-9295-55c71bde0dea100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:15:05falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1800:50:56:8f:15:05true4000172.16.1.1824dhcppreferrednameassignDC0_C0_RP1_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fe34b-9df7-621a-b361-804d58a564f1summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM5/DC0_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:25.704358Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-34entervm-35availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM6/DC0_C0_RP1_VM6.vmdkdatastore-15persistentfalsefalsefalse52472dde-cc84-443c-12fe-909df602c927100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruefalse1003Assigned00:50:56:8f:ed:81falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1900:50:56:8f:ed:81false4000172.16.1.1924dhcppreferrednameassignDC0_C0_RP1_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f8a6a-f8a7-135f-48a5-5168b83597c3summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM6/DC0_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-35entervm-36availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM7/DC0_C0_RP1_VM7.vmdkdatastore-15persistentfalsefalsefalse520e03b9-ed26-0cb0-bbb5-395e107da048100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruefalse1003Assigned00:50:56:8f:cd:6dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2000:50:56:8f:cd:6dfalse4000172.16.1.2024dhcppreferrednameassignDC0_C0_RP1_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fe995-1921-a28a-a6b0-b412efedbcedsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM7/DC0_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-36entervm-51availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM7/DC0_C1_RP0_VM7.vmdkdatastore-15persistentfalsefalsefalse522656ff-5e94-fe08-f745-198ae179088b100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruefalse1003Assigned00:50:56:8f:52:b9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3200:50:56:8f:52:b9false4000172.16.1.3224dhcppreferrednameassignDC0_C1_RP0_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-43snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f9698-2681-bf24-30b6-1aa8589a652dsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM7/DC0_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-42summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-51entervm-50availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM6/DC0_C1_RP0_VM6.vmdkdatastore-15persistentfalsefalsefalse52e5f04f-7e80-199f-f4a4-3caf7265fef2100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-10truetruefalse1003Assigned00:50:56:8f:2f:91falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3100:50:56:8f:2f:91false4000172.16.1.3124dhcppreferrednameassignDC0_C1_RP0_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-43snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f01b5-434f-5d2f-73be-ca68c062402dsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM6/DC0_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-41summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-50entervm-49availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM5/DC0_C1_RP0_VM5.vmdkdatastore-15persistentfalsefalsefalse5271c192-5a85-6376-161a-f5ddee23e672100005242884000DVSwitch: c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56c0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56dvportgroup-11truetruetrue1003Assigned00:50:56:8f:fc:8cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3000:50:56:8f:fc:8ctrue4000172.16.1.3024dhcppreferrednameassignDC0_C1_RP0_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-43snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f3804-946e-8266-ee6c-27c3b0833181summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM5/DC0_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:30.825451Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-40summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-49enterdvportgroup-9config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-9config.nameassignDC0_DVS-DVUplinks-8hostassignhost-18host-17host-14host-16host-40host-41host-39host-42nameassignDC0_DVS-DVUplinks-8parentassigngroup-n6summary.nameassignDC0_DVS-DVUplinks-8tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-11config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-11config.nameassignDC0_DVPG1hostassignhost-18host-17host-14host-16host-40host-41host-39host-42nameassignDC0_DVPG1parentassigngroup-n6summary.nameassignDC0_DVPG1tagassignenterdvportgroup-10config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-10config.nameassignDC0_DVPG0hostassignhost-18host-17host-14host-16host-40host-41host-39host-42nameassignDC0_DVPG0parentassigngroup-n6summary.nameassignDC0_DVPG0tagassignenterdvs-8config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-9nameassignDC0_DVSparentassigngroup-n6summary.hostassignsummary.hostMemberassignhost-14host-16host-17host-18host-39host-40host-41host-42summary.nameassignDC0_DVSsummary.uuidassignc0 76 0f 50 67 1d 64 26-6b fc bf 37 08 ea f0 56enternetwork-7nameassignVM Networkparentassigngroup-n6enterdomain-c37configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-39host-40host-41host-42nameassignDC0_C1parentassigngroup-h4resourcePoolassignresgroup-38summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c12configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-14host-16host-17host-18nameassignDC0_C0parentassigngroup-h4resourcePoolassignresgroup-13summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-15capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-18/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-17/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-16/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-14/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-40/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-41/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-39/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-42/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z00VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s5summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-15summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/entervm-95availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM7/DC1_C0_RP1_VM7.vmdkdatastore-74persistentfalsefalsefalse52633f28-919e-6f1c-63ee-a9d8810d070a100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruefalse1003Assigned00:50:56:8f:f0:ccfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.6000:50:56:8f:f0:ccfalse4000172.16.1.6024dhcppreferrednameassignDC1_C0_RP1_VM7parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-87snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fb639-c2cd-7a23-f0f1-8cce5b51b123summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM7/DC1_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-77summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-95entervm-110availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM7/DC1_C1_RP0_VM7.vmdkdatastore-74persistentfalsefalsefalse526390e5-c41f-a811-eb95-e36496f6b33c100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruefalse1003Assigned00:50:56:8f:6b:9bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7200:50:56:8f:6b:9bfalse4000172.16.1.7224dhcppreferrednameassignDC1_C1_RP0_VM7parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-102snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f871b-c40d-d31b-3f1e-e530fe328d1asummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM7/DC1_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-101summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-110entervm-109availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM6/DC1_C1_RP0_VM6.vmdkdatastore-74persistentfalsefalsefalse524d0838-7d53-db33-a59d-f0ef792358f8100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruefalse1003Assigned00:50:56:8f:ef:a4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7100:50:56:8f:ef:a4false4000172.16.1.7124dhcppreferrednameassignDC1_C1_RP0_VM6parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-102snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fa952-1560-06f5-1b2f-f6b789bf7436summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM6/DC1_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-100summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-109entervm-91availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM3/DC1_C0_RP1_VM3.vmdkdatastore-74persistentfalsefalsefalse52029b21-19cc-843f-3d37-f60332228da5100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:40:fefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5600:50:56:8f:40:fetrue4000172.16.1.5624dhcppreferrednameassignDC1_C0_RP1_VM3parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-87snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f2d73-950b-0d0d-3c08-e914dd505c92summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM3/DC1_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:38.354434Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-77summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-91entervm-92availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM4/DC1_C0_RP1_VM4.vmdkdatastore-74persistentfalsefalsefalse52aaf687-7508-5363-58e9-238ba047a083100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:14:b4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5700:50:56:8f:14:b4true4000172.16.1.5724dhcppreferrednameassignDC1_C0_RP1_VM4parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-87snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fc024-f5f2-4f7c-5163-a5c978e5eec5summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM4/DC1_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:38.373051Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-73summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-92entervm-104availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM1/DC1_C1_RP0_VM1.vmdkdatastore-74persistentfalsefalsefalse527fa7e7-2174-6bce-68a2-d00d35b837b4100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:45:e6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.6600:50:56:8f:45:e6true4000172.16.1.6624dhcppreferrednameassignDC1_C1_RP0_VM1parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-102snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f8f1d-afde-3c6f-36d6-ab3fb746caf9summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM1/DC1_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:43.322312Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-99summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-104entervm-93availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM5/DC1_C0_RP1_VM5.vmdkdatastore-74persistentfalsefalsefalse52b55eef-4844-2807-f04c-defe17e51d31100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:df:82falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5800:50:56:8f:df:82true4000172.16.1.5824dhcppreferrednameassignDC1_C0_RP1_VM5parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-87snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f9549-2003-a44e-7669-ad01fcf5ae06summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM5/DC1_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:38.396283Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-75summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-93entervm-103availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM0/DC1_C1_RP0_VM0.vmdkdatastore-74persistentfalsefalsefalse524b7c3e-80fe-fe75-69f7-8ce04a217af9100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:00:ddfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.6500:50:56:8f:00:ddtrue4000172.16.1.6524dhcppreferrednameassignDC1_C1_RP0_VM0parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-102snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f48db-966f-a988-7ce7-19f4d4fdeb3fsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM0/DC1_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:43.304847Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-98summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-103entervm-94availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM6/DC1_C0_RP1_VM6.vmdkdatastore-74persistentfalsefalsefalse52692549-c597-c131-9e0a-1cb1e24d0579100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruefalse1003Assigned00:50:56:8f:e9:b8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5900:50:56:8f:e9:b8false4000172.16.1.5924dhcppreferrednameassignDC1_C0_RP1_VM6parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-87snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f5496-cb0b-ac48-7098-73d01fdeacabsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM6/DC1_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-76summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-94entervm-88availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM0/DC1_C0_RP1_VM0.vmdkdatastore-74persistentfalsefalsefalse52e15874-7d21-583a-1bd9-f2fe20841692100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:95:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5300:50:56:8f:95:ectrue4000172.16.1.5324dhcppreferrednameassignDC1_C0_RP1_VM0parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-87snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f7b95-23aa-3df5-64ce-5f45d8dafcefsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM0/DC1_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:38.285159Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-73summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-88entervm-108availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM5/DC1_C1_RP0_VM5.vmdkdatastore-74persistentfalsefalsefalse52a81692-ab54-d012-ea21-7246248fd9c7100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:c5:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7000:50:56:8f:c5:7btrue4000172.16.1.7024dhcppreferrednameassignDC1_C1_RP0_VM5parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-102snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f2605-91f4-f178-9452-b32590c0d635summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM5/DC1_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:43.396778Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-99summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-108entervm-89availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM1/DC1_C0_RP1_VM1.vmdkdatastore-74persistentfalsefalsefalse52704f6d-1420-993c-948b-9fcb084516a5100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:5c:fefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5400:50:56:8f:5c:fetrue4000172.16.1.5424dhcppreferrednameassignDC1_C0_RP1_VM1parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-87snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f7a20-f940-82bb-1ff6-bfd42a8c5c04summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM1/DC1_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:38.317872Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-75summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-89entervm-107availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM4/DC1_C1_RP0_VM4.vmdkdatastore-74persistentfalsefalsefalse527db23b-fbdf-389e-e599-86dc8f2136ee100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:e8:c3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.6900:50:56:8f:e8:c3true4000172.16.1.6924dhcppreferrednameassignDC1_C1_RP0_VM4parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-102snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f40d6-29c2-a569-9299-457167e88bb0summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM4/DC1_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:43.382367Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-98summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-107entervm-80availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmdkdatastore-74persistentfalsefalsefalse528cbeba-e986-d538-97fe-d74a09971dc4100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:1d:79falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.4600:50:56:8f:1d:79true4000172.16.1.4624dhcppreferrednameassignDC1_C0_RP0_VM1parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-78snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fa377-d067-8582-2a9f-695a643780c9summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:36.886096Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-75summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-80entervm-90availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM2/DC1_C0_RP1_VM2.vmdkdatastore-74persistentfalsefalsefalse524c7da2-ca63-7c54-3b4a-a821aa2d191c100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:c0:9efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5500:50:56:8f:c0:9etrue4000172.16.1.5524dhcppreferrednameassignDC1_C0_RP1_VM2parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-87snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f4892-8451-7048-4e7b-7fbd3857362dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM2/DC1_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:38.336979Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-76summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-90entervm-106availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM3/DC1_C1_RP0_VM3.vmdkdatastore-74persistentfalsefalsefalse52277fd8-7f73-c9e7-4ad4-be999a5b1f57100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:3f:72falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.6800:50:56:8f:3f:72true4000172.16.1.6824dhcppreferrednameassignDC1_C1_RP0_VM3parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-102snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f6ece-c4a2-12a9-08c7-07eec4db479asummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM3/DC1_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:43.358317Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-101summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-106entervm-79availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmdkdatastore-74persistentfalsefalsefalse5202711b-9fd7-6f7d-816c-8c258b1ea83a100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:00:7cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.4500:50:56:8f:00:7ctrue4000172.16.1.4524dhcppreferrednameassignDC1_C0_RP0_VM0parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-78snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f350d-0b9b-7a58-319a-c3f01a975903summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:36.858698Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-73summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-79entervm-118availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM6/DC1_C1_RP1_VM6.vmdkdatastore-74persistentfalsefalsefalse52896982-3719-17e6-bb31-f29efa3dc7b9100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruefalse1003Assigned00:50:56:8f:5a:00falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7900:50:56:8f:5a:00false4000172.16.1.7924dhcppreferrednameassignDC1_C1_RP1_VM6parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-111snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f62e8-daf7-345e-9634-2e7f9d776750summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM6/DC1_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-100summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-118entervm-82availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM3/DC1_C0_RP0_VM3.vmdkdatastore-74persistentfalsefalsefalse522c7741-dbec-2727-d75e-f5c324b4ff16100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:28:28falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.4800:50:56:8f:28:28true4000172.16.1.4824dhcppreferrednameassignDC1_C0_RP0_VM3parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-78snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fbacf-98b4-cd0e-654a-4c199fefffaasummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM3/DC1_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:36.938775Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-77summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-82entervm-105availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM2/DC1_C1_RP0_VM2.vmdkdatastore-74persistentfalsefalsefalse524cdc39-95c8-5923-f4ce-42f49d8eb636100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:df:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.6700:50:56:8f:df:59true4000172.16.1.6724dhcppreferrednameassignDC1_C1_RP0_VM2parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-102snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f0cee-9084-47e4-7a84-741372941822summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM2/DC1_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:43.337707Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-100summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-105entervm-119availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM7/DC1_C1_RP1_VM7.vmdkdatastore-74persistentfalsefalsefalse529fedce-56d3-06ae-2b00-246659be5451100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruefalse1003Assigned00:50:56:8f:7c:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.8000:50:56:8f:7c:a1false4000172.16.1.8024dhcppreferrednameassignDC1_C1_RP1_VM7parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-111snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f5873-5ed4-73db-6921-bdb89603cd98summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM7/DC1_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-101summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-119entervm-81availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM2/DC1_C0_RP0_VM2.vmdkdatastore-74persistentfalsefalsefalse52c9d5eb-a878-e5ac-5aac-1d7e742b8f00100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:48:20falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.4700:50:56:8f:48:20true4000172.16.1.4724dhcppreferrednameassignDC1_C0_RP0_VM2parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-78snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f0cde-40f5-41c4-fbfd-f0b7af0a045bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM2/DC1_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:36.906962Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-76summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-81entervm-84availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM5/DC1_C0_RP0_VM5.vmdkdatastore-74persistentfalsefalsefalse52683803-7ae5-1c46-5860-e8eb05c4c7fb100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:d4:ddfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5000:50:56:8f:d4:ddtrue4000172.16.1.5024dhcppreferrednameassignDC1_C0_RP0_VM5parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-78snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fcbf0-1fd5-0a71-bdc0-fdd9c42fd960summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM5/DC1_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:36.976372Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-75summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-84entervm-83availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM4/DC1_C0_RP0_VM4.vmdkdatastore-74persistentfalsefalsefalse52009393-1db0-22f5-2dca-8da71c9487b6100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:91:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.4900:50:56:8f:91:0btrue4000172.16.1.4924dhcppreferrednameassignDC1_C0_RP0_VM4parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-78snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f2500-7e77-bed7-4638-11509976fff3summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM4/DC1_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:36.95947Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-73summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-83entervm-112availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM0/DC1_C1_RP1_VM0.vmdkdatastore-74persistentfalsefalsefalse5286b84f-9a53-8f41-d80e-92c5e5862e21100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:23:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7300:50:56:8f:23:6atrue4000172.16.1.7324dhcppreferrednameassignDC1_C1_RP1_VM0parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-111snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420facc4-151c-b938-ff5e-4cadc5a20621summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM0/DC1_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:44.634603Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-98summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-112entervm-113availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM1/DC1_C1_RP1_VM1.vmdkdatastore-74persistentfalsefalsefalse522d42f2-c45c-719c-44a3-6ac1b37bf3de100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:73:27falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7400:50:56:8f:73:27true4000172.16.1.7424dhcppreferrednameassignDC1_C1_RP1_VM1parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-111snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fb2b8-7ce1-0cbc-9bab-46b2a3198074summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM1/DC1_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:44.66324Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-99summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-113entervm-116availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM4/DC1_C1_RP1_VM4.vmdkdatastore-74persistentfalsefalsefalse52bc8cdd-8bb8-dc23-5576-05e287f6f7db100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:e4:78falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7700:50:56:8f:e4:78true4000172.16.1.7724dhcppreferrednameassignDC1_C1_RP1_VM4parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-111snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fa02a-0745-d887-6e39-979a487a9a3csummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM4/DC1_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:44.730675Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-98summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-116entervm-86availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM7/DC1_C0_RP0_VM7.vmdkdatastore-74persistentfalsefalsefalse529d4fcf-9106-af1d-bf56-92fdc17d1bc1100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruefalse1003Assigned00:50:56:8f:48:2afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5200:50:56:8f:48:2afalse4000172.16.1.5224dhcppreferrednameassignDC1_C0_RP0_VM7parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-78snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f1c80-6270-5a5e-114e-77de606efc94summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM7/DC1_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-77summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-86entervm-117availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM5/DC1_C1_RP1_VM5.vmdkdatastore-74persistentfalsefalsefalse5271528b-5e27-26ed-1b52-2ff51cf2f689100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:39:04falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7800:50:56:8f:39:04true4000172.16.1.7824dhcppreferrednameassignDC1_C1_RP1_VM5parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-111snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f8d20-575c-08c0-2891-1a9cdb3e9827summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM5/DC1_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:44.751271Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-99summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-117entervm-114availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM2/DC1_C1_RP1_VM2.vmdkdatastore-74persistentfalsefalsefalse520272c2-a15c-da01-9f53-abd13c019eaa100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruetrue1003Assigned00:50:56:8f:ae:f5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7500:50:56:8f:ae:f5true4000172.16.1.7524dhcppreferrednameassignDC1_C1_RP1_VM2parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-111snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f9acd-0445-95af-e048-1a54948bd463summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM2/DC1_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:44.690386Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-100summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-114entervm-85availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM6/DC1_C0_RP0_VM6.vmdkdatastore-74persistentfalsefalsefalse524cf7dd-aae2-ccf6-4600-16fa47e55255100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-69truetruefalse1003Assigned00:50:56:8f:2f:79falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.5100:50:56:8f:2f:79false4000172.16.1.5124dhcppreferrednameassignDC1_C0_RP0_VM6parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-78snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420f5d6f-221e-a8eb-339e-4b58b7adb5c6summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM6/DC1_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignsummary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassignsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-76summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-85entervm-115availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM3/DC1_C1_RP1_VM3.vmdkdatastore-74persistentfalsefalsefalse52cc9a07-fb96-3834-5909-2adfb8a6c032100005242884000DVSwitch: d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39d8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39dvportgroup-70truetruetrue1003Assigned00:50:56:8f:23:b0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-74guest.netassign172.16.1.7600:50:56:8f:23:b0true4000172.16.1.7624dhcppreferrednameassignDC1_C1_RP1_VM3parentassigngroup-v62resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-111snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign420fd043-7f29-0841-00c4-420f0b303912summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM3/DC1_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2019-01-29T19:21:44.714348Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-101summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-115enterdvportgroup-68config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-67config.keyassigndvportgroup-68config.nameassignDC1_DVS-DVUplinks-67hostassignhost-73host-76host-99host-75host-100host-98host-101host-77nameassignDC1_DVS-DVUplinks-67parentassigngroup-n65summary.nameassignDC1_DVS-DVUplinks-67tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-70config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-67config.keyassigndvportgroup-70config.nameassignDC1_DVPG1hostassignhost-73host-76host-99host-75host-100host-98host-101host-77nameassignDC1_DVPG1parentassigngroup-n65summary.nameassignDC1_DVPG1tagassignenterdvportgroup-69config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-67config.keyassigndvportgroup-69config.nameassignDC1_DVPG0hostassignhost-73host-76host-99host-75host-100host-98host-101host-77nameassignDC1_DVPG0parentassigngroup-n65summary.nameassignDC1_DVPG0tagassignenterdvs-67config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-68nameassignDC1_DVSparentassigngroup-n65summary.hostassignsummary.hostMemberassignhost-73host-75host-76host-77host-98host-99host-100host-101summary.nameassignDC1_DVSsummary.uuidassignd8 c8 0f 50 27 52 03 a7-73 2f 71 b3 05 62 2b 39enternetwork-66nameassignVM Networkparentassigngroup-n65enterdomain-c96configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-100host-101host-98host-99nameassignDC1_C1parentassigngroup-h63resourcePoolassignresgroup-97summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c71configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-73host-75host-76host-77nameassignDC1_C0parentassigngroup-h63resourcePoolassignresgroup-72summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-74capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-73/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-76/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-99/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-75/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-100/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-98/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-101/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-77/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z00VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s64summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-74summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/enterresgroup-38nameassignResourcesparentassigndomain-c37resourcePoolassignresgroup-43resgroup-52summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-42config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:08Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H3parentassigndomain-c37summary.config.nameassignDC0_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-42summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-41config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:07Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H2parentassigndomain-c37summary.config.nameassignDC0_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-41summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-40config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:06Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H1parentassigndomain-c37summary.config.nameassignDC0_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-40summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-39config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:05Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H0parentassigndomain-c37summary.config.nameassignDC0_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-39summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-13nameassignResourcesparentassigndomain-c12resourcePoolassignresgroup-19resgroup-28summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-18config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:04Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H3parentassigndomain-c12summary.config.nameassignDC0_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-18summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-17config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:03Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H2parentassigndomain-c12summary.config.nameassignDC0_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-17summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-16config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:02Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H1parentassigndomain-c12summary.config.nameassignDC0_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-16summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalsetrue
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:19 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollector0_160
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:20 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ 1session[2d108880-9d2a-28f6-2f70-d203826c600e]52845591-cbd7-da0b-2869-2e856f0fccabenterhost-14config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:01Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H0parentassigndomain-c12summary.config.nameassignDC0_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-14summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-97nameassignResourcesparentassigndomain-c96resourcePoolassignresgroup-111resgroup-102summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-99config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0EManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-74hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H1parentassigndomain-c96summary.config.nameassignDC1_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-99summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-98config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0DManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-74hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H0parentassigndomain-c96summary.config.nameassignDC1_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-98summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-101config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:10Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-74hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H3parentassigndomain-c96summary.config.nameassignDC1_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-101summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-100config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0FManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-74hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H2parentassigndomain-c96summary.config.nameassignDC1_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-100summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-72nameassignResourcesparentassigndomain-c71resourcePoolassignresgroup-87resgroup-78summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-77config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0CManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-74hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H3parentassigndomain-c71summary.config.nameassignDC1_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-77summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-76config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0BManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-74hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H2parentassigndomain-c71summary.config.nameassignDC1_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-76summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-75config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0AManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-74hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H1parentassigndomain-c71summary.config.nameassignDC1_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-75summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-73config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:09Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticdatastoreassigndatastore-74hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H0parentassigndomain-c71summary.config.nameassignDC1_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-73summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-52nameassignDC0_C1_RP1parentassignresgroup-38resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-56vm-60vm-58vm-57vm-53vm-59vm-54vm-55enterresgroup-43nameassignDC0_C1_RP0parentassignresgroup-38resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-50vm-49vm-48vm-47vm-45vm-46vm-51vm-44enterresgroup-28nameassignDC0_C0_RP1parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-36vm-34vm-31vm-30vm-35vm-33vm-29vm-32enterresgroup-19nameassignDC0_C0_RP0parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-27vm-24vm-20vm-23vm-26vm-22vm-21vm-25enterresgroup-102nameassignDC1_C1_RP0parentassignresgroup-97resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-107vm-104vm-103vm-110vm-109vm-108vm-106vm-105enterresgroup-111nameassignDC1_C1_RP1parentassignresgroup-97resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-118vm-114vm-117vm-119vm-112vm-115vm-116vm-113enterresgroup-78nameassignDC1_C0_RP0parentassignresgroup-72resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-82vm-83vm-80vm-86vm-79vm-81vm-85vm-84enterresgroup-87nameassignDC1_C0_RP1parentassignresgroup-72resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-95vm-91vm-89vm-90vm-93vm-88vm-92vm-94
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:21 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-42
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:21 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-42config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:21 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-41
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:22 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-41config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:22 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-40
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:22 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-40config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:22 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-39
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:23 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-39config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:23 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-18
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:23 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-18config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:24 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-17
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:24 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-17config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:24 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-16
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:25 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-16config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:25 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-14
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:25 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-14config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:25 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-99
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:26 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-99config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:26 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-98
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:26 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-98config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:27 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-101
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:27 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-101config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:27 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-100
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:28 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-100config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:28 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-77
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:28 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-77config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:28 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-76
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:29 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-76config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:29 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-75
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:29 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-75config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:30 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyCollector">propertyCollectorHostSystemconfig.storageDevice.hostBusAdapterconfig.storageDevice.scsiLunconfig.storageDevice.scsiTopology.adapterhost-73
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:30 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ Transfer-Encoding:
+ - chunked
+ X-Frame-Options:
+ - DENY
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+ host-73config.storageDevice.hostBusAdapterkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLun/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:30 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this type="PropertyFilter">session[2d108880-9d2a-28f6-2f70-d203826c600e]52845591-cbd7-da0b-2869-2e856f0fccab
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:32 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '408'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:32 GMT
+- request:
+ method: post
+ uri: https://VMWARE_HOSTNAME/sdk
+ body:
+ encoding: UTF-8
+ string: <_this
+ type="SessionManager">SessionManager
+ headers:
+ Content-Type:
+ - text/xml; charset=utf-8
+ Soapaction:
+ - urn:vim25/5.5
+ Cookie:
+ - vmware_soap_session="5206fc94-fc55-05e7-2aaf-cfdebae504d6"; Path=/; HttpOnly;
+ Secure;
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ User-Agent:
+ - Ruby
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Date:
+ - Tue, 29 Jan 2019 19:23:33 GMT
+ Cache-Control:
+ - no-cache
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - text/xml; charset=utf-8
+ X-Frame-Options:
+ - DENY
+ Content-Length:
+ - '378'
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+
+
+
+
+ http_version:
+ recorded_at: Tue, 29 Jan 2019 19:23:33 GMT
+recorded_with: VCR 3.0.3