Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

check_ilo

Rating
6 votes
Favoured:
1
Compatible With
  • Nagios 3.x
Hits
123204
Files:
FileDescription
check_ilo.shcheck_ilo bash script
Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
Checks the iLO Management Controller of HP Proliant Servers by querying it via XML
This is a bash plugin which needs only some common unix tools and curl to query the Management Controller. It just sends some XML and queries the output.

The script is based upon "findilos" from iggy@nachotech.com. See his website: http://blog.nachotech.com.
Reviews (5)
byhghare, August 7, 2019
0 of 1 people found this review helpful
is this script compatible with Nagios Xi?
bykabhotz, February 19, 2019
To make it work with iLO v4 I have modified the script in this way:

# prepare lookup file for iLO hardware versions
cat > $ilohwvers

The output of the script is:

OK - type: iLO-4 firmware: 2.55 serial: CZJXXXXXX Server: ProLiant DL380 Gen9
byric, December 6, 2012
search the script for the fallowing part:

cat > $ilohwvers .

if [ "$ilohwver" == "" -o "$sernum" == "" ]; then
echo "CRITICAL - Can't get no iLO information from $iloip"
cleanexit 2
fi

then you see if the script works with your ilo no matter what version it is.
byKajmaj, November 20, 2012
Hello,
I cannot get this to work for ILO 4.
Where do you import as the review below?
To work on v4 add Line in script.

# prepare lookup file for iLO hardware versions
cat > $ilohwvers 2
i-iLO shows hw version T0
EOF