- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Remote Server Management
- >
- Configure FlexibleLOM FLR-SFP Port Level Configura...
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
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
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
тАО04-05-2023 05:44 AM - last edited on тАО04-10-2023 05:06 PM by support_s
тАО04-05-2023 05:44 AM - last edited on тАО04-10-2023 05:06 PM by support_s
Configure FlexibleLOM FLR-SFP Port Level Configuration FCOE Offload
Hi all
I am currently automating the staging process of HPE servers.
I wonder if there is a way (either through SSH or PowerShell cmdlets) to set the following option without any user interaction:
System Utilities > System Configuration > Embedded FlexibleLOM N Port N : HPE Eth 10/25GB 2p 622FLR-SFP28 CNA - Multi > Port Level Configuration > FCOE Offload
FCOE Offload can be set to either "Enabled" or "Disabled" through the HTML5 console but I was not able to find any command to set this option remotely without user interaction.
Thanks a lot for your assistance!
- Tags:
- Port
- Prolaint server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2023 09:10 PM
тАО04-09-2023 09:10 PM
Re: Configure FlexibleLOM FLR-SFP Port Level Configuration FCOE Offload
Have checked the Scripting Tools for Windows PowerShell User Guide,
If you feel this was helpful please click the KUDOS! Thumbs below!
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
тАО04-11-2023 05:02 AM - last edited on тАО04-11-2023 06:03 AM by Sunitha_Mod
тАО04-11-2023 05:02 AM - last edited on тАО04-11-2023 06:03 AM by Sunitha_Mod
Re: Configure FlexibleLOM FLR-SFP Port Level Configuration FCOE Offload
Thanks a lot for checking!
If I only could set it through the PowerShell BIOS cmdlets...
I am at the point where I'd take any possible solution that does not require user interaction.
I mean, there must be a way, I cannot imagine that companies are doing this manually on thousands of servers, right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-13-2023 03:20 AM
тАО04-13-2023 03:20 AM
Re: Configure FlexibleLOM FLR-SFP Port Level Configuration FCOE Offload
@BITCKU wrote:Hi all
I am currently automating the staging process of HPE servers.
I wonder if there is a way (either through SSH or PowerShell cmdlets) to set the following option without any user interaction:
System Utilities > System Configuration > Embedded FlexibleLOM N Port N : HPE Eth 10/25GB 2p 622FLR-SFP28 CNA - Multi > Port Level Configuration > FCOE Offload
FCOE Offload can be set to either "Enabled" or "Disabled" through the HTML5 console but I was not able to find any command to set this option remotely without user interaction.
Thanks a lot for your assistance!
Yes, it is possible to configure the FCOE Offload option on the FlexibleLOM FLR-SFP port level using either SSH or PowerShell cmdlets.
For SSH, you can use the following command to enable FCOE Offload on port 1:
set flr_sfp_ports -p 1 -fcoe on
To disable FCOE Offload on port 1, use the following command:
set flr_sfp_ports -p 1 -fcoe off
For PowerShell cmdlets, you can use the HPE Scripting Tools for Windows PowerShell to configure the FCOE Offload option. The cmdlet to enable FCOE Offload on port 1 is as follows:
Set-HPEFlexibleLOMSetting -FlexibleLOMPort 1 -FCOEOffloadEnabled $True
To disable FCOE Offload on port 1, use the following cmdlet:
Set-HPEFlexibleLOMSetting -FlexibleLOMPort 1 -FCOEOffloadEnabled $False
Note that you will need to have the appropriate permissions and credentials to run these commands.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-13-2023 06:05 AM - edited тАО04-14-2023 12:17 AM
тАО04-13-2023 06:05 AM - edited тАО04-14-2023 12:17 AM
Re: Configure FlexibleLOM FLR-SFP Port Level Configuration FCOE Offload
Thanks a lot for your input @Vinky_99 .
If I connect through SSH to the iLO, I can use both DMTF SMASH CLP and HPE CLI commands.
The SMASH CLP commands require a target specification, so the provided syntax does not work for me:
</>hpiLO-> set flr_sfp_ports -p 1 -fcoe on
status=2
status_tag=COMMAND PROCESSING FAILED
error_tag=INVALID TARGET
Thu Apr 13 11:53:27 2023
Invalid target.
I was not able to figure out where the flr_sfp_ports target should be located in. Could you specify please?
Unfortunately, the provided PowerShell command does not work for me either:
PS T:\staging> Set-HPEFlexibleLOMSetting
Set-HPEFlexibleLOMSetting : The term 'Set-HPEFlexibleLOMSetting' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that
the path is correct and try again.
At line:1 char:1
+ Set-HPEFlexibleLOMSetting
+ ~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Set-HPEFlexibleLOMSetting:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
What is the 'Set-HPEFlexibleLOMSetting' cmdlet part of? I have the following scripting tools for Windows PowerShell installed:
- BIOS cmdlets 3.0.0.0
- iLO cmdlets 3.3.0.0
- Smart Array cmdlets 1.0.2.0
Target systems are iLO 5/Gen10 or later.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2023 03:55 AM
тАО04-18-2023 03:55 AM
Re: Configure FlexibleLOM FLR-SFP Port Level Configuration FCOE Offload
Regarding the DMTF SMASH CLP command, you can try specifying the target by including the iLO hostname or IP address in the command. For example:
set flr_sfp_ports -s <ilo_address> -p 1 -fcoe on
Replace <ilo_address> with the hostname or IP address of the iLO.
Regarding the Set-HPEFlexibleLOMSetting cmdlet, it is part of the HPE ProLiant Scripting Tools for Windows PowerShell (SPP) package, which is a separate download from the HPE website.
It appears that you have the HPE iLO cmdlets and HPE BIOS cmdlets installed, but not the HPE ProLiant Scripting Tools for Windows PowerShell. You will need to download and install the SPP package to use the Set-HPEFlexibleLOMSetting cmdlet.
After installing the SPP package, you can import the module by running the following command:
Import-Module HPE.ProLiant
Then you should be able to use the Set-HPEFlexibleLOMSetting cmdlet to configure the FCOE Offload option on the FlexibleLOM FLR-SFP port level.
I hope this helps! Let me know