piston wrote:
> I'm putting the following code under /etc/freeradius/site-available/default, 
> authorize section just after preproccess
> 
>  if (User-Name =~ "^ABC\/") {

 That is not a valid regular expression.  See "man unlang" for the form
of regular expressions:

        if (User-Name =~ /^ABC\//) {

>                 update control {
>                 Realm == "%another_realm"}

  That is not a valid variable expansion.  See "man unlang", VARIABLES
section for examples of valid variable references.

  Alan DeKok.
-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Reply via email to