Re: [asterisk-users] Asterisk Radius CDR

2016-10-06 Thread Ahmed Munir
Hi Willy & Andrew,

After doing alot of hits and tries, the issue found at the
dictionary.digium at radius client end. For the solution, I used the
dictionary.digium that comes with asterisk source file, restarted asterisk
services and able to send CDR data over to radius server.

Thanks guys for your help.

On Thu, Sep 29, 2016 at 12:18 PM, Ahmed Munir <ahmedmunir...@gmail.com>
wrote:

> Hi Guys,
>
> Even though enabling Asterisk debug (setting to 9), getting same message
> and not providing enough logs;
>
>  DEBUG[10801][C-]: cdr_radius.c:208 radius_log: Unable to create
> RADIUS record. CDR not recorded!
>
> As per my observation, if I update/rename the dictionary.digium file name
> in dictionary to dictionary.digium1 and unload and load cdr_radius.so
> module, getting message as;
>
>  NOTICE[10792]: cdr_radius.c:271 load_module: Cannot load radiusclient-ng
> dictionary file.
>
> Later I correct it, able to load cdr_radius.so module.
>
> Seems like it there is some issue with cdr_radius.so module itself interm
> of passing data over to radiusclient from asterisk.
>
> Even though I've granted and set permissions 777 for radiusclient configs,
> but the issue remains the same.
>
> Please advise the fix for resolving this issue.
>
>
>
> Date: Thu, 29 Sep 2016 18:11:15 +0800
>> From: Andrew Ivins <and...@ivins.id.au>
>> To: wil...@offermans.rompen.nl
>> Cc: asterisk-users <asterisk-users@lists.digium.com>
>> Subject: Re: [asterisk-users] Asterisk Radius CDR
>> Message-ID:
>> 

Re: [asterisk-users] Asterisk Radius CDR

2016-09-29 Thread Andrew Ivins
You won't see anything in the Asterisk logs because there's nothing to log.
The error happens in the freeradius-client library and returns an integer.
On 29 Sep 2016 17:44, "Willem Offermans" <wil...@offermans.rompen.nl> wrote:

Hello Andrew and asterisk friends,

I suspect that asterisk has problems to deal with the radiusclient in some
way. Therefore it cannot contact the radius server. There should be some
clue in the log files of asterisk, other than ``Unable to create RADIUS
record. CDR not recorded''

As a last resort, extra debug info from the source code can be invoked by
printf commands. But this involves some work.

On Thu, Sep 29, 2016 at 04:38:06PM +0800, Andrew Ivins wrote:
> You don't get anything in the Asterisk logs because freeradius-client
> (formerly radiusclient-ng) returns a single failure code for any failure
> when building a radius request.
>
> Andrew
>
> On 29 September 2016 at 15:55, Willy Offermans <
aster...@offermans.rompen.nl
> > wrote:
>
> > Hi Ahmed and asterisk friends,
> >
> > So asterisk cannot contact the radius server.
> >
> > The radiusclient __can__ contact the radius server.
> >
> > Check in the asterisk log files why asterisk cannot contact the radius
> > server! Be also aware of the user, who is running the daemons. This user
> > might need read access to certain configuration files.
> >
> > On Wed, Sep 28, 2016 at 01:24:58PM -0400, Ahmed Munir wrote:
> > > Hi Andrew and Willy,
> > >
> > > Thanks for sharing the info.
> > >
> > > As for enabling radius server debugging 'radiusd -X', made some test
> > calls
> > > don't see the radiusclient sending data to radius server. However,
using
> > > radtest or radiusclient testing, able to send data to radius server
> > (after
> > > enabling debug).
> > >
> > > For further testing, on my other server  using OpenSIPs, setup the
> > > radiusclient  and data was able to send over to radius server without
any
> > > issue i.e. using same radiusclient config that I'm using for Asterisk
> > > radiusclient.
> > >
> > > Btw, will try to work on Andrew advise and will update you if I make
any
> > > progress.
> > >
> > >
> > >
> > > Date: Wed, 28 Sep 2016 10:09:51 +0200
> > > > From: Willy Offermans <aster...@offermans.rompen.nl>
> > > > To: Asterisk Users Mailing List - Non-Commercial Discussion
> > > > <asterisk-users@lists.digium.com>
> > > > Subject: Re: [asterisk-users] Asterisk Radius CDR
> > > > Message-ID: <20160928080951.ga4...@vpn.offrom.nl>
> > > > Content-Type: text/plain; charset=us-ascii
> > > >
> > > > Hello Ahmed, Andrew, and asterisk friends,
> > > >
> > > > Some time ago, I ran into similar problems as well :) I can confirm
the
> > > > statement of Andrew: Turn on the logging facilities and you will
find
> > your
> > > > issue most likely.  However, you need also a strategy. ``Radius
client
> > > > testing'' as you mentioned, can mean anything. The point is, can
> > asterisk
> > > > talk to the freeradius server via the client settings? To my
opinion,
> > this
> > > > is easy to test. Maybe the message: ``cdr_radius.c:208 radius_log:
> > Unable
> > > > to create RADIUS record. CDR not recorded'' already implies that
this
> > is
> > > > not possible. I cannot judge it. You can by turning on radiusd -X
and
> > have
> > > > a close look to the output.
> > > >
> > > > On Wed, Sep 28, 2016 at 07:59:13AM +0800, Andrew Ivins wrote:
> > > > > Hi Ahmed,
> > > > >
> > > > > I ran into similar problems. freeradius-client returns the same
error
> > > > code
> > > > > for numerous failure cases, so Asterisk doesn't get an opportunity
> > to log
> > > > > anything useful. If you look here:
> > > > >
> > > > > https://github.com/FreeRADIUS/freeradius-client/blob/master/
> > > > lib/buildreq.c
> > > > >
> > > > > You'll see many instances where it returns ERROR_RC. You are
almost
> > > > > certainly running into one of these. I ended up putting in print
> > debug
> > > > into
> > > > > that file and recompiling. I think in my case it was as simple as
a
> > > > > hostname not resolving. Once you're not working blind, you'll find
> > what
> > > > is
> > > >

