
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-30-2013 09:15 PM
I would like to write a report to tell me two different thing:
1. If a device has a SNMP string of "public" or "private"
2. if any device has FTP enabled.
A wonderful forum you have here. I love your product.
Thanks in advance for the help
JMassengill.
1. If a device has a SNMP string of "public" or "private"
2. if any device has FTP enabled.
A wonderful forum you have here. I love your product.
Thanks in advance for the help
JMassengill.
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2013 03:11 PM
1. Lansweeper does not store this information as plain text, as this would be a security risk. Any SNMP scanning credentials you submit are encrypted in the database.
2. The sample report below lists FTP enabled devices.
2. The sample report below lists FTP enabled devices.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblAssetCustom.FTPheader
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.FTPheader <> '' And tblAssetCustom.State = 1
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2013 03:11 PM
1. Lansweeper does not store this information as plain text, as this would be a security risk. Any SNMP scanning credentials you submit are encrypted in the database.
2. The sample report below lists FTP enabled devices.
2. The sample report below lists FTP enabled devices.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblAssetCustom.FTPheader
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.FTPheader <> '' And tblAssetCustom.State = 1
