LogoLogo
HomeIntegrityControlSolutionsManagement Center
3.1.0 Radius
3.1.0 Radius
  • THE SERVICE
    • Overview
    • About this release
      • Release notes
      • Breaking changes
    • Get started
    • Installation
      • Container
      • Linux
      • Windows
  • Modules
    • Radius
    • OathValidation
      • Token enrollment
    • Other modules
  • Authenticators
    • Overview
    • Common configuration
      • Selector
      • Response attributes
    • Accept Authenticator
    • Reject Authenticator
    • Username & Password
    • Username, Password & OTP
  • Operations
    • CEF logging
Powered by GitBook
On this page
  • Authenticator
  • Config
  1. Authenticators

Common configuration

PreviousOverviewNextSelector

All authenticators are configured in the same way and share some common configuration properties.

Authenticator

An authenticator represent an authentication scenario like "username and password" or "username, password and one-time password".

Authenticator may have specific configuration properties, below are properties that applies to all authenticators.

Name
Description
Default value
Mandatory

id

Configuration unique identifier.

N/A

type

Authenticator type. (Name of authenticator)

N/A

config

Authenticator configuration object. See below for details.

{}

{
    "id": "auth01",
    "type": "UsernamePassword",
    "config": {
        "custom_identifier": "Company_name",
        "pipe": "uid_pwd_pipe_id",
        "accept_response_attrs": [
            {
                "type": 18,
                "name": "Reply-Message",
                "value": "Have a nice day! (This message was generated at {{{now}}} [{{{request.name}}}#{{{request.id}}}])"
            }
        ]
    }
}

Config

Name
Description
Default value
Mandatory

selector

Authenticator selector.

See .

accept_response_attrs

Response attribute configuration for Access-Accept responses.

See .

challenge_response_attrs

Response attribute configuration for Access-Challenge responses.

See .

reject_response_attrs

Response attribute configuration for Access-Reject responses.

See .

custom_identifier

Custom event identifier. (Part of the event data)

{
    "id": "auth01",
    "type": "UsernamePassword",
    "config": {
        "custom_identifier": "Company_name",
        "pipe": "uid_pwd_pipe_id",
        "accept_response_attrs": [
            {
                "type": 18,
                "name": "Reply-Message",
                "value": "Have a nice day! (This message was generated at {{{now}}} [{{{request.name}}}#{{{request.id}}}])"
            }
        ]
    }
}
Selector
Response attributes
Response attributes
Response attributes