Re: [asterisk-users] Asterisk Radius CDR

2016-09-29 Thread Andrew Ivins
You don't get anything in the Asterisk logs because freeradius-client
(formerly radiusclient-ng) returns a single failure code for any failure
when building a radius request.

Andrew

On 29 September 2016 at 15:55, Willy Offermans <aster...@offermans.rompen.nl
> wrote:

> Hi Ahmed and asterisk friends,
>
> So asterisk cannot contact the radius server.
>
> The radiusclient __can__ contact the radius server.
>
> Check in the asterisk log files why asterisk cannot contact the radius
> server! Be also aware of the user, who is running the daemons. This user
> might need read access to certain configuration files.
>
> On Wed, Sep 28, 2016 at 01:24:58PM -0400, Ahmed Munir wrote:
> > Hi Andrew and Willy,
> >
> > Thanks for sharing the info.
> >
> > As for enabling radius server debugging 'radiusd -X', made some test
> calls
> > don't see the radiusclient sending data to radius server. However, using
> > radtest or radiusclient testing, able to send data to radius server
> (after
> > enabling debug).
> >
> > For further testing, on my other server  using OpenSIPs, setup the
> > radiusclient  and data was able to send over to radius server without any
> > issue i.e. using same radiusclient config that I'm using for Asterisk
> > radiusclient.
> >
> > Btw, will try to work on Andrew advise and will update you if I make any
> > progress.
> >
> >
> >
> > Date: Wed, 28 Sep 2016 10:09:51 +0200
> > > From: Willy Offermans <aster...@offermans.rompen.nl>
> > > To: Asterisk Users Mailing List - Non-Commercial Discussion
> > > <asterisk-users@lists.digium.com>
> > > Subject: Re: [asterisk-users] Asterisk Radius CDR
> > > Message-ID: <20160928080951.ga4...@vpn.offrom.nl>
> > > Content-Type: text/plain; charset=us-ascii
> > >
> > > Hello Ahmed, Andrew, and asterisk friends,
> > >
> > > Some time ago, I ran into similar problems as well :) I can confirm the
> > > statement of Andrew: Turn on the logging facilities and you will find
> your
> > > issue most likely.  However, you need also a strategy. ``Radius client
> > > testing'' as you mentioned, can mean anything. The point is, can
> asterisk
> > > talk to the freeradius server via the client settings? To my opinion,
> this
> > > is easy to test. Maybe the message: ``cdr_radius.c:208 radius_log:
> Unable
> > > to create RADIUS record. CDR not recorded'' already implies that this
> is
> > > not possible. I cannot judge it. You can by turning on radiusd -X and
> have
> > > a close look to the output.
> > >
> > > On Wed, Sep 28, 2016 at 07:59:13AM +0800, Andrew Ivins wrote:
> > > > Hi Ahmed,
> > > >
> > > > I ran into similar problems. freeradius-client returns the same error
> > > code
> > > > for numerous failure cases, so Asterisk doesn't get an opportunity
> to log
> > > > anything useful. If you look here:
> > > >
> > > > https://github.com/FreeRADIUS/freeradius-client/blob/master/
> > > lib/buildreq.c
> > > >
> > > > You'll see many instances where it returns ERROR_RC. You are almost
> > > > certainly running into one of these. I ended up putting in print
> debug
> > > into
> > > > that file and recompiling. I think in my case it was as simple as a
> > > > hostname not resolving. Once you're not working blind, you'll find
> what
> > > is
> > > > happening pretty quickly.
> > > >
> > > > Andrew
> > > >
> > > > On 28 September 2016 at 03:32, Ahmed Munir <ahmedmunir...@gmail.com>
> > > wrote:
> > > >
> > > > > I did radius client status testing with radius server, able to
> access
> > > the
> > > > > radius server. However, still getting radius CDR issue after
> setting
> > > debug
> > > > > level 8 even granting 666 access to radiusclient-ng config files.
> > > > >
> > > > > message: cdr_radius.c:208 radius_log: Unable to create RADIUS
> record.
> > > CDR
> > > > > not recorded!
> > > > >
> > > > > Please advise if I missed out anything.
> > > > >
> > > > >
> > > > > Date: Mon, 26 Sep 2016 12:09:34 +0200
> > > > >> From: Willy Offermans <aster...@offermans.rompen.nl>
> > > > >> To: Asterisk Users Mailing List - Non-Commercial Discussion
> > > > >> <asteri

Re: [asterisk-users] Asterisk Radius CDR

2016-09-29 Thread Willy Offermans
Hi Ahmed and asterisk friends,

So asterisk cannot contact the radius server.

The radiusclient __can__ contact the radius server.

Check in the asterisk log files why asterisk cannot contact the radius 
server! Be also aware of the user, who is running the daemons. This user 
might need read access to certain configuration files.  

