Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2018 07:50 PM
I have a hyperv server 2012r2 that is hosting a unix guest os.
on the SERVER asset in lansweeper the guest list shows the name status and memory. The name itself is not the same as the "guest" though.
On the Guest it shows as a model:Virtual Machine, and some stats, but it does not link back to the hyperv host machine.
The name of it does not match exactly though.
Not a major issue but is this something I can fix up myself?
on the SERVER asset in lansweeper the guest list shows the name status and memory. The name itself is not the same as the "guest" though.
On the Guest it shows as a model:Virtual Machine, and some stats, but it does not link back to the hyperv host machine.
The name of it does not match exactly though.
Not a major issue but is this something I can fix up myself?
Labels:
- Labels:
-
General Discussion
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-17-2018 01:48 PM
I did a quick check on this and the functionality to automatically link Linux or UNIX Hyper-v guests is not yet in Lansweeper.
I've linked your topic to the existing feature request. As a workaround, you could use the following report:
Theoretically, you can also fiddle with the database to get it working.
I've linked your topic to the existing feature request. As a workaround, you could use the following report:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.IPAddress,
tblAssets.Lastseen,
tHost.AssetName As [Hyper-V host]
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join TblHyperVGuestNetwork
On tblAssets.Mac = TblHyperVGuestNetwork.MacAddress
Inner Join tblHyperVGuest On tblHyperVGuest.hypervguestID =
TblHyperVGuestNetwork.HyperVGuestID
Left Join tblAssets tHost On tHost.AssetID = tblHyperVGuest.AssetID
Where tblAssetCustom.State = 1
Order By [Hyper-V host]
Theoretically, you can also fiddle with the database to get it working.
