Start a Conversation

Unsolved

B

5 Posts

910

June 1st, 2020 07:00

Idrac Redfish LDAP

Hi

I plan to connect to LDAP idrac via a script using redfish. Connecting to LDAP manually works. But in https://topics-cdn.dell.com/pdf/idrac9-lifecycle-controller-v33-series_api-guide2_en-us.pdf I didn't find the redfish url to connect to LDAP. What am I doing wrong ?

4 Operator

 • 

3K Posts

June 1st, 2020 08:00

I assume you are trying to configure LDAP on iDRAC using redfish. If yes you can do patch on below URI 

redfish/v1/Managers/iDRAC.Embedded.1/Attributes

To get a list of attributes for PATCH you can do a get on below URI

redfish/v1/Managers/iDRAC.Embedded.1/Attributes?$select=LDAP.*

 

Sample Output of GET

 
 

 

"Attributes":{
"LDAP.1.BaseDN": "ou=XXXX,dc=XXXX,dc=XXX",
"LDAP.1.BindDN": "",
"LDAP.1.BindPassword": null,
"LDAP.1.CertValidationEnable": "Disabled",
"LDAP.1.Enable": "Enabled",
"LDAP.1.GroupAttribute": "",
"LDAP.1.GroupAttributeIsDN": "Enabled",
"LDAP.1.Port": 636,
"LDAP.1.SearchFilter": "",
"LDAP.1.Server": "XXX.XXX.XXX.XX",
"LDAP.1.UserAttribute": "******"
}

 

No Events found!

Top