On Wed, Sep 28, 2016 at 01:24:58PM -0400, Ahmed Munir wrote:
> Hi Andrew and Willy,
> 
> Thanks for sharing the info.
> 
> As for enabling radius server debugging 'radiusd -X', made some test calls
> don't see the radiusclient sending data to radius server. However, using
> radtest or radiusclient testing, able to send data to radius server (after
> enabling debug).
> 
> For further testing, on my other server  using OpenSIPs, setup the
> radiusclient  and data was able to send over to radius server without any
> issue i.e. using same radiusclient config that I'm using for Asterisk
> radiusclient.
> 
> Btw, will try to work on Andrew advise and will update you if I make any
> progress.
> 
> 
> 
> Date: Wed, 28 Sep 2016 10:09:51 +0200
> > From: Willy Offermans <aster...@offermans.rompen.nl>
> > To: Asterisk Users Mailing List - Non-Commercial Discussion
> >     <asterisk-users@lists.digium.com>
> > Subject: Re: [asterisk-users] Asterisk Radius CDR
> > Message-ID: <20160928080951.ga4...@vpn.offrom.nl>
> > Content-Type: text/plain; charset=us-ascii
> >
> > Hello Ahmed, Andrew, and asterisk friends,
> >
> > Some time ago, I ran into similar problems as well :) I can confirm the
> > statement of Andrew: Turn on the logging facilities and you will find your
> > issue most likely.  However, you need also a strategy. ``Radius client
> > testing'' as you mentioned, can mean anything. The point is, can asterisk
> > talk to the freeradius server via the client settings? To my opinion, this
> > is easy to test. Maybe the message: ``cdr_radius.c:208 radius_log: Unable
> > to create RADIUS record. CDR not recorded'' already implies that this is
> > not possible. I cannot judge it. You can by turning on radiusd -X and have
> > a close look to the output.
> >
> > On Wed, Sep 28, 2016 at 07:59:13AM +0800, Andrew Ivins wrote:
> > > Hi Ahmed,
> > >
> > > I ran into similar problems. freeradius-client returns the same error
> > code
> > > for numerous failure cases, so Asterisk doesn't get an opportunity to log
> > > anything useful. If you look here:
> > >
> > > https://github.com/FreeRADIUS/freeradius-client/blob/master/
> > lib/buildreq.c
> > >
> > > You'll see many instances where it returns ERROR_RC. You are almost
> > > certainly running into one of these. I ended up putting in print debug
> > into
> > > that file and recompiling. I think in my case it was as simple as a
> > > hostname not resolving. Once you're not working blind, you'll find what
> > is
> > > happening pretty quickly.
> > >
> > > Andrew
> > >
> > > On 28 September 2016 at 03:32, Ahmed Munir <ahmedmunir...@gmail.com>
> > wrote:
> > >
> > > > I did radius client status testing with radius server, able to access
> > the
> > > > radius server. However, still getting radius CDR issue after setting
> > debug
> > > > level 8 even granting 666 access to radiusclient-ng config files.
> > > >
> > > > message: cdr_radius.c:208 radius_log: Unable to create RADIUS record.
> > CDR
> > > > not recorded!
> > > >
> > > > Please advise if I missed out anything.
> > > >
> > > >
> > > > Date: Mon, 26 Sep 2016 12:09:34 +0200
> > > >> From: Willy Offermans <aster...@offermans.rompen.nl>
> > > >> To: Asterisk Users Mailing List - Non-Commercial Discussion
> > > >> <asterisk-users@lists.digium.com>
> > > >> Subject: Re: [asterisk-users] Asterisk Radius CDR
> > > >> Message-ID: <20160926100934.gb4...@vpn.offrom.nl>
> > > >> Content-Type: text/plain; charset=us-ascii
> > > >>
> > > >>
> > > >> Hello Ahmed,
> > > >>
> > > >> On Fri, Sep 23, 2016 at 04:12:42PM -0400, Ahmed Munir wrote:
> > > >> > Hi,
> > > >> >
> > > >> > I've recently setup Asterisk with Radius CDR by following the
> > document:
> > > >> > https://wiki.asterisk.org/wiki/display/AST/RADIUS+CDR+Backend.
> > > >> >
> > > >> > The issue

Re: [asterisk-users] Asterisk Radius CDR

2016-09-28 Thread Ahmed Munir
Hi Andrew and Willy,

Thanks for sharing the info.

As for enabling radius server debugging 'radiusd -X', made some test calls
don't see the radiusclient sending data to radius server. However, using
radtest or radiusclient testing, able to send data to radius server (after
enabling debug).

For further testing, on my other server  using OpenSIPs, setup the
radiusclient  and data was able to send over to radius server without any
issue i.e. using same radiusclient config that I'm using for Asterisk
radiusclient.

Btw, will try to work on Andrew advise and will update you if I make any
progress.



Date: Wed, 28 Sep 2016 10:09:51 +0200
> From: Willy Offermans <aster...@offermans.rompen.nl>
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> <asterisk-users@lists.digium.com>
> Subject: Re: [asterisk-users] Asterisk Radius CDR
> Message-ID: <20160928080951.ga4...@vpn.offrom.nl>
> Content-Type: text/plain; charset=us-ascii
>
> Hello Ahmed, Andrew, and asterisk friends,
>
> Some time ago, I ran into similar problems as well :) I can confirm the
> statement of Andrew: Turn on the logging facilities and you will find your
> issue most likely.  However, you need also a strategy. ``Radius client
> testing'' as you mentioned, can mean anything. The point is, can asterisk
> talk to the freeradius server via the client settings? To my opinion, this
> is easy to test. Maybe the message: ``cdr_radius.c:208 radius_log: Unable
> to create RADIUS record. CDR not recorded'' already implies that this is
> not possible. I cannot judge it. You can by turning on radiusd -X and have
> a close look to the output.
>
> On Wed, Sep 28, 2016 at 07:59:13AM +0800, Andrew Ivins wrote:
> > Hi Ahmed,
> >
> > I ran into similar problems. freeradius-client returns the same error
> code
> > for numerous failure cases, so Asterisk doesn't get an opportunity to log
> > anything useful. If you look here:
> >
> > https://github.com/FreeRADIUS/freeradius-client/blob/master/
> lib/buildreq.c
> >
> > You'll see many instances where it returns ERROR_RC. You are almost
> > certainly running into one of these. I ended up putting in print debug
> into
> > that file and recompiling. I think in my case it was as simple as a
> > hostname not resolving. Once you're not working blind, you'll find what
> is
> > happening pretty quickly.
> >
> > Andrew
> >
> > On 28 September 2016 at 03:32, Ahmed Munir <ahmedmunir...@gmail.com>
> wrote:
> >
> > > I did radius client status testing with radius server, able to access
> the
> > > radius server. However, still getting radius CDR issue after setting
> debug
> > > level 8 even granting 666 access to radiusclient-ng config files.
> > >
> > > message: cdr_radius.c:208 radius_log: Unable to create RADIUS record.
> CDR
> > > not recorded!
> > >
> > > Please advise if I missed out anything.
> > >
> > >
> > > Date: Mon, 26 Sep 2016 12:09:34 +0200
> > >> From: Willy Offermans <aster...@offermans.rompen.nl>
> > >> To: Asterisk Users Mailing List - Non-Commercial Discussion
> > >> <asterisk-users@lists.digium.com>
> > >> Subject: Re: [asterisk-users] Asterisk Radius CDR
> > >> Message-ID: <20160926100934.gb4...@vpn.offrom.nl>
> > >> Content-Type: text/plain; charset=us-ascii
> > >>
> > >>
> > >> Hello Ahmed,
> > >>
> > >> On Fri, Sep 23, 2016 at 04:12:42PM -0400, Ahmed Munir wrote:
> > >> > Hi,
> > >> >
> > >> > I've recently setup Asterisk with Radius CDR by following the
> document:
> > >> > https://wiki.asterisk.org/wiki/display/AST/RADIUS+CDR+Backend.
> > >> >
> > >> > The issue currently I'm facing is after turning on the debug getting
> > >> > message: cdr_radius.c:208 radius_log: Unable to create RADIUS
> record.
> > >> CDR
> > >> > not recorded!
> > >> >
> > >> > I've checked and grant access 666 to radiusclient config files:
> servers
> > >> &
> > >> > dictionary.digium and 777 to '/var/run/radius.seq'. I've noticed
> that
> > >> > /var/run/radius.seq is not getting updated.
> > >> >
> > >> >
> > >> > Further added, in asterisk CLI while running command: cdr show
> status
> > >> > getting results below;
> > >> >
> > >> > Call Detail Record (CDR) settings
> > >> > --
> 

