Unsolved

This post is more than 5 years old

1 Rookie

 • 

11 Posts

1137

September 3rd, 2018 06:00

Another RedFish question

Creating a local Idrac administrator account via the RedFish api is simple enough but is there any way to grant the newly created account LAN Administrator privileges using RedFish ?

Thanks.

4 Operator

 • 

3K Posts

September 3rd, 2018 06:00

Can you let me know iDRAC FW Version?

1 Rookie

 • 

11 Posts

September 4th, 2018 02:00

Hi Shine, we're using 2.60.60

Thanks.

4 Operator

 • 

3K Posts

September 4th, 2018 21:00

To set IPMI LAN privilege you can perform POST operation on below URI with mentioned body

https:// /redfish/v1/Managers/iDRAC.Embedded.1/Actions/Oem/EID_674_Manager.ImportSystemConfiguration

Body

{
"ShareParameters":{"Target":"iDRAC"},
"ImportBuffer":" Administrator "
}

Note:

Above command will configure LAN privilege for User 3. You need to modify the user index based on your need

IpmiLanPrivilege - Supported Values are Administrator, Operator, User and No Access

 

Once above POST operation is completed you can track the progress of the operation by checking the job progress. Job URI can be found in response as part of header

 

 

Top