cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
danielm
Champion Sweeper II
Would it be possible to make a report for SWITCH type assets that lists the # of ports and number of Active ports (UP/GREEN) ports.

unfortunately I've noticed sometimes the results returned include vlan ports and internal ports and such so that may be off...
7 REPLIES 7
danielm
Champion Sweeper II
thanks
ghelpdesk
Champion Sweeper
Not yet. still on 5052. will be updating to 5060 next week or so.
Hemoco
Lansweeper Alumni
ghelpdesk wrote:
Not yet. still on 5052. will be updating to 5060 next week or so.

Should the issue persist after the update, please contact us at support@lansweeper.com
ghelpdesk
Champion Sweeper
copy-paste of the above report isn't being accepted for us. It is removing the "tblassets" reference on the 5th last line. using LSv5, db is SQL server
Hemoco
Lansweeper Alumni
ghelpdesk wrote:
copy-paste of the above report isn't being accepted for us. It is removing the "tblassets" reference on the 5th last line. using LSv5, db is SQL server

Please contact us by e-mail for this problem.
Are you on the latest version?
chads
Lansweeper Alumni
Amazing report right here !!
Hemoco
Lansweeper Alumni
A sample report can be seen below.
Select Top 1000000 tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename As AssetType,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblSNMPInfo.IfIndex As [If],
tblSNMPInfo.IfDescription As Name,
tblSNMPIfTypes.IfTypename As Type,
tblSNMPInfo.IfAdminstatus As Admin,
tblSNMPInfo.IfMTU As MTU,
Ceiling(tblSNMPInfo.IfSpeed / 1000 / 1000) As Speed,
tblSNMPInfo.IfIPAddress As IP,
tblSNMPInfo.IfMask As Mask,
tblSNMPInfo.IfMacaddress As MAC,
tblAssets1.AssetName As Asset
From tblAssets
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblSNMPInfo On tblAssets.AssetID = tblSNMPInfo.AssetID
Inner Join tblSNMPIfTypes On tblSNMPIfTypes.IfType = tblSNMPInfo.IfType
Left Join tblSNMPAssetMac On tblSNMPAssetMac.AssetID = tblSNMPInfo.AssetID And
tblSNMPAssetMac.IfIndex = tblSNMPInfo.IfIndex
Left Join tblAssetMacAddress On tblAssetMacAddress.Mac =
tblSNMPAssetMac.AssetMacAddress
Left Join tblAssets tblAssets1 On tblAssets1.AssetID =
tblAssetMacAddress.AssetID
Where tsysAssetTypes.AssetTypename = 'switch'
Order By tblAssets.IPNumeric,
tblSNMPInfo.IfIndex