Re: (RADIATOR) ERR: do failed for 'insert into Calls

2001-06-28 Thread Hugh Irvine
Hello Philip - This is a problem with the indexes on your database, not with the Total Control. The database is refusing to insert a record into the "Calls" table because a unique index is being violated. You will need to check the indexes and change whichever one is causing the problem. At

Re: (RADIATOR) question

2001-06-28 Thread Hugh Irvine
Title: Re: (RADIATOR) question Hello Brandon - If UUnet is mandating this, they must have a specification of what they mean. You will have to check with UUnet directly. regards Hugh At 3:09 AM -0700 6/26/01, Brandon wrote: Wish I knew too.  I tried emailing the list and know one seemed to

(RADIATOR) Blocktime from a proxy server

2001-06-28 Thread Ken Kirkby
Im just having some difficulty in getting my head around block time from a proxy server, as to how the transfer of variables takes place in order to set a session time. I have the time available returned from the proxy server which I wish to set as a session-limit. While our SQL derived block time

Re: (RADIATOR) Blocktime from a proxy server

2001-06-28 Thread Hugh Irvine
Hello Ken - At 10:59 PM +1100 6/28/01, Ken Kirkby wrote: >Im just having some difficulty in getting my head around block time >from a proxy server, as to how the transfer of variables takes place >in order to set a session time. I have the time available returned from >the proxy server which I w

(RADIATOR) Oracle SQL timeout causing crash

2001-06-28 Thread Viraj Alankar
Hello, We are using v2.18.1 on Linux x86. Whenever there is a SQL timeout, the Radiator process just exits. Thu Jun 28 08:57:40 2001: ERR: Execute failed for 'select ...': SQL Timeout It then exits with error code 0. We have the restart_wrapper in place which restarts it, but is there

Re: (RADIATOR) Oracle SQL timeout causing crash

2001-06-28 Thread Hugh Irvine
Hello Viraj - What database and what versions of DBI/DBD are you using? Can you also send me a copy of the Perl output that is captured by restartWrapper? thanks Hugh At 9:46 AM -0400 6/28/01, Viraj Alankar wrote: >Hello, > > We are using v2.18.1 on Linux x86. Whenever there is a SQL

(RADIATOR) Session Database

2001-06-28 Thread Kyle
I've got this directive in my . However, when an user logs onto the system, and is authenticated by Radiator, it fails to put an entry into the session table. What am I doing wrong? Radiator-2.18.2 with RH-7.0 and mySql-3.23.38. ## Set the database Identifier Identifier SDB1 ## Set the d

RE: (RADIATOR) Session Database

2001-06-28 Thread Kitabjian, Dave
Hey. 1) Have you tested INSERTing to your DB from the command line to make sure it's working? Perhaps from a Perl command line? 2) Put "Trace 4" in your config file, restart Radiator, try again, and then let us know what shows up in your logfile. I'd like to know if it's even TRYING to do the I

RE: (RADIATOR) Session Database

2001-06-28 Thread Hugh Irvine
Hello Kyle - I will also need to see a copy of the configuration file (no secrets). thanks Hugh At 11:56 AM -0400 6/28/01, Kitabjian, Dave wrote: >Hey. > >1) Have you tested INSERTing to your DB from the command line to make sure >it's working? Perhaps from a Perl command line? > >2) Put "Tr

Re: (RADIATOR) Oracle SQL timeout causing crash

2001-06-28 Thread Viraj Alankar
Hello Hugh, On Fri, 29 Jun 2001, Hugh Irvine wrote: > > Hello Viraj - > > What database and what versions of DBI/DBD are you using? We are using DBI 1.15, and DBD::Oracle 1.06 built with Oracle 8.0.5 libraries. > Can you also send me a copy of the Perl output that is captured by > restartWrap

(RADIATOR) Working with Cisco IVR