Re: [asterisk-users] Asterisk Radius CDR

2016-09-28 Thread Willy Offermans
Hello Ahmed, Andrew, and asterisk friends,

Some time ago, I ran into similar problems as well :) I can confirm the 
statement of Andrew: Turn on the logging facilities and you will find your 
issue most likely.  However, you need also a strategy. ``Radius client 
testing'' as you mentioned, can mean anything. The point is, can asterisk 
talk to the freeradius server via the client settings? To my opinion, this 
is easy to test. Maybe the message: ``cdr_radius.c:208 radius_log: Unable 
to create RADIUS record. CDR not recorded'' already implies that this is 
not possible. I cannot judge it. You can by turning on radiusd -X and have 
a close look to the output.

On Wed, Sep 28, 2016 at 07:59:13AM +0800, Andrew Ivins wrote:
> Hi Ahmed,
> 
> I ran into similar problems. freeradius-client returns the same error code
> for numerous failure cases, so Asterisk doesn't get an opportunity to log
> anything useful. If you look here:
> 
> https://github.com/FreeRADIUS/freeradius-client/blob/master/lib/buildreq.c
> 
> You'll see many instances where it returns ERROR_RC. You are almost
> certainly running into one of these. I ended up putting in print debug into
> that file and recompiling. I think in my case it was as simple as a
> hostname not resolving. Once you're not working blind, you'll find what is
> happening pretty quickly.
> 
> Andrew
> 
> On 28 September 2016 at 03:32, Ahmed Munir <ahmedmunir...@gmail.com> wrote:
> 
> > I did radius client status testing with radius server, able to access the
> > radius server. However, still getting radius CDR issue after setting debug
> > level 8 even granting 666 access to radiusclient-ng config files.
> >
> > message: cdr_radius.c:208 radius_log: Unable to create RADIUS record. CDR
> > not recorded!
> >
> > Please advise if I missed out anything.
> >
> >
> > Date: Mon, 26 Sep 2016 12:09:34 +0200
> >> From: Willy Offermans <aster...@offermans.rompen.nl>
> >> To: Asterisk Users Mailing List - Non-Commercial Discussion
> >> <asterisk-users@lists.digium.com>
> >> Subject: Re: [asterisk-users] Asterisk Radius CDR
> >> Message-ID: <20160926100934.gb4...@vpn.offrom.nl>
> >> Content-Type: text/plain; charset=us-ascii
> >>
> >>
> >> Hello Ahmed,
> >>
> >> On Fri, Sep 23, 2016 at 04:12:42PM -0400, Ahmed Munir wrote:
> >> > Hi,
> >> >
> >> > I've recently setup Asterisk with Radius CDR by following the document:
> >> > https://wiki.asterisk.org/wiki/display/AST/RADIUS+CDR+Backend.
> >> >
> >> > The issue currently I'm facing is after turning on the debug getting
> >> > message: cdr_radius.c:208 radius_log: Unable to create RADIUS record.
> >> CDR
> >> > not recorded!
> >> >
> >> > I've checked and grant access 666 to radiusclient config files: servers
> >> &
> >> > dictionary.digium and 777 to '/var/run/radius.seq'. I've noticed that
> >> > /var/run/radius.seq is not getting updated.
> >> >
> >> >
> >> > Further added, in asterisk CLI while running command: cdr show status
> >> > getting results below;
> >> >
> >> > Call Detail Record (CDR) settings
> >> > --
> >> >   Logging:Enabled
> >> >   Mode:   Simple
> >> >   Log unanswered calls:   No
> >> >   Log congestion: No
> >> >
> >> > * Registered Backends
> >> >   ---
> >> > cdr-syslog
> >> > Adaptive ODBC
> >> > cdr-custom
> >> > csv
> >> > radius
> >> >
> >> >
> >> > Please advise if I may missed any steps.
> >> >
> >> > --
> >> > Regards,
> >> >
> >> > Ahmed Munir Chohan
> >>
> >> I cannot advice you about steps you might have missed, probably none. To
> >> my
> >> experience, the documentation is not sufficient.
> >>
> >> I can tell you that freeradius can be run in debug mode: radiusd -X Do
> >> this
> >> and have a close look to the output.
> >>
> >> If you cannot find any attempt to connect to the freeradius server 

Re: [asterisk-users] Asterisk Radius CDR

2016-09-27 Thread Andrew Ivins
Hi Ahmed,

I ran into similar problems. freeradius-client returns the same error code
for numerous failure cases, so Asterisk doesn't get an opportunity to log
anything useful. If you look here:

https://github.com/FreeRADIUS/freeradius-client/blob/master/lib/buildreq.c

You'll see many instances where it returns ERROR_RC. You are almost
certainly running into one of these. I ended up putting in print debug into
that file and recompiling. I think in my case it was as simple as a
hostname not resolving. Once you're not working blind, you'll find what is
happening pretty quickly.

