Hi,<div>I am trying to do mac authorization as per <a href="http://wiki.freeradius.org/Mac-Auth#Mac-Auth+authorisation+by+SSID+SQL">http://wiki.freeradius.org/Mac-Auth#Mac-Auth+authorisation+by+SSID+SQL</a></div><div>In fact my attempt is much simpler as I just have a very simple table containing the mac address of system to accept. My conf looks like that:</div>
<div><div><br></div><div>authorize {</div><div>...</div><div>        # newer authorized macs</div><div>        if("%{sql_local:SELECT COUNT(mac) FROM authorized_macs WHERE mac ='%{Calling-Station-ID}'}" > 0){</div>
<div>                update control {</div><div>                        Auth-Type := Accept</div><div>                }</div><div>                ok = return</div><div>        }</div><div><br></div><div>...</div></div><div>
}</div><div><br></div><div>But when doing an authentication attemp I get the following in the debug logs :</div><div>...</div><div><div>Thu Aug 25 16:52:56 2011 : Info: ++? if (ok) -> FALSE</div><div>Thu Aug 25 16:52:56 2011 : Info: ++? if ("%{sql_local:SELECT COUNT(mac) FROM authorized_macs WHERE mac ='%{Calling-Station-ID}'}" > 0)</div>
<div>Thu Aug 25 16:52:56 2011 : Info: WARNING: Unknown module "sql_local" in string expansion "%"</div><div>Thu Aug 25 16:52:56 2011 : Info: ? Evaluating ("%{sql_local:SELECT COUNT(mac) FROM authorized_macs WHERE mac ='%{Calling-Station-ID}'}" > 0) -> FALSE</div>
<div>Thu Aug 25 16:52:56 2011 : Info: ++? if ("%{sql_local:SELECT COUNT(mac) FROM authorized_macs WHERE mac ='%{Calling-Station-ID}'}" > 0) -> FALSE</div><div>...</div></div><div><br></div><div>As far as I can understand the documentation this should be working (<a href="http://wiki.freeradius.org/Rlm_sql#SQL+xlat">http://wiki.freeradius.org/Rlm_sql#SQL+xlat</a>). Any helpful hand which can bring some light to the darkness of my intellect?</div>
<div><br></div><div><br></div><div>Cheers,</div><div>seb.</div><div><br></div>