- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- ProLiant Servers (ML,DL,SL)
- >
- ilo4 RIBCL scripting question, please? How can I t...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2017 07:59 AM
06-15-2017 07:59 AM
ilo4 RIBCL scripting question, please? How can I test the ILO AlertMail feature from a script?
Hi
Our ILOs are set up to send alerts via email in the usual way and testing the feature from the ILO web GUI works as expected. What I would like to do is be able to test the feature from a script (eg to have a periodic check that can be run across the entire estate to verify that the alerting mechanism is in good shape).
Although HP's perl scripting toolkit shows examples of configuring these settings via script, I cannot find any way of initiating a test of AlertMail.
Any ideas, please?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2017 10:24 AM
06-16-2017 10:24 AM
Re: ilo4 RIBCL scripting question, please? How can I test the ILO AlertMail feature from a script?
FYI the newer "hprest" tool makes it easy to trigger a test of the AlertMail feature (so this will be the method in the future; for now it would be nice to use the existing scripting framework). You just POST the following chunk of JSON to the ILO:
{
"path": "/redfish/v1/Managers/1/NetworkService/Actions/Oem/Hp/HpiLOManagerNetworkService.SendTestAlertMail",
"body": {
"Action": "SendTestAlertMail"
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2017 10:50 AM
06-16-2017 10:50 AM
Re: ilo4 RIBCL scripting question, please? How can I test the ILO AlertMail feature from a script?
Nice find. I did some checking and the only thing I could come up with is the SMASH CLP command oemhpe_send_TestAlertmail to send the an AlertMail test from the iLO command line
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2017 03:03 AM
06-19-2017 03:03 AM
Re: ilo4 RIBCL scripting question, please? How can I test the ILO AlertMail feature from a script?
Jimmy,
Thanks for the suggestion. It looks like the "command" I'm looking for was overlooked in the design (or it would surely appear in some documentation, example scripts or someone's blog!). HP's answer would probably be "switch to the 'hprest' method as that is the future" which is hard to argue with (it's not reasonable to expect them to spend any development $$ adding this feature into the "old" scripting interface).
Regards,
Richard.