
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2009 06:46 PM
Hi,
In our network we have multiple subnets. I want to create a report that shows the following in the webgui:
subnet 1 workstations
subnet 2 workstations
subnet 3 workstations
How i can implement this and use subnet ip to group computers? I'm not very familiar with sql syntaxes..
In our network we have multiple subnets. I want to create a report that shows the following in the webgui:
subnet 1 workstations
subnet 2 workstations
subnet 3 workstations
How i can implement this and use subnet ip to group computers? I'm not very familiar with sql syntaxes..
Labels:
- Labels:
-
Report Center
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2009 12:56 PM
I figured it out by myself.
It was pretty easy.
Sample query:
DHCPEnableb is there because i wanted to filter out servers.
Lansweeper is just superior!!
It was pretty easy.
Sample query:
Select tblNetwork.Computername, tblNetwork.IPAddress, tblNetwork.DHCPenabled
From tblNetwork
Where tblNetwork.IPAddress Like '%10.1%' And tblNetwork.DHCPenabled Like 'True'
DHCPEnableb is there because i wanted to filter out servers.
Lansweeper is just superior!!