Andrew

On 28 September 2016 at 03:32, Ahmed Munir <ahmedmunir...@gmail.com> wrote:

> I did radius client status testing with radius server, able to access the
> radius server. However, still getting radius CDR issue after setting debug
> level 8 even granting 666 access to radiusclient-ng config files.
>
> message: cdr_radius.c:208 radius_log: Unable to create RADIUS record. CDR
> not recorded!
>
> Please advise if I missed out anything.
>
>
> Date: Mon, 26 Sep 2016 12:09:34 +0200
>> From: Willy Offermans <aster...@offermans.rompen.nl>
>> To: Asterisk Users Mailing List - Non-Commercial Discussion
>>     <asterisk-users@lists.digium.com>
>> Subject: Re: [asterisk-users] Asterisk Radius CDR
>> Message-ID: <20160926100934.gb4...@vpn.offrom.nl>
>> Content-Type: text/plain; charset=us-ascii
>>
>>
>> Hello Ahmed,
>>
>> On Fri, Sep 23, 2016 at 04:12:42PM -0400, Ahmed Munir wrote:
>> > Hi,
>> >
>> > I've recently setup Asterisk with Radius CDR by following the document:
>> > https://wiki.asterisk.org/wiki/display/AST/RADIUS+CDR+Backend.
>> >
>> > The issue currently I'm facing is after turning on the debug getting
>> > message: cdr_radius.c:208 radius_log: Unable to create RADIUS record.
>> CDR
>> > not recorded!
>> >
>> > I've checked and grant access 666 to radiusclient config files: servers
>> &
>> > dictionary.digium and 777 to '/var/run/radius.seq'. I've noticed that
>> > /var/run/radius.seq is not getting updated.
>> >
>> >
>> > Further added, in asterisk CLI while running command: cdr show status
>> > getting results below;
>> >
>> > Call Detail Record (CDR) settings
>> > --
>> >   Logging:Enabled
>> >   Mode:   Simple
>> >   Log unanswered calls:   No
>> >   Log congestion: No
>> >
>> > * Registered Backends
>> >   ---
>> > cdr-syslog
>> > Adaptive ODBC
>> > cdr-custom
>> > csv
>> > radius
>> >
>> >
>> > Please advise if I may missed any steps.
>> >
>> > --
>> > Regards,
>> >
>> > Ahmed Munir Chohan
>>
>> I cannot advice you about steps you might have missed, probably none. To
>> my
>> experience, the documentation is not sufficient.
>>
>> I can tell you that freeradius can be run in debug mode: radiusd -X Do
>> this
>> and have a close look to the output.
>>
>> If you cannot find any attempt to connect to the freeradius server you
>> need
>> to have a close look to the asterisk log files as well. Figure out what is
>> going wrong. There should be some clue.
>>
>> I don't understand the grant access settings. Figure out the user which is
>> running asterisk and set the setting appropriately! I remember that I
>> needed the following access setting:
>>
>> -rw-r-  1 root  asterisk  /usr/local/etc/radiusclient-ng/servers
>>
>> So read access for asterisk to the servers file. This was not documented
>> at
>> all, but somehow logical, if you figured it out.
>>
>> --
>> Met vriendelijke groeten,
>> With kind regards,
>> Mit freundlichen Gruessen,
>> De jrus wah,
>>
>> Wiel
>>
>> *
>>  W.K. Offermans
>>
>>Powered by 
>>
>> (__)
>>  \\\'',)
>>\/  \ ^
>>.\._/_)
>>
>>www.FreeBSD.org
>>
>>
>>
> --
> Regards,
>
> Ahmed Munir Chohan
>
>
> --
> _
> -- Bandwidth and Colocation Provi

Re: [asterisk-users] Asterisk Radius CDR

2016-09-27 Thread Ahmed Munir
I did radius client status testing with radius server, able to access the
radius server. However, still getting radius CDR issue after setting debug
level 8 even granting 666 access to radiusclient-ng config files.

message: cdr_radius.c:208 radius_log: Unable to create RADIUS record. CDR
not recorded!

Please advise if I missed out anything.


Date: Mon, 26 Sep 2016 12:09:34 +0200
> From: Willy Offermans <aster...@offermans.rompen.nl>
> To: Asterisk Users Mailing List - Non-Commercial Discussion
> <asterisk-users@lists.digium.com>
> Subject: Re: [asterisk-users] Asterisk Radius CDR
> Message-ID: <20160926100934.gb4...@vpn.offrom.nl>
> Content-Type: text/plain; charset=us-ascii
>
> Hello Ahmed,
>
> On Fri, Sep 23, 2016 at 04:12:42PM -0400, Ahmed Munir wrote:
> > Hi,
> >
> > I've recently setup Asterisk with Radius CDR by following the document:
> > https://wiki.asterisk.org/wiki/display/AST/RADIUS+CDR+Backend.
> >
> > The issue currently I'm facing is after turning on the debug getting
> > message: cdr_radius.c:208 radius_log: Unable to create RADIUS record. CDR
> > not recorded!
> >
> > I've checked and grant access 666 to radiusclient config files: servers &
> > dictionary.digium and 777 to '/var/run/radius.seq'. I've noticed that
> > /var/run/radius.seq is not getting updated.
> >
> >
> > Further added, in asterisk CLI while running command: cdr show status
> > getting results below;
> >
> > Call Detail Record (CDR) settings
> > --
> >   Logging:Enabled
> >   Mode:   Simple
> >   Log unanswered calls:   No
> >   Log congestion: No
> >
> > * Registered Backends
> >   ---
> > cdr-syslog
> > Adaptive ODBC
> > cdr-custom
> > csv
> > radius
> >
> >
> > Please advise if I may missed any steps.
> >
> > --
> > Regards,
> >
> > Ahmed Munir Chohan
>
> I cannot advice you about steps you might have missed, probably none. To my
> experience, the documentation is not sufficient.
>
> I can tell you that freeradius can be run in debug mode: radiusd -X Do this
> and have a close look to the output.
>
> If you cannot find any attempt to connect to the freeradius server you need
> to have a close look to the asterisk log files as well. Figure out what is
> going wrong. There should be some clue.
>
> I don't understand the grant access settings. Figure out the user which is
> running asterisk and set the setting appropriately! I remember that I
> needed the following access setting:
>
> -rw-r-  1 root  asterisk  /usr/local/etc/radiusclient-ng/servers
>
> So read access for asterisk to the servers file. This was not documented at
> all, but somehow logical, if you figured it out.
>
> --
> Met vriendelijke groeten,
> With kind regards,
> Mit freundlichen Gruessen,
> De jrus wah,
>
> Wiel
>
> *
>  W.K. Offermans
>
>Powered by 
>
> (__)
>  \\\'',)
>\/  \ ^
>.\._/_)
>
>www.FreeBSD.org
>
>
>
-- 
Regards,

