[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-gnu-radius] Q: why user name restriction?
From: |
Sergey Poznyakoff |
Subject: |
Re: [Bug-gnu-radius] Q: why user name restriction? |
Date: |
Thu, 24 Jan 2002 10:23:23 +0200 |
> Just a short question: Why are user profile names -- in the users
> file -- restricted to contain only alphanumerics, -, _ and . ???
> Is there any special reason for that?
The (non-alphanumeric) characters that are valid in a user name
are defined by configuration directive `username-chars'. For
example (in file raddb/config):
option {
username-chars "address@hidden&\/";
...
> For instant, why is '@' forbidden? Might it be extended?
The at-sign is reserved for roaming user-names. It may appear in
username-chars, though.
When using such "extended" usernames in your plaintext user database,
be sure to quote them, e.g.:
"address@hidden" Auth-Type = Crypt-Local, ...
instead of
address@hidden Auth-Type = Crypt-Local, ...
Regards,
Sergey