Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ipmidetect.conf(5) [debian man page]

IPMIDETECT.CONF(5)						   LIBIPMIDETECT						IPMIDETECT.CONF(5)

NAME
ipmidetect.conf - specify alternate default values for the ipmidetect library DESCRIPTION
Through a configuration file, system administrators may override the default values used in the ipmidetect_load_data(3) API function. The configuration file is stored at /etc/freeipmi//ipmidetect.conf. CONFIGURATION OPTIONS
The following are a list of configuration options that can be specified in the configuration file. Each configuration option must be listed on a separate line. Arguments for an option are separated by any amount of whitespace. Multiple arguments are also separated by whitespace. Comments can be marked by using the pound sign ("#") character, and lines can be continued on the next using backslash (""). hostnames host1 host2 host3 ... Specify the hostname of the server to reach. Multiple hostnames can be listed up to a maximum of 8. port num Specify the port. timeout_len seconds Specify the timeout length in seconds. FILES
/etc/freeipmi//ipmidetect.conf REPORTING BUGS
Report bugs to <freeipmi-users@gnu.org> or <freeipmi-devel@gnu.org>. COPYRIGHT
Copyright (C) 2007-2012 Lawrence Livermore National Security, LLC. Copyright (C) 2007 The Regents of the University of California. SEE ALSO
libipmidetect(3), ipmidetect(8) http://www.gnu.org/software/freeipmi/ LLNL
2012-06-15 IPMIDETECT.CONF(5)

Check Out this Related Man Page

LIBIPMIDETECT(3)						   LIBIPMIDETECT						  LIBIPMIDETECT(3)

NAME
libipmidetect - a library of functions to determine if a node is detected or undetected SYNOPSIS
#include <ipmidetect.h> ipmidetect_t ipmidetect_handle_create(void); int ipmidetect_handle_destroy(ipmidetect_t handle); int ipmidetect_load_data(ipmidetect_t handle, const char *hostname, int port, int timeout_len); int ipmidetect_errnum(ipmidetect_t handle); char *ipmidetect_strerror(int errnum); char *ipmidetect_errormsg(int errnum); void ipmidetect_perror(ipmidetect_t handle, const char *msg); int ipmidetect_get_detected_nodes_string(ipmidetect_t handle, char *buf, int buflen); int ipmidetect_get_undetected_nodes_string(ipmidetect_t handle, char *buf, int buflen); int ipmidetect_is_node_detected(ipmidetect_t handle, const char *node); int ipmidetect_is_node_undetected(ipmidetect_t handle, const char *node); DESCRIPTION
Libipmidetect implements a high level API for determing which nodes in a cluster do or do-not support IPMI. This library is primarily use- ful for detecting whe nodes are removed from a cluster for servicing, so that IPMI applications can avoid unnecessary timeouts. The library interacts with the ipmidetectd(8) daemon. FILES
/usr/include/ipmidetect.h REPORTING BUGS
Report bugs to <freeipmi-users@gnu.org> or <freeipmi-devel@gnu.org>. COPYRIGHT
Copyright (C) 2007-2012 Lawrence Livermore National Security, LLC. Copyright (C) 2007 The Regents of the University of California. This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. SEE ALSO
ipmidetect(8), ipmidetectd(8) http://www.gnu.org/software/freeipmi/ LIBIPMIDETECT 1.1.5 2012-06-15 LIBIPMIDETECT(3)
Man Page