Ahmed Munir Chohan
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016
  http://www.asterisk.org/community/astricon-user-conference

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Asterisk Radius CDR

2016-09-26 Thread Willy Offermans
Hello Ahmed,

On Fri, Sep 23, 2016 at 04:12:42PM -0400, Ahmed Munir wrote:
> Hi,
> 
> I've recently setup Asterisk with Radius CDR by following the document:
> https://wiki.asterisk.org/wiki/display/AST/RADIUS+CDR+Backend.
> 
> The issue currently I'm facing is after turning on the debug getting
> message: cdr_radius.c:208 radius_log: Unable to create RADIUS record. CDR
> not recorded!
> 
> I've checked and grant access 666 to radiusclient config files: servers &
> dictionary.digium and 777 to '/var/run/radius.seq'. I've noticed that
> /var/run/radius.seq is not getting updated.
> 
> 
> Further added, in asterisk CLI while running command: cdr show status
> getting results below;
> 
> Call Detail Record (CDR) settings
> --
>   Logging:Enabled
>   Mode:   Simple
>   Log unanswered calls:   No
>   Log congestion: No
> 
> * Registered Backends
>   ---
> cdr-syslog
> Adaptive ODBC
> cdr-custom
> csv
> radius
> 
> 
> Please advise if I may missed any steps.
> 
> -- 
> Regards,
> 
> Ahmed Munir Chohan

I cannot advice you about steps you might have missed, probably none. To my 
experience, the documentation is not sufficient.

I can tell you that freeradius can be run in debug mode: radiusd -X Do this 
and have a close look to the output.

If you cannot find any attempt to connect to the freeradius server you need 
to have a close look to the asterisk log files as well. Figure out what is 
going wrong. There should be some clue.

I don't understand the grant access settings. Figure out the user which is 
running asterisk and set the setting appropriately! I remember that I 
needed the following access setting:

-rw-r-  1 root  asterisk  /usr/local/etc/radiusclient-ng/servers

So read access for asterisk to the servers file. This was not documented at 
all, but somehow logical, if you figured it out.

-- 
Met vriendelijke groeten,
With kind regards,
Mit freundlichen Gruessen,
De jrus wah,

Wiel

*
 W.K. Offermans

   Powered by 

(__)
 \\\'',)
   \/  \ ^
   .\._/_)

   www.FreeBSD.org

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016
  http://www.asterisk.org/community/astricon-user-conference

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] Asterisk Radius CDR

2016-09-23 Thread Ahmed Munir
Hi,

I've recently setup Asterisk with Radius CDR by following the document:
https://wiki.asterisk.org/wiki/display/AST/RADIUS+CDR+Backend.

The issue currently I'm facing is after turning on the debug getting
message: cdr_radius.c:208 radius_log: Unable to create RADIUS record. CDR
not recorded!

I've checked and grant access 666 to radiusclient config files: servers &
dictionary.digium and 777 to '/var/run/radius.seq'. I've noticed that
/var/run/radius.seq is not getting updated.


Further added, in asterisk CLI while running command: cdr show status
getting results below;

Call Detail Record (CDR) settings
--
  Logging:Enabled
  Mode:   Simple
  Log unanswered calls:   No
  Log congestion: No

* Registered Backends
  ---
cdr-syslog
Adaptive ODBC
cdr-custom
csv
radius


Please advise if I may missed any steps.

-- 
Regards,

Ahmed Munir Chohan
-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016
  http://www.asterisk.org/community/astricon-user-conference

New to Asterisk? Start here:
  https://wiki.asterisk.org/wiki/display/AST/Getting+Started

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

[asterisk-users] Asterisk-Radius integration

2011-09-21 Thread Ronald Cepres
Hi all,

I'm trying to setup a system such that when a call comes in to Asterisk, it
first checks the account balance of the caller via Radius and then determine
if the call should go through or not.

I have an average experience in Asterisk but I'm quite new to Radius so I'm
not sure if this setup is possible. Has anyone achieved this kind of setup?

Thanks!

Regards,
Ronald
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Asterisk-Radius integration

2011-09-21 Thread Ronald Cepres
Hi amit,

Thanks for the quick reply.

I'll look into this and hopefully get this to work. Thanks again!

Regards,
Ronald

On Wed, Sep 21, 2011 at 2:45 PM, amit anand onewaytoconn...@gmail.comwrote:

 Hi

 for this you need to write some agi script that will handle the other
 feature.

 Also you can try for A2billing, its a complete solution for Billing with
 asterisk

 On Wed, Sep 21, 2011 at 12:08, Ronald Cepres rbcep...@gmail.com wrote:

 Hi all,

 I'm trying to setup a system such that when a call comes in to Asterisk,
 it first checks the account balance of the caller via Radius and then
 determine if the call should go through or not.

 I have an average experience in Asterisk but I'm quite new to Radius
 so I'm not sure if this setup is possible. Has anyone achieved this kind of
 setup?

 Thanks!

 Regards,
 Ronald

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users




 --

 Amit Anand


 +91 9818559898



 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

[asterisk-users] Asterisk radius configuration

2009-12-01 Thread toqeer ali
I am trying to configure Freeradius with asterisk.what i am doing is

1) install Freeradius
2) Radius Client

confiugration is ok in server file client.conf file also added
dictionary.digium to both dictionary files.

