Bjørn Mork wrote:
"Reynold McGuire" <rmcguire@suffolk.edu> writes:
How can I get freeRadius to see "domain.com\username" and convert that to "username@domain.com" and proxy that off?
If you need both styles:
modules { .. realm suffix { format = suffix delimiter = "@" ignore_default = no ignore_null = yes } realm ntdomain { format = prefix delimiter = "\\" ignore_default = no ignore_null = yes }
Correct me if I'm wrong, but that definitely WON'T work. You've got "ignore_null = yes" set on both, therefore the first one will always match. e.g. request: User-Name = "DOM\user" suffix: NULL realm found Stripped-User-Name = "DOM\user" Realm = "NULL" You can only set ignore_null = yes on ONE of the modules. The 2nd will never run otherwise.