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
  1. Modules

Radius

Use the Radius module to set up a Radius authentication server.

Configuration

Module name: Radius

Name
Description

host

Local host or ip to use (Default: "0.0.0.0")

port

Local port to use (Default: 1812)

secret

Radius shared secret (Mandatory)

attr_encoding

Radius string attribute encoding. Applies to both request and response attributes. (Default: "UTF-8")

authenticators

List of authenticator objects.

{
    "name": "Radius",
    "config": {
        "host": "0.0.0.0",
        "port": 1812,
        "secret": "secret",
        "attr_encoding": "UTF-8",
        "authenticators": [
            {
                "id": "auth01",
                "type": "NoOp",
                "config": {
                    
                }
            }
        ]    
    }
}

See authenticators section for different ways to configure authentication.

PreviousWindowsNextOathValidation