Skip to main content
Version: ⭐ 23.10

Configuring connection via OpenId Connect

Centreon is compatible with OAuth 2.0/OpenId Connect authentication.

You can use Identity Providers (IdP); these include Microsoft Azure AD, Okta, Keycloak, LemonLDAP::NG or other IdPs that are compatible with the Authorization Code Flow.

Configure OpenID Connect authentication​

Go to Administration > Authentication > OpenID Connect Configuration.

Step 1: Enable authentication​

Enable OpenID Connect authentication:

  • Enable OpenId Connect authentication: enables or disables OpenId Connect authentication.
  • Authentication mode: indicates if the authentication should be done using only OpenId Connect or using local authentication as well (Mixed). In mixed mode, users created manually in Centreon (and not identified via Open ID) will also be able to log in.

When setting the parameters, we recommend that you activate the "mixed" mode. This will allow you to retain access to the local admin account in the event of a misconfiguration.

Step 2: Configure Identity Provider access credentials​

Configure Identity Provider information:

  • Base URL: defines the identity provider's base URL for OpenId Connect endpoints (mandatory).
  • Authorization Endpoint: defines the authorization endpoint, for example /authorize (mandatory).
  • Token Endpoint: defines the token endpoint, for example /token (mandatory).
  • Client ID: defines the Client ID (mandatory).
  • Client Secret: defines the Client secret (mandatory).
  • Scopes: defines the scopes of the identity provider, for example openid. Separate scopes by spaces.

    Depending on the identity provider, it is necessary to enter several scopes in order to retrieve the claim that will identify users. This is indicated in the provider's configuration documentation.

  • Login attribute path: defines which of the variables returned by Introspection Token Endpoint or User Information Endpoint must be used to authenticate users. For example sub or email.
  • End Session Endpoint: defines the logout endpoint, for example /logout.

Depending on your identity provider, set either of the following two endpoints:

  • User Information Endpoint: defines the user information endpoint, for example /userinfo.
  • Introspection Token Endpoint: defines the introspection token endpoint, for example /introspect (mandatory).

You can also configure:

  • Use Basic Auth for Token Endpoint Authentication: the Authorization: Basic method will be used. Enable this option if your identity provider requires it.
  • Disable verify peer: allows you to disable SSL peer validation. The identity provider's certificate will not be checked: use this option for test purposes only.

You can define a full URL for the endpoints in case the base of the URL is different from the others.

You can enable Authentication debug through the Administration > Parameters > Debug menu to understand authentication failures and improve your setup.

Step 3: Configure authentication conditions​

  • You can whitelist or blacklist IP addresses. If you leave the first two fields empty, all IP addresses will be authorized to access the Centreon interface.

    • Trusted client addresses: If you enter IP addresses in this field, only these IP addresses will be allowed to access the Centreon interface. All other IP addresses will be blocked. IP addresses must be separated by commas.
    • Blacklist client addresses: These IP addresses will be blocked. All other IP addresses will be allowed to access the Centreon interface.
  • You can also define conditions according to which users will be allowed to log in or not, based on the data received by a particular endpoint.

    • Activate Enable conditions on identity provider.

    • Define which attribute from which endpoint will be used to validate the conditions.

    • In Define authorized conditions values, define which will be the authorized values returned by this endpoint. If you enter several values, all will have to be met for the condition to be validated. All users that try to connect with another value will be unable to log in.

      In the example below, the Conditions attribute path is status and Define authorized conditions values is activated. If the Introspection endpoint gives you the following response, then the user is allowed to log in:

      {
      ...
      "name": "OpenId Connect OIDC",
      "given_name": "OpenId Connect",
      "family_name": "OIDC",
      "preferred_username": "oidc",
      "email": "oidc@localhost",
      "email_verified": false,
      ...
      "status": "activated"
      }

      Currently, only character string values can be used.

Step 4: Manage user creation​

If you turn on Enable auto import, users that log in to Centreon for the first time will be created in the Centreon configuration. (Turning the option on does not automatically import all users from your infrastructure.)

  • Enable auto import: enables or disables automatic user import. If auto import is disabled, you will have to create each user manually before they can log in.
  • Contact template: select a contact template that will be applied to newly imported users. In particular, this allows you to manage the default configuration of the notifications.
  • Email attribute path: defines which of the variables returned by Introspection Token Endpoint or User Information Endpoint must be used to get the user's email address.
  • Fullname attribute path: defines which of the variables returned by Introspection Token Endpoint or User Information Endpoint must be used to get the user's full name.

Step 5: Manage Authorizations​

If you turn on Enable automatic management, users who log in to Centreon will be automatically granted rights, as they will be linked to access groups according to the rules you have defined.

  • Define which attribute from which endpoint will be used to retrieve values for enforcing relationships with access groups.
  • Apply only first role: If several roles are found for a specific user in the identity provider's information, then only the first role will be applied. If the option is turned off, all roles will be applied.
  • Match an attribute retrieved from the identity provider with the access group you want the user to belong to.

For example, the Introspection endpoint gives you the following response and Apply only first role is enabled. The Roles attribute path will be realm_access.roles and Define the relation between roles and ACL access groups will establish a relationship between the value centreon-editor and a defined access group in Centreon:

{
...
"realm_access": {
"roles": ["centreon-editor", "centreon-admin", "user"]
},
...
}

When retrieving attributes, Centreon will merge the attributes retrieved from the JWT (JSON Web Token) with those retrieved from the selected entry point, giving priority to the JWT attributes. Thus, if an attribute is available in the JWT and in the selected entry point, then the selected attribute will be the one coming from the JWT.

Each time the user logs in, authorization management is reinitialized to take into account any new information from the identity provider.

Step 6: Manage Contact groups​

If you turn on Enable automatic management, users who log in to Centreon will be attached to the contact groups you have defined.

  • Define which attribute from which endpoint will be used to retrieve values to create relationships with access groups.
  • Match the attributes retrieved from the identity provider with the contact groups you want the user to belong to.

For example, if the Introspection endpoint gives you the following response, the Groups attribute path will be groups and Define the relation between roles and contact groups will define a relationship between the value Windows and a defined contact group in Centreon, then between Linux and another contact group, etc:

{
...
"groups": ["Windows", "Linux", "DBA"],
...
}

When retrieving attributes, Centreon will merge the attributes retrieved from the JWT (JSON Web Token) with those retrieved from the selected entry point, giving priority to the JWT attributes. Thus, if an attribute is available in the JWT and in the selected entry point, then the selected attribute will be the one coming from the JWT.

Each time the user logs in, group management is reinitialized to take into account any new information from the identity provider.

Step 7: Configure your Identity Provider (IdP)​

Configure your IdP to add the Centreon application to use the OpenID Connect protocol to authenticate your users, and to authorize the following redirect URI to forward your connected users to Centreon:

{protocol}://{server}:{port}/centreon/authentication/providers/configurations/openid

Replace {protocol}, {server} and {port} with the URI to access to your Centreon server. For example: https://centreon.domain.net/centreon/authentication/providers/configurations/openid

Examples of configuration​

Here is an example configuration for Microsoft Azure Active Directory:

FieldsValues
Base Urlhttps://login.microsoftonline.com/${tenantId}/oauth2/v2.0
Authorization Endpoint/authorize
Token Endpoint/token
User Information Endpointhttps://graph.microsoft.com/oidc/userinfo
End Session Endpoint
Scopeopenid
Login claim valueemail
Client ID${clientId}
Client Secret${clientSecret}

Please replace ${tenantId}, ${clientId} and ${clientSecret} with your own values.