python-hpilo
python-hpilo copied to clipboard
Accessing the HP iLO XML interface from python
import hpilo >>> ilo = hpilo.Ilo('test01l', 'Administrator', 'password') >>> csr_req = { "country": "NL", "state": "Test state", "locality": "Test local", "organization": "COMPANY.", "organizational_unit": "ORG", "common_name": "test01-ilo" } >>> ilo.certificate_signing_request(**csr_req) Traceback...
Hello all, We've been noticing a trend going on in my code for manipulating HPE Proliant BL460C gen9/10 blades. During certain phases of my code, I power off the blades...
In Python 3.7 , with ilo.xmldata(item='cpqkey')['key'] (hpilo version4.3) on iLO2, i have this issue : socket error XXX.XXX.XXX.XXX : (SSLError(1, '[SSL: SSLV3_ALERT_BAD_RECORD_MAC] sslv3 alert bad record mac (_ssl.c:1056)'),) That sounds...
function mod_dir_config should contain an (bool) argument "dir_generic_ldap_enabled" which, according to HP Ilo 5 1.20 User Guide, has to be set to true in order to use Ilo with openldap...
Hi, Same problem as indicated at the end of issue n°#95 (Jan 2016) for iLO2 , can you modifiy, in hpilo.py : ``` patch - return self._element_children_to_dict(etree.fromstring(data)) + return self._element_children_to_dict(etree.fromstring(data.lstrip()))...
When using get_embedded_health, only 4 NICs even if more than 4 are present. I have 2 PCI nics and the embedded NIC on a DL380 and I see 2 PCI...
The values are not serialised correctly using the `Ilo.mod_global_settings()` function with data such as: ``` authentication_failure_delay_secs = 10, authentication_failure_logging = 3, authentication_failures_before_delay = 1, enforce_aes = false ``` The data...
I currently have python-hpilo installed and loaded in a virtualenv. The example file "hpilo_ca" currently has shebang "#!/usr/bin/python". If execute it from the shell like this: `./hpilo_ca -h` it can't...
I am trying to build a server from an iso file I construct using python-hpilo 4.1 module. When I try to reset the power in order the server will reboot...
When running hpilo_es_import, the function fails with the following: elasticsearch.exceptions.TransportError: TransportError(406, u'Content-Type header [] is not supported') ES6 introduced strict content-type checking which cannot be turned off. The REST call...