我试图使用Radiusd ( CoovaChilli v2.2.5)进行身份验证,它运行在Ubuntu14.04上,但无法成功。
CoovaChilli在ChilliSpot之外使用一些不同的参数。
基于这是自己的文档,CoovaChili与Auth: 0或1 Chillispot一起工作,接受或拒绝。
问题是,我已经尝试了这两个版本,但我仍然不能用radius验证。我必须修改exec模块中的任何内容吗?我想继续使用这两种版本(儿童大麻,coovachilli)
半径误差接收
...
Found Auth-Type = Local
WARNING: Please update your configuration, and remove 'Auth-Type = Local'
WARNING: Use the PAP or CHAP modules instead.
No "known good" password was configured for the user.
As a result, we cannot authenticate the user.
Failed to authenticate the user.
WARNING: Unprintable characters in the password. Double-check the shared secret on the server and the NAS!
Using Post-Auth-Type REJECT
...授权节
authorize {
...
exec
update control {
Auth-Type := "%{reply:Auth-Type}"
}
...
}Exec模块
exec {
wait = yes
program = "authenticate.php"
input_pairs = request
shell_escape = yes
output = none
timeout = 10
output_pairs = reply
}发布于 2014-12-10 19:56:33
如果你得到了上面的错误,你的共享秘密是不正确的。访问-接受或访问拒绝使用共享秘密进行签名,因此如果错误,Chillispot将忽略响应。
发布于 2015-07-01 17:31:47
我收到这个错误时
/etc/raddb/clients.conf我用空格字符定义了客户机的密码。
比如:
client myClient {
ipaddr = 999.999.999.999
secret = password 123
}https://stackoverflow.com/questions/27288925
复制相似问题