→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
‎01-22-2016 09:22 PM
Solved! Go to Solution.
‎01-27-2016 05:09 PM
There's no specific database field that stores the Cisco IOS version. If the version number is included in the device description though, which may be the case, you could create a report that lists the descriptions. We've included a sample report for Cisco devices below. Instructions for adding this report to your Lansweeper installation can be found here.Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Mac,
tblAssets.Description,
tblAssetCustom.PurchaseDate,
tblAssetCustom.Warrantydate,
tblAssetCustom.Location,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Contact,
tblAssetCustom.Serialnumber,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.Manufacturer Like '%cisco %' And tblAssetCustom.State = 1
Order By tblAssets.IPNumeric,
tblAssets.AssetName
‎01-27-2016 05:09 PM
There's no specific database field that stores the Cisco IOS version. If the version number is included in the device description though, which may be the case, you could create a report that lists the descriptions. We've included a sample report for Cisco devices below. Instructions for adding this report to your Lansweeper installation can be found here.Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Mac,
tblAssets.Description,
tblAssetCustom.PurchaseDate,
tblAssetCustom.Warrantydate,
tblAssetCustom.Location,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Contact,
tblAssetCustom.Serialnumber,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.Manufacturer Like '%cisco %' And tblAssetCustom.State = 1
Order By tblAssets.IPNumeric,
tblAssets.AssetName
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now