I have set up a Computer Group to include a set of IP addresses such as
IP address contains 10.1.3.
IP address contains 10.2.3
Is there a way to exclude a specific IP address from the above ranges? My clients are 10.1.3 and I have a few servers sitting in the mix and we’ll say one’s address is 10.1.3.5. I want to exclude 10.1.3.5 and include the rest of the range, my users.
I’ve also tried relevance to report only if winXP, but the servers still report in to the group.
It looks like you are looking for a level of complexity for your rules that is beyond the capability of the Automatic Group creation dialog, but you can code arbitrary complex rules into relevance of a property (go to Tools > Manage Properties), for instance, you might try this:
(exists (it as string) whose ((it starts with “10.1.3.” OR it starts with “10.2.3.”) AND (it != “10.1.3.5” )) of addresses of ip interfaces whose (loopback of it = false) of network)
This should match your rules above by returning “True” for computers matching the rules and “False” if they don’t… and you can add the following to only return true for WinXP: