TokensValidationService
This module is used when using Tokens (e.g. OATH) in RADIUS authentication scenarios.
Configuration
Name
Description
db_driver
Driver to connect to database
totp_max_drift
Max drift value for TOTP tokens
hotp_max_lookahead
Look ahead value for HOTP tokens
url
Path to database
username
Username to access database
password
Password for the username
{
"name": "TokensValidationService",
"enabled": true,
"config": {
"name": "default",
"db_driver": "com.microsoft.sqlserver.jdbc.SQLServerDriver",
"totp_max_drift": 10,
"hotp_max_lookahead": 20,
"jdbc": {
"url": "jdbc:sqlserver://127.0.0.1:1433;database=enrollment;encrypt=false",
"username": "db_user_account",
"password": "db_user_password"
}
}
}