<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Issues with scripting boot via ILO in ProLiant Servers (ML,DL,SL)</title>
    <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6122065#M137119</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apparently, CPQLOCFG.exe is failing to establish a TCP connection to iLO port 443. &amp;nbsp;See error Windows Socket error 10060 below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WSAETIMEDOUT&amp;nbsp;&lt;/STRONG&gt;10060&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Connection timed out.&lt;/P&gt;&lt;P&gt;A connection attempt failed because the connected party did not properly respond after a period of time, or the established connection failed because the connected host has failed to respond.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are your iLOs configured to listen to a port other than 443 for HTTPS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Jul 2013 21:29:37 GMT</pubDate>
    <dc:creator>Oscar A. Perez</dc:creator>
    <dc:date>2013-07-01T21:29:37Z</dc:date>
    <item>
      <title>Issues with scripting boot via ILO</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6121309#M137101</link>
      <description>&lt;P&gt;Trying to create a script to boot multiple servers via ilo (multible versions of ilo) using the scriots bellow. But when I run it I get the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;IP Address is: server1-oob
SIO_connect failure.
9344:error:0200274C:system library:connect:reason(1868):.\crypto\sio\s_sock.c:606:host=server1-oob:443
9344:error:10065068::lib(16) :SIO_CONNECT:connect error:.\crypto\sio\s_sock.c:608:
CPQLOCFG.EXE: ERROR: SIO_connect:reason(10060).&lt;/PRE&gt;&lt;P&gt;What can cause this?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;There is no valid ssl certificats on the ilo so there is allways a warning about this ehen conencting via a browser.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;boot.bat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;@echo off&lt;BR /&gt;
set iLO_uN=root
set iLO_PW=rootpass
set iLO_XML=Set_Host_Power.xml
IF NOT EXIST .\LOGS MKDIR .\LOGS

for %%i in (
server1-oob
) do (

CPQLOCFG.EXE -s %%i -f %iLO_XML% -u %iLO_uN% -p %iLO_PW%
	
)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Set_Host_Power.xml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;!--         RIBCL Sample Script for HP Lights-Out Products          --&amp;gt;
&amp;lt;!--Copyright (c) 2012 Hewlett-Packard Development Company, L.P.     --&amp;gt;

&amp;lt;!-- Description:  This is a sample XML script to toggle the power   --&amp;gt;
&amp;lt;!--               on the host server in which one of the following  --&amp;gt;
&amp;lt;!--               devices is executing:                             --&amp;gt;
&amp;lt;!--                 Integrated Lights-Out 4 (iLO 4)                 --&amp;gt;
&amp;lt;!--                 Integrated Lights-Out 3 (iLO 3)                 --&amp;gt;
&amp;lt;!--                 Integrated Lights-Out 2 (iLO 2)                 --&amp;gt;

&amp;lt;!-- NOTE:  You will need to replace the USER_LOGIN and PASSWORD     --&amp;gt;
&amp;lt;!--        values with values that are appropriate for your         --&amp;gt;
&amp;lt;!--        environment.                                             --&amp;gt;

&amp;lt;!--        This script will use the ACPI Power Button function to   --&amp;gt;
&amp;lt;!--        attempt to gracefully shutdown the host operating system --&amp;gt;
&amp;lt;!--        (if your OS supports and is configured for graceful      --&amp;gt;
&amp;lt;!--        shutdown) before it powers off the server.               --&amp;gt;

&amp;lt;!--        Use CPQLOCFG.EXE ver 4.00 or greater with this script.   --&amp;gt;

&amp;lt;!--        This script was written for iLO 4 firmware version 1.01  --&amp;gt;
&amp;lt;!--        release.                                                 --&amp;gt;

&amp;lt;!--        See "HP Integrated Lights-Out Management Processor       --&amp;gt;
&amp;lt;!--        Scripting and Command Line Resource Guide" for more      --&amp;gt;
&amp;lt;!--        information on scripting and the syntax of the RIBCL     --&amp;gt;
&amp;lt;!--        XML.                                                     --&amp;gt;

&amp;lt;!--        Firmware support information for this script:            --&amp;gt;
&amp;lt;!--            iLO 4 - All versions.                                --&amp;gt;
&amp;lt;!--            iLO 3 - All versions.                                --&amp;gt;
&amp;lt;!--            iLO 2 - All versions.                                --&amp;gt;

&amp;lt;RIBCL VERSION="2.0"&amp;gt;
   &amp;lt;LOGIN USER_LOGIN="root" PASSWORD="rootpassword"&amp;gt;
      &amp;lt;SERVER_INFO MODE="write"&amp;gt;
         &amp;lt;!-- Modify the HOST_POWER attribute to toggle power on the host server --&amp;gt;&lt;BR /&gt;         &amp;lt;!-- HOST_POWER="No"  (Turns host server power off)              --&amp;gt;
         &amp;lt;!-- A graceful shutdown will be attempted for ACPI-aware        --&amp;gt;
         &amp;lt;!-- operating systems configured to support graceful shutdown.  --&amp;gt;
         &amp;lt;!-- HOST_POWER="Yes" (Turns host server power on) --&amp;gt;
         &amp;lt;SET_HOST_POWER HOST_POWER="Yes"/&amp;gt;
      &amp;lt;/SERVER_INFO&amp;gt;
   &amp;lt;/LOGIN&amp;gt;
&amp;lt;/RIBCL&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2013 07:18:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6121309#M137101</guid>
      <dc:creator>Fredriks3</dc:creator>
      <dc:date>2013-07-01T07:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with scripting boot via ILO</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6121329#M137103</link>
      <description>well SSL is the issue but how to owercome it? i dobt that manny people have valid ssl certificats for there ILO.</description>
      <pubDate>Mon, 01 Jul 2013 07:31:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6121329#M137103</guid>
      <dc:creator>Fredriks3</dc:creator>
      <dc:date>2013-07-01T07:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with scripting boot via ILO</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6121623#M137110</link>
      <description>&lt;P&gt;Using your batch file, I was able to turn an iLO4&amp;nbsp; system off and on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used cpqlocfg.exe version 4.00, and version 4 of the iLO XML scripting samples.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2013 12:44:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6121623#M137110</guid>
      <dc:creator>Jimmy Vance</dc:creator>
      <dc:date>2013-07-01T12:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with scripting boot via ILO</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6122065#M137119</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apparently, CPQLOCFG.exe is failing to establish a TCP connection to iLO port 443. &amp;nbsp;See error Windows Socket error 10060 below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WSAETIMEDOUT&amp;nbsp;&lt;/STRONG&gt;10060&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Connection timed out.&lt;/P&gt;&lt;P&gt;A connection attempt failed because the connected party did not properly respond after a period of time, or the established connection failed because the connected host has failed to respond.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are your iLOs configured to listen to a port other than 443 for HTTPS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2013 21:29:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6122065#M137119</guid>
      <dc:creator>Oscar A. Perez</dc:creator>
      <dc:date>2013-07-01T21:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with scripting boot via ILO</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6122491#M137125</link>
      <description>&lt;P&gt;well the solution was fairly easy, I had put the script on a server that did not have acces to the ILO network&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2013 08:41:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/issues-with-scripting-boot-via-ilo/m-p/6122491#M137125</guid>
      <dc:creator>Fredriks3</dc:creator>
      <dc:date>2013-07-02T08:41:45Z</dc:date>
    </item>
  </channel>
</rss>

