Spiceworks adds troubleshooting to its free net mgmt. tool - LinuxWorld.com


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Spiceworks adds troubleshooting to its free net mgmt. tool - LinuxWorld.com
# 1  
Old 06-22-2007
Spiceworks adds troubleshooting to its free net mgmt. tool - LinuxWorld.com

Spiceworks adds troubleshooting to its free net mgmt. tool
LinuxWorld.com, NJ - 48 minutes ago
IT Desktop 1.6 runs on Windows and discovers Windows, Unix, Linux and Mac OS X machines along with any other IP-addressable device. ...


More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Infrastructure Monitoring

what is the best free monitoring tool?

hello everybody, please could you tell me what is the best monitoring tool "Free" to monitoring sun servers in my DC. BR, (1 Reply)
Discussion started by: maxim42
1 Replies

2. Web Development

Anyone know of a free license or library that converts asp.net word to pdf?

Hello, I am wondering if anyone knows of a free way (or very cheap way) for asp.net libraries to convert word to pdf. Thanks Kylle (4 Replies)
Discussion started by: kylle345
4 Replies

3. AIX

NIM Master as Mgmt Server

Guys, I need your help I got a requirement from a cUstomer asking for a specific design He wants to use the NIM Master as one single mgmt server and access the nodes maintained by it there by the accounting is in one single server for all the nodes Note:- Direct login to the nodes will... (3 Replies)
Discussion started by: kkeng808
3 Replies

4. UNIX for Dummies Questions & Answers

Hardware monitoring free tool

Folks; What is a good free tool i can use on my SUSE10 to monitor the hardware so i can be notified in case of any failure such as fan failure, etc..? (2 Replies)
Discussion started by: Katkota
2 Replies

5. HP-UX

Change mgmt log

Hi All, I have a query which i needed some clarity and answers on. If i need to capture all changes that a HP-UX system does is there a way in which i can capture that for over a period of time say Jan-July. Not talking about point in time changes log but over a period, where in say if a... (1 Reply)
Discussion started by: aadil
1 Replies

6. Infrastructure Monitoring

Free monitoring tool on Unix

Dear All, Any one used free monitoring tool on HP machines (unix) , what is the most easy to install and configure (MRTG, Cricket, or Zabbix) ? Thanks in advance. (1 Reply)
Discussion started by: salhoub
1 Replies

7. News, Links, Events and Announcements

LinuxWorld Expo this week

LinuxWorld Expo is going on this week at the Moscone Center in San Francisco, CA. I'll be there Tues, Weds, Thurs. Anyone else from the forums planning to attend? (0 Replies)
Discussion started by: PxT
0 Replies
Login or Register to Ask a Question
GENDERS_TESTQUERY(3)						    LIBGENDERS						      GENDERS_TESTQUERY(3)

NAME
genders_testquery - query genders database for a set of nodes SYNOPSIS
#include <genders.h> int genders_testquery(genders_t handle, const char *node, const char *query); DESCRIPTION
genders_testquery() tests if the node pointed to by node meets the conditions specified in the query. If node is NULL, the current node is tested. Queries are based on the union, intersection, difference, or complement of genders attributes and values. The query is passed as a string through the query parameter. The set operation union is represented by two pipe symbols ('||'), intersection by two ampersand symbols ('&&'), difference by two minus symbols ('--'), and complement by a tilde ('~'). Set operations are performed left to right. Parentheses may be used to change the order of operations. A list of query examples are listed below. A NULL query retrieves all nodes from the genders database. EXAMPLES
The following are example queries that can be passed to genders_testquery(). Test if a node contains the mgmt or login attribute: "mgmt||login" Test if a node is not a login node: "all--login" Test if a node is both a login node and ntp server: "login&&ntpserv" Test if a node is not a mgmt or login node: "~(mgmt||login)" RETURN VALUES
If the node as met the conditions of the query, 1 is returned. 0 is returned if the node does not meet the conditions of the query. On error, -1 is returned, and an error code is returned in handle. The error code can be retrieved via genders_errnum(3) , and a description of the error code can be retrieved via genders_strerror(3). Error codes are defined in genders.h. ERRORS
GENDERS_ERR_NULLHANDLE The handle parameter is NULL. The genders handle must be created with genders_handle_create(3). GENDERS_ERR_NOTLOADED genders_load_data(3) has not been called to load genders data. GENDERS_ERR_PARAMETERS An incorrect parameter has been passed in. GENDERS_ERR_SYNTAX There is a syntax error in the query. GENDERS_ERR_OUTMEM malloc(3) has failed internally, system is out of memory. GENDERS_ERR_MAGIC handle has an incorrect magic number. handle does not point to a genders handle or handle has been destroyed by genders_han- dle_destroy(3). GENDERS_ERR_INTERNAL An internal system error has occurred. FILES
/usr/include/genders.h SEE ALSO
libgenders(3), genders_handle_create(3), genders_load_data(3), genders_errnum(3), genders_strerror(3) LLNL
June 2004 GENDERS_TESTQUERY(3)