URI | Description |
---|---|
<base_URI>/config/running/management-security |
Sets and retrieves the supported TLS version on the device for both scenarios where the device acts as a server or as a client. |
GET URIs | Description |
---|---|
<base_URI>/config/running/management-security |
Retrieves the current TLS support configuration. |
POST URIs | Payload | Description |
---|---|---|
<base_URI>/config/running/management-security/ssl-profile/server/tls |
<min-version>{1.1|1.2|1.3}<min-version> |
Specifies the configuration of minimum supported TLS version when the device acts as a Server. |
<base_URI>/config/running/management-security/ssl-profile/client/tls |
<min-version>{1.1|1.2|1.3}<min-version> |
Specifies the configuration of minimum supported TLS version when the device acts as a client. |
PATCH URIs | Payload | Description |
---|---|---|
<base_URI>/config/running/management-security/ssl-profile/server/tls |
<min-version>{1.1|1.2|1.3}<min-version> |
Specifies the configuration of minimum supported TLS version when the device acts as a Server. |
<base_URI>/config/running/management-security/ssl-profile/client/tls |
<min-version>{1.1|1.2|1.3}<min-version> |
Specifies the configuration of minimum supported TLS version when the device acts as a client. |
Delete URIs |
---|
<base_URI>/config/running/management-security/ssl-profile/server/tls/min-version |
<base_URI>/config/running/management-security/ssl-profile/client/tls/min-version |
GET, POST, PUT, PATCH, and DELETE operations are supported.
The following example uses the GET option to retrieve the current TLS version when the device is a client.
http://host:80/rest/config/running/management-security/ssl-profile/client
None
<tls> <min-version> 1.2 </min-version> <tls>
The following example uses the PUT option to set the TLS version to version 1.3 when the device is considered a server.
http://host:80/rest/config/running/management-security/ssl-profile/server
<tls> <min-version> 1.3 </min-version> <tls>
None