Now on the asterisk side
1) i have compiled asterisk with cdr_radius.so module and also it shows in
asterisk cli show module  *cdr_radius.so*
2) then in cdr.conf file i enable the tag *[radius] *and also mentioned the
radiuscleint-ng.conf file path

now i dont know what to do further i just done this configuration and cdrs
are not generated in freeradius log.

what should i do further ...please help


-- 
Toqeer Ali Syed

Red Hat Certified Engineer
mob: +92 321 9059916
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] asterisk-radius

2009-02-06 Thread Philipp Kempgen
Enrique schrieb:
 My quiestion is if i can use asterisk to authenticate my users of radius on 

Start a new thread please.
http://www.urbandictionary.com/define.php?term=Thread%20Jacking
Your question is not related to extensions ending with #...

   Philipp Kempgen

-- 
AMOOCON 2009, May 4-5, Rostock / Germany   -  http://www.amoocon.de
Asterisk: http://the-asterisk-book.com - http://das-asterisk-buch.de
AMOOMA GmbH - Bachstr. 126 - 56566 Neuwied  -  http://www.amooma.de
Geschäftsführer: Stefan Wintermeyer, Handelsregister: Neuwied B14998
-- 

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] asterisk-radius

2009-02-05 Thread Enrique
hello all
This is my first message to the list.
I'm using asterisk and work fine in my enterprice.
My quiestion is if i can use asterisk to authenticate my users of radius on 
a service of dialup conections and whats i have installed on my server??
i have an  E1 with 30 channels i want destiny 15 to asterisk call and other 
to dialup conection, i need a recomendations please .
regards
sorry my english 



___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk Radius Module

2006-05-30 Thread John Bigelow

Trunk version of Asterisk has a cdr_radius module I believe now.

-John

Oliver Vermeulen wrote:

Hi List,
 
I'm looking for a Asterisk radius module ... Anybody has one ?
 
Thanks,

Oliver
 


*Oliver Vermeulen
*

*_World Venture Group Telecom_* *_
_*

*Corporate Address:**
*Str Avionului Nr 35/bl16J/3
Bucharest, 014333 Romania

Office:   +(40)21-569-4700
Office2: +(40)31-860-0030
Fax:  +(40)31-860-0031
USA DID: +1 (305)722-1457
BE DID:   +(32)9-395-5620
UK DID:   +(44)870-478-8896
SIP : [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
msn: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
*http://www.wvg-tele.com*

 



___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
  

___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Asterisk Radius Module

2006-05-28 Thread Oliver Vermeulen



Hi 
List,

I'm looking for a 
Asterisk radius module ... Anybody has one ?

Thanks,
Oliver







Oliver 
VermeulenWorld Venture Group 
Telecom 

Corporate 
Address:Str Avionului 
Nr 35/bl16J/3Bucharest, 014333 RomaniaOffice: +(40)21-569-4700Office2: 
+(40)31-860-0030Fax:  
+(40)31-860-0031USA DID: +1 (305)722-1457BE DID: +(32)9-395-5620UK 
DID:+(44)870-478-8896SIP 
: [EMAIL PROTECTED]msn: 
[EMAIL PROTECTED]http://www.wvg-tele.com

___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk Radius Module

2006-05-28 Thread VoIP Street .com



How about this one?
http://www.voip-info.org/tiki-index.php?page=PortaOne+Radius+auth

--VoIP StreetDID origination serviceswith support you can count 
on!http://www.VoIPstreet.com

  - Original Message - 
  From: 
  Oliver 
  Vermeulen 
  To: asterisk-users@lists.digium.com 
  
  Cc: 'Commercial and Business-Oriented 
  Asterisk Discussion' 
  Sent: Sunday, May 28, 2006 4:09 PM
  Subject: [Asterisk-Users] Asterisk Radius 
  Module
  
  Hi 
  List,
  
  I'm looking for a 
  Asterisk radius module ... Anybody has one ?
  
  Thanks,
  Oliver
  
  
  

  

  
  Oliver 
  VermeulenWorld Venture Group 
  Telecom 
  
  Corporate 
  Address:Str 
  Avionului 
  Nr 35/bl16J/3Bucharest, 014333 RomaniaOffice: +(40)21-569-4700Office2: 
  +(40)31-860-0030Fax:  +(40)31-860-0031USA DID: +1 (305)722-1457BE DID: +(32)9-395-5620UK 
  DID:+(44)870-478-8896SIP 
  : [EMAIL PROTECTED]msn: [EMAIL PROTECTED]http://www.wvg-tele.com
  
  
  

  ___--Bandwidth and 
  Colocation provided by Easynews.com --Asterisk-Users mailing 
  listTo UNSUBSCRIBE or update options visit: 
  http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk Radius Module

2006-05-28 Thread VoIP Street .com



Never used it, but I knew some sort of Asterisk 
radius thing existed so I searched the Wiki for it and replied. Sorry it doesn't 
work for you, good luck with your search.

--VoIP StreetDID origination serviceswith support you can count 
on!http://www.VoIPstreet.com

  - Original Message - 
  From: 
  Oliver 
  Vermeulen 
  To: 'VoIP Street .com' 
  Sent: Sunday, May 28, 2006 9:13 PM
  Subject: RE: [Asterisk-Users] Asterisk 
  Radius Module
  
  I need full AAA
  
  That just dose authentication..
  
  But i will try it lets see ;)
  
  Are you using it ?
  
  Oliver
  
  
  From: VoIP Street .com 
  [mailto:[EMAIL PROTECTED] Sent: Monday, May 29, 2006 3:59 
  AMTo: [EMAIL PROTECTED]; 
  Asterisk Users Mailing List - Non-Commercial DiscussionSubject: Re: 
  [Asterisk-Users] Asterisk Radius Module
  
  How about this one?
  http://www.voip-info.org/tiki-index.php?page=PortaOne+Radius+auth
  
  --VoIP StreetDID origination serviceswith support you can 
  count on!http://www.VoIPstreet.com
  
- Original Message - 
From: 
Oliver 
Vermeulen 
To: asterisk-users@lists.digium.com 

Cc: 'Commercial and 
Business-Oriented Asterisk Discussion' 
Sent: Sunday, May 28, 2006 4:09 
PM
Subject: [Asterisk-Users] Asterisk 
Radius Module

Hi 
List,

I'm looking for 
a Asterisk radius module ... Anybody has one ?

Thanks,
Oliver







Oliver 
VermeulenWorld Venture 
Group Telecom 
Corporate 
Address:Str 
Avionului 
Nr 35/bl16J/3Bucharest, 014333 RomaniaOffice: +(40)21-569-4700Office2: 
+(40)31-860-0030Fax:  +(40)31-860-0031USA DID: +1 (305)722-1457BE DID: +(32)9-395-5620UK 
DID:+(44)870-478-8896SIP : 
[EMAIL PROTECTED]msn: [EMAIL PROTECTED]http://www.wvg-tele.com




___--Bandwidth and 
Colocation provided by Easynews.com --Asterisk-Users mailing 
listTo UNSUBSCRIBE or update options visit: 
http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] asterisk+radius

