Getting Kerberos authentication connection information

Ops Center Common Services REST API Reference Guide

Version
10.9.x
File Size
533 KB
Audience
anonymous
Part Number
MK-99OPS003-06
The following request gets Kerberos authentication connection information registered in Common Services.

Execution permission

You must be a system administrator or a security administrator.

Request line

GET base-URL/security/v1/kerberos-connection-settings

Request message

Object ID
None.
Query parameters
None.
Body
None.

Response message

Body
{
    "clockskew" : 0,
    "dnsLookupKdc" : true
}

Attribute

Type

Description

clockskew

int

Allowable time difference between Common Services and the Kerberos server (in seconds)

dnsLookupKdc

boolean

Whether to query the DNS server for KDC information

  • true: Queries the server.
  • false: Does not query the server.

Coding example

curl -v -X GET -s "https://example.com:443/portal/security/v1/kerberos-connection-settings" -H "Authorization:Bearer eyJhbxxx"
Tip: Because this request uses SSL communication, you must either run the curl command with the root certificate of the Common Services server certificate specified for the --cacert option, or run the command with the -k option specified. (The -k option runs the command by ignoring SSL errors.)