- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Remote Server Management
- >
- Re: Changing ILO hostname with ILOREST
Categories
Company
Local Language
Forums
Discussions
- Integrity Servers
- Server Clustering
- HPE NonStop Compute
- HPE Apollo Systems
- High Performance Computing
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp Software
Knowledge Base
Discussions
Forums
Discussions
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
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
07-24-2026 09:37 AM - last edited 3 weeks ago by support_s
07-24-2026 09:37 AM - last edited 3 weeks ago by support_s
Hello, I hope someone can point me in the right direction as I've seen conflicting information on this. In the ILO GUI we can change the hostname here:
ILO-hostname.jpg
If I want to do this with ILOREST, what is the correct resource to modify? Is it HostName under EthernetInterface, or ManagerNetworkProtocol? Or something else?
Solved! Go to Solution.
- Tags:
- ProLiant Server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2026 10:39 AM
07-24-2026 10:39 AM
Query: Changing ILO hostname with ILOREST
System recommended content:
Please click on "Thumbs Up/Kudo" icon to give a "Kudo".
Thank you for being a HPE valuable community member.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2026 12:33 PM
07-24-2026 12:33 PM
Re: Query: Changing ILO hostname with ILOREST
Thanks, but those links aren't related to what I'm asking. I'm attempting to do something like this:
ilorest login xx.xx.xx.xx -u admin -p password
ilorest select EthernetInterface.
ilorest set HostName=ILO-NewHostnameI'm wondering if EthernetInterface is the correct resource to use for this purpose, or if should it be ManagerNetworkProtocol, or something else? This would be for ILO5 or ILO6.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
a month ago
a month ago
SolutionHi @-mike- ,
For HPE iLO, the hostname you see in the iLO GUI is typically the management controller hostname and is exposed through the Manager Ethernet Interface resource, not ManagerNetworkProtocol. The relevant property is usually:
under:
(or the appropriate EthernetInterface instance for your iLO). This follows the Redfish EthernetInterface schema, which includes HostName and FQDN as network identity properties.
With iLOREST, the workflow is generally:
Or via Redfish PATCH:
ManagerNetworkProtocol is used for enabling/configuring management services such as HTTPS, SSH, SNMP, Virtual Media, etc., and is not the resource that stores the iLO hostname itself.
If you're unsure on your particular firmware version, a quick way to verify is:
and compare it to the value shown in the GUI.
Thank you!
Hope this information has helped you, Please click on the "Thumbs Up/Kudo" icon as a token of appreciation. Also, if this post has helped to solve your issue, consider marking this as an "Accepted Solution".
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
a month ago
a month ago
Re: Changing ILO hostname with ILOREST
OK great, thanks for confirming.