<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-US link=blue vlink=purple>

<div class=WordSection1>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>Someone will correct me if I am wrong, but I believe that is the
“unix” entry under sites-available/default.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p> </o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>David<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p> </o:p></span></p>

<div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> freeradius-users-bounces+david.peterson=acc-corp.net@lists.freeradius.org
[mailto:freeradius-users-bounces+david.peterson=acc-corp.net@lists.freeradius.org]
<b>On Behalf Of </b>Martin Richard<br>
<b>Sent:</b> Thursday, June 10, 2010 11:32 AM<br>
<b>To:</b> freeradius-users@lists.freeradius.org<br>
<b>Subject:</b> Removing local auth (freeradius server 2.1.9)<o:p></o:p></span></p>

</div>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal style='margin-bottom:12.0pt'>Hello,<br>
<br>
  I've tried the doc, the wiki, and the ML archives but I can't find an
answer to what must be a simple configuration thing.. I've compiled freeradius
server 2.1.9 and only added two simples lines to $confdir/user:<br>
<br>
mrichard Cleartext-Password := "qwerty"<br>
mrichard2 Cleartext-Password := "qwerty"<br>
<br>
  When starting radiusd -X (yes, I've looked at the output) and testing
these 2 most simple accounts with radtest, the first one fails while the second
one works. The difference being that there's a "mrichard" account on
the box in /etc/passwd while "mrichard2" only exists in radiusd's
config. Hence the output differences when calling "radtest thelogin qwerty
localhost 666 testing123" (cut) :<br>
<br>
for mrichard:<br>
<br>
<span style='font-size:7.5pt;font-family:"Courier New"'>+- entering group PAP
{...}<br>
[pap] login attempt with password "qwerty"<br>
[pap] Using CRYPT encryption.<br>
[pap] Passwords don't match<br>
++[pap] returns reject<br>
Failed to authenticate the user.<br>
Using Post-Auth-Type Reject</span><br>
<br>
for mrichard2:<br>
<br>
<span style='font-size:7.5pt;font-family:"Courier New"'>+- entering group PAP
{...}<br>
[pap] login attempt with password "qwerty"<br>
[pap] Using clear text password "qwerty"<br>
[pap] User authenticated successfully<br>
++[pap] returns ok<br>
+- entering group post-auth {...}<br>
++[exec] returns noop<br>
Sending Access-Accept of id 79 to 127.0.0.1 port 60023</span><br>
<br>
  Of course, the first account works if I use the OS level password
associated with it.<br>
<br>
  After a bit of searching I found a reference in the ML archives to
$confdir/sites-enabled/default and saw "unix" in there with the
description saying it caches the hashes from /etc/passwd and its accompanying
shadow. I've commented those lines and restarted the daemon. Now I get this in
the PAP output for both users:<br>
<span style='font-size:7.5pt;font-family:"Courier New"'><br>
[pap] WARNING! No "known good" password found for the user. 
Authentication may fail because of this.<br>
++[pap] returns noop<br>
No authenticate method (Auth-Type) configuration found for the request:
Rejecting the user<br>
Failed to authenticate the user.<br>
Using Post-Auth-Type Reject</span><br>
<br>
<br>
  I must be missing something rather obvious.. But how can I totally
disable the lookup of OS accounts ?<br>
<br>
  Thanks<br>
<br>
  Martin<o:p></o:p></p>

</div>

</body>

</html>