Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_ilo
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!
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.
The script is based upon "findilos" from iggy@nachotech.com. See his website: http://blog.nachotech.com.
Reviews (5)
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
# 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.
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?
I cannot get this to work for ILO 4.
Where do you import as the review below?
byVelociraptor, June 18, 2012
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
# prepare lookup file for iLO hardware versions
cat > $ilohwvers 2
i-iLO shows hw version T0
EOF