# Netio230B - Control your NETIO-230B PDU with perl ## INSTALLATION To install this module, run the following commands: perl Makefile.PL make make install ## SYNOPSIS use Netio230B; use Data::Dumper; my $foo = Netio230B->new(device => "192.168.1.22", username => "admin", password => "admin"); # get port states my @allports = $foo->get_device_configuration(); print Dumper(@allports); ## DESCRIPTION The Netio230B is a power distribution unit which can be controled via LAN see http://www.koukaam.se/showproduct.php?article_id=1502 ### REMARKS This module was build and tested against the firmware version 3.12 of the Netio230B device. This firmware seems to contain some bugs which manifest in hanging requests and sometimes requests which do not hang but return an empty result. Those issues are "handled" using a timeout for the requests and sending the request again and again (max 10 times). Since I upgraded to version 4.1 (which in it self was a PITA, you have to to it with Internet Explorer or it will fail...) I have not seen this behavior again. ### AUTHENTICATION At the moment only open authentication method supported.