2005-03-17 Thread Kamran Ahmad

hi

Any one give me any hint how to start radius with
asterisk.
Is there any addon available for asterisk+radius.
Please provide me helpfull link which could help me.
i am new to radius.

regrads
kamran



__ 
Do you Yahoo!? 
Yahoo! Mail - Find what you need with new enhanced search. 
http://info.mail.yahoo.com/mail_250
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] asterisk+radius

2005-03-17 Thread Matthew Boehm
Kamran Ahmad wrote:
 hi

 Any one give me any hint how to start radius with
 asterisk.
 Is there any addon available for asterisk+radius.
 Please provide me helpfull link which could help me.
 i am new to radius.

 regrads
 kamran


If you are new to radius then I will suggest and highly recommend that you
stop now. Instead, do your own billing out of the Asterisk CDRs.

-Matthew

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Asterisk + Radius

2005-01-21 Thread asterisk
Where can i get information about Asterisk using Radius?

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Asterisk + Radius

2005-01-21 Thread john
Try the Wiki, thats where I found it.

John Dunham

 Original Message 
From: [EMAIL PROTECTED]
To: asterisk-users@lists.digium.com, 
Subject: RE: [Asterisk-Users] Asterisk + Radius
Date: Fri, 21 Jan 2005 10:24:20 -0500 (EST)

Where can i get information about Asterisk using Radius?

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

John Dunham
CTO - Global Technologies  Communications
713-559-9000
713-559-0001  FAX
(234) 803-6732195  Nigeria GSM
713-515-5788  Cell

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Asterisk + Radius

2005-01-20 Thread asterisk
I want to configure Asterisk with FreeRaidus... Someone have done before?

Or please hint me where can i get documentation about it.

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] asterisk+radius

2004-08-16 Thread mohammad



HI ALL;


HI Lubo



I have problem compiling app_radius.It looks for 
mysql to compile.

Does it need mysql???

If yes , why?/



Warmest Regards
mohammd





Re: [Asterisk-Users] asterisk+radius

2004-08-05 Thread Clayton
There has not been any comment on this thread does this mean there are 
PROBLEMS??

mohammad mirzaee wrote:
HI ALL;
 
 
 
Is there anybody who use app_radius(astersik radius module)???
 
is it stable?
 
 
 
Regards
mohammad

--
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
Clayton Gray,[EMAIL PROTECTED]
Borealis Communications Group Inc.
http://www.bcgroup.net #250-562-0616
   Prince George, BC, Canada
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] asterisk+radius

2004-08-05 Thread Lubomir Christov
Hi mohammad,
app_radius and cdr_radius apps are working pretty well :)
If you have any questions please go to the project web site:
http://appradius.minitelecom.org
or contact us at: [EMAIL PROTECTED]
Best regards,
Lubo
Clayton wrote:
There has not been any comment on this thread does this mean there are 
PROBLEMS??

mohammad mirzaee wrote:
HI ALL;
 
 
 
Is there anybody who use app_radius(astersik radius module)???
 
is it stable?
 
 
 
Regards
mohammad


--
-
Appradius Project: RADIUS authentication and accounting support for 
Asterisk PBX
http://appradius.minitelecom.org/
-

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] asterisk+radius

2004-08-05 Thread Duane Cox
I didn't see any app_radius in cvs-head under apps.

- Original Message - 
From: Clayton [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, August 05, 2004 12:17 PM
Subject: Re: [Asterisk-Users] asterisk+radius


 There has not been any comment on this thread does this mean there are 
 PROBLEMS??
 
 mohammad mirzaee wrote:
  HI ALL;
   
   
   
  Is there anybody who use app_radius(astersik radius module)???
   
  is it stable?
   
   
   
  Regards
  mohammad
 
 
 -- 
 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
 Clayton Gray,[EMAIL PROTECTED]
  Borealis Communications Group Inc.
 http://www.bcgroup.net #250-562-0616
 Prince George, BC, Canada
 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] asterisk+radius

2004-08-03 Thread mohammad mirzaee



HI ALL;



Is there anybody who use app_radius(astersik radius 
module)???

is it stable? 



Regards
mohammad


[Asterisk-Users] Asterisk + Radius

2004-03-22 Thread Mike Tkachuk


Hello,

Is there some project about integration Asterisk with Radius?
If yes, where I can find it?

-- 
Best regards,

~*-,._.,-*~'`^`'~*-,._.,-*~'`^`'~*-,.
Mike Tkachuk, ph:380-3433-67067
YES ISP,  fx:380-3433-67067
Valova 17,[EMAIL PROTECTED]  
Kolomyia, www.yes.net.ua
Ukraine 78200 FWD: 66518 

22.03.2004 
  ICQ# 57698805
   MSN: [EMAIL PROTECTED]
~*-,._.,-*~'`^`'~*-,._.,-*~'`^`'~*-,.

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk + Radius

2004-03-22 Thread Lubomir Christov
Here is the app_radius project URL, we are finishing our beta tests
and the project applications will be released on 02 april 2004
http://appradius.minitelecom.org/
Lubo

Mike Tkachuk wrote:

Hello,

Is there some project about integration Asterisk with Radius?
If yes, where I can find it?
 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users