https://github.com/simplesamlphp/simplesamlphp-module-radius
Authenticate a user against a RADIUS server
https://github.com/simplesamlphp/simplesamlphp-module-radius
Last synced: 9 months ago
JSON representation
Authenticate a user against a RADIUS server
- Host: GitHub
- URL: https://github.com/simplesamlphp/simplesamlphp-module-radius
- Owner: simplesamlphp
- License: lgpl-2.1
- Created: 2019-03-23T09:22:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-18T11:47:14.000Z (about 1 year ago)
- Last Synced: 2025-04-06T08:01:44.174Z (10 months ago)
- Language: PHP
- Size: 123 KB
- Stars: 2
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Module for RADIUS authentication

[](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-radius)
[](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-radius/?branch=master)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-radius)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-radius)
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:
```bash
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](https://github.com/simplesamlphp/simplesamlphp-module-radius/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:
```php
'module.enable' => [
'radius' => true,
…
],
```