- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- ProLiant Servers (ML,DL,SL)
- >
- toggling GlobalComponentIntegrity for iLO6 with Po...
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
01-04-2024 02:54 PM - last edited on 01-05-2024 07:46 AM by support_s
01-04-2024 02:54 PM - last edited on 01-05-2024 07:46 AM by support_s
toggling GlobalComponentIntegrity for iLO6 with Powershell
I'm using the latest Powershell module (4.32), but can't find a way to either set the ignore flag for Global Component Integrity on the Security Dashboard, or to enable it in Security, ILO. Anyone have a scripty way to do that?
thanks,
Keith
- Tags:
- Prolaint server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2024 05:48 AM
01-05-2024 05:48 AM
Re: toggling GlobalComponentIntegrity for iLO6 with Powershell
Hello,
I do not believe the powershell cmdlets have been updated yet in order to allow for ignoring the Global Component Integrity. You can use iLO restful tool or any rest client to issue a raw patch to the iLO's in order to enable the "ignore" option on the security dashboard:
PATCH https://<iLO IP>/redfish/v1/Managers/1/SecurityService/SecurityDashboard/SecurityParams/11
With the following payload:
{
"Ignore": true
}
"Param 11" above is the one that corresponds to the Global Component Integrity.
Regards
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2024 06:45 AM
01-05-2024 06:45 AM
Re: toggling GlobalComponentIntegrity for iLO6 with Powershell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 05:05 AM - last edited on 09-16-2024 02:30 AM by support_s
06-20-2024 05:05 AM - last edited on 09-16-2024 02:30 AM by support_s
Re: toggling GlobalComponentIntegrity for iLO6 with Powershell
Do you know maybe if there is plan to do it, i mean update powershell module ?
Would love to add this to my scipt, kind of pain in a** to do configuration of ilo and still be forced to go to web gui end toggle it manually.
- Tags:
- iLO_OA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 07:00 AM - last edited on 09-16-2024 02:29 AM by support_s
06-20-2024 07:00 AM - last edited on 09-16-2024 02:29 AM by support_s
Re: toggling GlobalComponentIntegrity for iLO6 with Powershell
You can adapt the method that thutchings posted above to do it through powershell. The syntax is:
1,False,IPMI/DCI Over Lan
2,False,Minimum Password Length
3,False,Require Login for iLO RBSU
4,False,Authentication Failure Logging
5,False,Secure Boot
6,False,Password Complexity
7,False,Last Firmware Scan Result
8,False,Require Host Authentication
9,False,SNMPv1
10,False,Default SSL Certificate in Use
11,False,Global Component Integrity
If I remember correctly, this required powershell 7 because of the Basic Auth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2024 08:28 PM - last edited on 09-16-2024 02:08 AM by support_s
08-07-2024 08:28 PM - last edited on 09-16-2024 02:08 AM by support_s
Re: toggling GlobalComponentIntegrity for iLO6 with Powershell
Hope this is useful.
https://support.hpe.com/hpesc/public/docDisplay?docId=a00134576en_us
Not sure if there is any powershell way to do it.
This is for all HPE Gen11 system with iLO 6, the "Global Component Integrity" security parameter gets automatically disabled from an enabled state after the server is reset.
If Global component integrity is in disabled state then you can go to iLO 6 web interface can be manually enabled, you can enable this option on the Access Settings page.
https://support.hpe.com/hpesc/public/docDisplay?docId=a00134576en_us
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Tags:
- iLO_OA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2024 07:17 AM
08-08-2024 07:17 AM
Re: toggling GlobalComponentIntegrity for iLO6 with Powershell
Thanks Sam - I actually just ran in to this issue when I retasked one of our Gen11 blades a couple of days ago.
Keith