[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-gnu-radius] Rewrite trouble
From: |
Sergey Poznyakoff |
Subject: |
Re: [Help-gnu-radius] Rewrite trouble |
Date: |
Wed, 11 Aug 2004 13:39:14 +0300 |
Hi,
[Apologies for the late answer]
Morten Winther <address@hidden> wrote:
> Ive tried this:
[...]
> integer
> set_cph()
> {
> %[NAS-Identifier] = "CPHAIRTEST";
> return 0;
> }
Doesn't it work?
> Second problem
>
> How can I copy NAS-Identifier to Orig-NAS-Identifier in this hint:
Modify set_cph as follows:
set_cph()
{
%[Orig-NAS-Identifier] = %[NAS-Identifier];
%[NAS-Identifier] = "CPHAIRTEST";
return 0;
}
Regards,
Sergey