Re: User-Password character

Sergey Poznyakoff <[email protected]> Fri, 19 Aug 2005 16:17:37 +0300
Newsgroups gmane.comp.gnu.radius.general
Organization Farlep-Internet
Message-ID <[email protected]>
Tomoyasu Maitani <[email protected]> wrote:

> //users file//
> test    Auth-Type = Local,
>                User-Password = "=test=123!"

This is wrong. Starting the string value with an equal sign means that
this string should be evaluated as a Rewrite expression. See 
http://www.gnu.org/software/radius/manual/html_node/radius_117.html#SEC210
for more information.

If a literal string starts with an equal sign, duplicate it:

test    Auth-Type = Local,
                User-Password = "==test=123!"

Regards,
Sergey