<?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 Chassis Inventory question in BladeSystem - General</title>
    <link>https://community.hpe.com/t5/bladesystem-general/chassis-inventory-question/m-p/6732038#M24416</link>
    <description>&lt;P&gt;&lt;STRONG&gt;Susan had a chassis inventory question:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there &amp;nbsp;a simple one stop report that would give my customer the blade inventory of all their chassis, on a per chassis basis?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;**********&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;input from David:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And…. If Customer has a number of chassis and/or wants to repeat from time to time, it would pay to automate the collection process:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On a linux (cue the chant: linux, linux, linux J) server, have a script along the lines of:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#! /bin/bash&lt;/P&gt;
&lt;P&gt;DATE=$(date +%Y%m%d)&lt;/P&gt;
&lt;P&gt;CHASSIS_DATA_DIR=/var/tmp&lt;/P&gt;
&lt;P&gt;for chassis in chassis1 chassis2 …..&lt;/P&gt;
&lt;P&gt;do&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ssh Administrator@${chassis} show all &amp;gt; ${CHASSIS_DATA_DIR}/${chassis}_${DATE}&lt;/P&gt;
&lt;P&gt;done&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and repeat for the VC (with a consistent DNS name, even if by adding cname records), it could all be trivially done in a single for loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If the Customer does not want to use the Admin account, create another acct, eg chassis-data or similar&lt;/LI&gt;
&lt;LI&gt;TO avoid the password manual entry, on the linux machine run ssh-keygen, and upload the idrsa key into all the chassis (one time action per user acct/source system).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will robotically collect the data at about 2 mins per chassis.&lt;/P&gt;
&lt;P&gt;Can even cron-collect for further automation, and historical reference / change detection (that get’s slightly more complicated…).&lt;/P&gt;
&lt;P&gt;Very handy.&amp;nbsp;&amp;nbsp; Cheers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Other comments?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Apr 2015 20:48:28 GMT</pubDate>
    <dc:creator>chuckk281</dc:creator>
    <dc:date>2015-04-13T20:48:28Z</dc:date>
    <item>
      <title>Chassis Inventory question</title>
      <link>https://community.hpe.com/t5/bladesystem-general/chassis-inventory-question/m-p/6732038#M24416</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Susan had a chassis inventory question:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there &amp;nbsp;a simple one stop report that would give my customer the blade inventory of all their chassis, on a per chassis basis?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;**********&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;input from David:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And…. If Customer has a number of chassis and/or wants to repeat from time to time, it would pay to automate the collection process:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On a linux (cue the chant: linux, linux, linux J) server, have a script along the lines of:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#! /bin/bash&lt;/P&gt;
&lt;P&gt;DATE=$(date +%Y%m%d)&lt;/P&gt;
&lt;P&gt;CHASSIS_DATA_DIR=/var/tmp&lt;/P&gt;
&lt;P&gt;for chassis in chassis1 chassis2 …..&lt;/P&gt;
&lt;P&gt;do&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ssh Administrator@${chassis} show all &amp;gt; ${CHASSIS_DATA_DIR}/${chassis}_${DATE}&lt;/P&gt;
&lt;P&gt;done&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and repeat for the VC (with a consistent DNS name, even if by adding cname records), it could all be trivially done in a single for loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If the Customer does not want to use the Admin account, create another acct, eg chassis-data or similar&lt;/LI&gt;
&lt;LI&gt;TO avoid the password manual entry, on the linux machine run ssh-keygen, and upload the idrsa key into all the chassis (one time action per user acct/source system).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will robotically collect the data at about 2 mins per chassis.&lt;/P&gt;
&lt;P&gt;Can even cron-collect for further automation, and historical reference / change detection (that get’s slightly more complicated…).&lt;/P&gt;
&lt;P&gt;Very handy.&amp;nbsp;&amp;nbsp; Cheers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Other comments?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2015 20:48:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/bladesystem-general/chassis-inventory-question/m-p/6732038#M24416</guid>
      <dc:creator>chuckk281</dc:creator>
      <dc:date>2015-04-13T20:48:28Z</dc:date>
    </item>
  </channel>
</rss>

