|
> As you can see there is the message: > "rlm_pap: WARNING! No "known good" password found for the user. Authentication may fail because of this. > modcall[authorize]: module "pap" returns noop for request 9" > So the php script for pap authorization is not even executed. > Maybe there is something i missed in configuration? > > Thanx > Maccari Dario That's what I did to make it works I added a new script for authorization which set the auth-type for final step and added that script in the authorize section ********** radiusd.conf *************This is the relevant script part ************* radiusauth.php **********<?php $username = getenv("USER_NAME"); $userpass = getenv ("USER_PASSWORD"); if ($username!= "" && $userpass !="") { echo "Auth-Type = PAP\n"; } ?> ************* END radiusauth.php ********** Does what i did have any sense? Is it robust enough? Bye and thanx Dario Maccari Get news, entertainment and everything you care about at Live.com. Check it out! |