2012-01-24 10:22:33 +00:00
|
|
|
NUTSCAN(3)
|
|
|
|
==========
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
|
|
|
|
nutscan - Network UPS Tools (NUT) device discovery library
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
The Network UPS Tools (NUT) *nutscan* library provides the same discovery
|
|
|
|
related features that are also offered by linkman:nut-scanner[8].
|
|
|
|
|
2012-08-12 21:39:31 +00:00
|
|
|
It enables the discovery of supported NUT devices (USB, SNMP, Eaton XML/HTTP
|
2022-06-29 10:37:36 +00:00
|
|
|
and IPMI) and NUT servers (either using Avahi, or the classic connection
|
|
|
|
method).
|
2012-01-24 10:22:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
DISCOVERY FUNCTIONS
|
|
|
|
-------------------
|
|
|
|
|
2012-08-12 21:39:31 +00:00
|
|
|
First, include the required header file:
|
2012-01-24 10:22:33 +00:00
|
|
|
|
|
|
|
#include <nut-scan.h>
|
|
|
|
|
|
|
|
Then, to discover new devices, use the appropriate function:
|
|
|
|
|
|
|
|
- linkman:nutscan_scan_usb[3] for supported USB devices,
|
|
|
|
- linkman:nutscan_scan_snmp[3] for supported SNMP agents,
|
2022-06-29 10:37:36 +00:00
|
|
|
- linkman:nutscan_scan_xml_http_range[3] for Eaton Network Management Card,
|
|
|
|
- linkman:nutscan_scan_nut[3] for NUT servers (upsd), using the classic
|
|
|
|
method (search for port),
|
|
|
|
- linkman:nutscan_scan_avahi[3] for NUT servers (upsd), using the mDNS
|
|
|
|
(Avahi) method,
|
2012-01-24 10:22:33 +00:00
|
|
|
- linkman:nutscan_scan_ipmi[3] for supported IPMI PSU.
|
|
|
|
|
|
|
|
|
2022-06-29 10:37:36 +00:00
|
|
|
All of these functions return a list of devices found, using the
|
|
|
|
`nutscan_device_t` structure. This structure is described in
|
|
|
|
linkman:nutscan_add_device_to_device[3].
|
2012-01-24 10:22:33 +00:00
|
|
|
|
2012-08-12 21:39:31 +00:00
|
|
|
Helper functions are also provided to output data using standard formats:
|
2012-01-24 10:22:33 +00:00
|
|
|
|
|
|
|
- linkman:nutscan_display_parsable[3] for parsable output,
|
|
|
|
- linkman:nutscan_display_ups_conf[3] for ups.conf style.
|
|
|
|
|
|
|
|
|
|
|
|
ERROR HANDLING
|
|
|
|
--------------
|
2022-06-29 10:37:36 +00:00
|
|
|
|
2012-08-12 21:39:31 +00:00
|
|
|
There is currently no specific mechanism for error handling.
|
2012-01-24 10:22:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
2022-06-29 10:37:36 +00:00
|
|
|
|
2012-01-24 10:22:33 +00:00
|
|
|
linkman:nut-scanner[8],
|
2012-08-12 21:39:31 +00:00
|
|
|
linkman:nutscan_scan_usb[3], linkman:nutscan_scan_snmp[3],
|
2022-06-29 10:37:36 +00:00
|
|
|
linkman:nutscan_scan_xml_http_range[3], linkman:nutscan_scan_nut[3],
|
2012-08-12 21:39:31 +00:00
|
|
|
linkman:nutscan_scan_avahi[3], linkman:nutscan_scan_ipmi[3],
|
|
|
|
linkman:nutscan_display_parsable[3], linkman:nutscan_display_ups_conf[3],
|
|
|
|
linkman:nutscan_new_device[3], linkman:nutscan_free_device[3],
|
2022-06-29 10:37:36 +00:00
|
|
|
linkman:nutscan_add_device_to_device[3],
|
|
|
|
linkman:nutscan_add_option_to_device[3],
|
|
|
|
linkman:nutscan_cidr_to_ip[3]
|
|
|
|
|
|
|
|
Internet resources:
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2012-08-12 21:39:31 +00:00
|
|
|
http://avahi.org/
|