...
Make sure that ALL Product Adapters are disable and only DEVICE DISCOVERY is enabled. Finish the Project setup and now we can run our IP Discovery for 192.168.1.0 /24 Subnet IP space.
Results diagnostics:
- Project Summary page will show how many Targets we setup to scan and how many Devices scan did find.
- Diagnostics page will show more details about each found device as shown bellow
3. Getting the results from the iQSonarSE DB.
To get the list of Found Devices run the SQL query against the iQSonarSE DB. The query will give us list which can be saved as CSV with Headers.
SELECT j.JobID, j.IPAddress, j.StartDate AS [Scan Start],j.EndDate AS [Scan Ends], fd.SuspectedOS FROM jobs.t_job j
join history.t_ArtifactHistory ah ON ah.JobID = j.JobID
join model.t_FoundDevice fd ON fd.FoundDeviceID = ah.ObjectID
WHERE ObjectType = 'FoundDevice'
and DeviceID is null