Hi Neal:<br><br>Thanks for the response.<br>authorize {<br><br> if ("%{NAS-Port-Type}" =~ /^Wireless/){<br>    if ("%{NAS-Identifier}" =~ /^gktest-nas-id/){<br><br>if ("%{Called-Station-Id}" =~ /(.*):(.*)/){<br>
<br>update control {<br>%{Called-Station-SSId} = "%{2}"<br><br>If I do anything like above try and use any new variable<br>for example here,<br>%{Called-Station-SSId}<br><br>I get this error when starting radius deamon.<br>
<br>Sun Oct 17 18:19:02 2010 : Error: /etc/freeradius/sites-enabled/default[71]: Invalid expansion: "%{2}"<br><br>Look forward to your comments.<br><br>Best Regards<br><br>-Gyan<br><br>It happens both in update request and update control<br>
<br><div class="gmail_quote">On Fri, Oct 15, 2010 at 3:00 AM,  <span dir="ltr"><<a href="mailto:freeradius-devel-request@lists.freeradius.org">freeradius-devel-request@lists.freeradius.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Send Freeradius-Devel mailing list submissions to<br>
        <a href="mailto:freeradius-devel@lists.freeradius.org">freeradius-devel@lists.freeradius.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.freeradius.org/mailman/listinfo/freeradius-devel" target="_blank">http://lists.freeradius.org/mailman/listinfo/freeradius-devel</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:freeradius-devel-request@lists.freeradius.org">freeradius-devel-request@lists.freeradius.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:freeradius-devel-owner@lists.freeradius.org">freeradius-devel-owner@lists.freeradius.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of Freeradius-Devel digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. RE: Upgrading Free Radius Proxy functionality (Garber, Neal)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 14 Oct 2010 09:42:59 -0400<br>
From: "Garber, Neal" <<a href="mailto:Neal.Garber@iberdrolausa.com">Neal.Garber@iberdrolausa.com</a>><br>
Subject: RE: Upgrading Free Radius Proxy functionality<br>
To: "'FreeRadius developers mailing list'"<br>
        <<a href="mailto:freeradius-devel@lists.freeradius.org">freeradius-devel@lists.freeradius.org</a>><br>
Message-ID:<br>
        <<a href="mailto:3FF48394E621F14F97A9117CF92D138E5863CDAE1D@EEROCH1CMS1.Energyeast.net">3FF48394E621F14F97A9117CF92D138E5863CDAE1D@EEROCH1CMS1.Energyeast.net</a>><br>
<br>
Content-Type: text/plain; charset="us-ascii"<br>
<br>
> SSID based forwarding takes precedence over realm and default forwarding.<br>
<br>
> Please give comments or pointers about how to include this functionality to enhance forwarding and to change order.<br>
<br>
Use unlang.  We use Cisco APs which pass the SSID in a Cisco-AVPair attribute.  So, perhaps you could use something similar to the following in the authorize section of sites-enabled/default:<br>
<br>
        # Adjust below to capture the SSID from the request<br>
        # If you're not sure what attr. has SSID, look at your debug output<br>
        # If it's not in any request attr, consult your NAS documentation on how to make it pass it<br>
        if (Cisco-AVPair =~ /ssid=(.*)/) {<br>
           update request {<br>
                SSID-Name = "%{1}"<br>
           }<br>
        }<br>
<br>
        # Adjust SSID and Realm names below<br>
        # Ensure you create the realms in proxy.conf<br>
        if (SSID-Name) {<br>
           if (SSID-Name == "SSID1") {<br>
              update control {<br>
                 Proxy-To-Realm = "Realm1"<br>
              }<br>
           }<br>
           elseif (SSID-Name == "SSID2") {<br>
              update control {<br>
                 Proxy-To-Realm = "Realm2"<br>
              }<br>
           }<br>
        }<br>
<br>
Also, you'll need to add SSID-Name to the dictionary file as a local attribute.  Something like the following:<br>
<br>
ATTRIBUTE   SSID-Name                   3012    string<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="https://lists.freeradius.org/pipermail/freeradius-devel/attachments/20101014/e1326b84/attachment-0001.html" target="_blank">https://lists.freeradius.org/pipermail/freeradius-devel/attachments/20101014/e1326b84/attachment-0001.html</a>><br>

<br>
------------------------------<br>
<br>
-<br>
List info/subscribe/unsubscribe? See <a href="http://www.freeradius.org/list/devel.html" target="_blank">http://www.freeradius.org/list/devel.html</a><br>
<br>
<br>
End of Freeradius-Devel Digest, Vol 66, Issue 6<br>
***********************************************<br>
</blockquote></div><br>