2001-06-28 Thread Kitabjian, Dave
Title: Message Hmm. I don't think there was anything too complicated about setting up the Gateway to do the IVR part. But I didn't do that part :) I handled the Radius part. That was a little tricky. For the IVR script that we chose on the Gateway, it works like this:   1. Phone call c

Re: (RADIATOR) ERR: do failed for 'insert into Calls

2001-06-28 Thread Philip Clever
Hugh said: >This is a problem with the indexes on your database, not with the >Total Control. The database is refusing to insert a record into the >"Calls" table because a unique index is being violated. You will need >to check the indexes and change whichever one is causing the problem. Alright

(RADIATOR) ERR: do failed for 'insert into RADONLINE

2001-06-28 Thread Philip Clever
Hi we're getting this error message in our logs: Thu Jun 28 10:28:52 2001: ERR: do failed for 'insert into RADONLINE (USERNAME,NASPORT,ACCTSESSIONID,TIME_STAMP,FRAMEDIPADDRESS,NASPORTTYPE,SERVI CETYPE,NASNAME,USRCONNECTSPEED,CALLFROMID,USRMODULATIONTYPE,USRCHASSISCALLSL OT,USRCHASSISCALLCHANNEL)

(RADIATOR) hangs

2001-06-28 Thread Mike McCauley
--- Forwarded mail from [EMAIL PROTECTED] From: [EMAIL PROTECTED] Date: Thu, 28 Jun 2001 07:25:05 -0500 To: [EMAIL PROTECTED] Subject: BOUNCE [EMAIL PROTECTED]:Non-member submission from ["Chris van Meerendonk" <[EMAIL PROTECTED]>] >From [EMAIL PROTECTED] Thu Jun 28 07:25:05 2001 Received:

(RADIATOR) Vendor Specific Attributes

2001-06-28 Thread Separovic, Jason
I'm getting errors regarding Attribute number # (vendor 5624) not in dictionary. Radiator is receiving packets from an Enterasys SSR8600. Do I need to get a hold of attributes for the SSR8600? Will this aid in receiving info on Accounting-Requests? I am rather new to radiator and have got Authenti

(RADIATOR) md5 encryption

2001-06-28 Thread Separovic, Jason
I'm having a problem with authenticating md5 encrypted passwords. Here is my config : # Adjust DBSource, DBUsername, DBAuth to suit your DB DBSourcedbi:Pg:dbname=radiusdb DBUsername postgres DBAuth password RejectEmptyPassword

Re: (RADIATOR) md5 encryption

2001-06-28 Thread radiator
Hi, I had a similar problem, and then realized that the column I had defined in my db was a couple of bytes too short to hold the entire md5 password. Mickey At 06:08 29-06-01, Separovic, Jason wrote: -Start of Original Message- I'm having a problem with authenticating md5 encrypted pa

RE: (RADIATOR) Working with Cisco IVR

2001-06-28 Thread Ingvar Berg (EIP)
If you want to check against a single user attribute in LDAP, you can just skip the UsernameAttr and PasswordAttr instead use a search filter: # Calling-Station-Id is used to search # instead of UsernameAttr and PasswordAttr SearchFilter (mobile=%{Calling-Station-Id}) /Ingvar -Or

RE: (RADIATOR) md5 encryption

2001-06-28 Thread radiator
Hi, That is not the right way to do it. Here is a code snippit I use: #!/usr/bin/perl use Crypt::PasswdMD5; sub GenerateMD5Password { local($Password) = @_; my $Salt = sprintf("%4.4x%4.4x", rand(1000), rand(1000)); if (! $Password ){ die("no passwor

RE: (RADIATOR) md5 encryption

2001-06-28 Thread radiator
Hi, I think if you use the code I sent you it will work - I have not tested "use Digest::MD5 qw(md5_hex)". I know that the format of your encrypted password is wrong. If you give the code I sent a try, compare the format, it will become pretty obvious. Mickey At 08:58 29-06-01, Separovic, Jas