GET /cryptoSettings
Use this method to return information about current cryptographic settings on Lenovo XClarity Administrator.
Authentication
Authentication with username and password is required.
Request URL
GET https://{management_server_IP}/cryptoSettings
Query parameters
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
Attributes | Type | Description | ||
---|---|---|---|---|
response | Array of objects | Information about each cryptography setting | ||
cipherSuite | String | Attention This attribute will be deprecated in a future release. Minimum cipher suite version to use for server connections. This can be one of the following values.
| ||
minTlsVersionClient | String | Minimum TLS protocol version to use for client connections to other servers (such as the LDAP client). This can be one of the following values.
| ||
minTlsVersionOsDeploy | String | Minimum TLS protocol version to for the Lenovo XClarity Administrator operating-system deployment server. This can be one of the following values.
| ||
minTlsVersionServer | String | Minimum TLS protocol version to use for server connections (such as the web server). This can be one of the following values.
| ||
nistMode | String | Cryptographic mode of Lenovo XClarity Administrator and all managed chassis. This can be one of the following values.
| ||
result | String | Results of the request. This can be one of the following values.
| ||
messages | Array of objects | Information about one or more messages | ||
explanation | String | Additional information to clarify the reason for the message | ||
id | String | Message identifier of a returned message | ||
recovery | Array of objects | Recovery information | ||
text | String | User actions that can be taken to recover from the event | ||
URL | String | Link to the help system for more information, if available | ||
text | String | Message text associated with the message identifier |
The following example is returned if the request is successful.
{
"response": {
"cipherSuite": "tls1.2"
"minTlsVersionClient": "tls1.2",
"minTlsVersionOsDeploy": "tls1.2",
"minTlsVersionServer": "tls1.2",
"nistMode": "nist800-131a"
},
"result": "success",
"messages": [{
"explanation": "",
"id": "FQXHMSE0001I",
"recovery": {
"text": "Information only; no action is required.",
"URL": ""
},
"text": "The request completed successfully."
}]
}
Give documentation feedback