tvdijen/simplesamlphp-module-ldapradius

A module that provides authentication against LDAP stores with additional MFA against RADIUS

Installs: 48

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Type:simplesamlphp-module

v1.0.3 2024-04-04 16:03 UTC

This package is auto-updated.

Last update: 2024-04-04 16:04:09 UTC


README

Combined LDAP / Radius authsource

Configuration

    'LDAPRADIUS' => [
        'ldapRadius:LdapRadius',

        // The primary authsource to deal with username & password
        'primary' => 'LDAP',

        // The secondary authsource to deal with username & OTP
        'primary' => 'RADIUS',

        // Type hint to be enforced by the browser for the username-field
        // Defaults to 'text', possible values are 'text' and 'email'
        'usernameTypeHint' => 'email',

        // The pattern to be enforced by the browser for the username-field
        // Defaults to `null`
        'usernamePattern' => null,

        // The minimum password-length to be enforced on the password-field
        // Defaults to `null`
        'passwordMinLength' => 8,

        // The input mode for the OTP-field. This will select the appropriate keyboard on mobile devices
        // Defaults to `null`
        'otpInputMode' => null,

        // The pattern to be enforced by the browser for the OTP-field
        // Defaults to `null`
        'otpPattern' => null,
    ],