simplesamlphp/simplesamlphp-module-radius

A module that is able perform authentication against a RADIUS server

Installs: 5 139 354

Dependents: 2

Suggesters: 0

Security: 0

Stars: 2

Watchers: 7

Forks: 2

Type:simplesamlphp-module

v2.0.2 2024-05-08 07:44 UTC

This package is auto-updated.

Last update: 2024-05-08 07:44:59 UTC


README

Build Status Coverage Status Scrutinizer Code Quality Type Coverage Psalm Level

This module provides an authentication source for interaction with Radius servers.

Installation

Once you have installed SimpleSAMLphp, installing this module is very simple. Just execute the following command in the root of your SimpleSAMLphp installation:

composer.phar require simplesamlphp/simplesamlphp-module-radius:dev-master

where dev-master instructs Composer to install the master branch from the Git repository. See the releases available if you want to use a stable version of the module.

Next thing you need to do is to enable the module: in config.php, search for the module.enable key and set radius to true:

    'module.enable' => [
         'radius' => true,
         …
    ],