From: Alan T. DeKok Date: Thu, 22 Sep 2011 13:53:13 +0000 (+0200) Subject: Added missing post-auth configuration X-Git-Tag: release_2_1_12~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8cbb735e7ae336c7739ccf24b3a7fd174cb8b4d6;p=thirdparty%2Ffreeradius-server.git Added missing post-auth configuration --- diff --git a/raddb/sql/oracle/dialup.conf b/raddb/sql/oracle/dialup.conf index 1c95da3d842..5820cb493b8 100644 --- a/raddb/sql/oracle/dialup.conf +++ b/raddb/sql/oracle/dialup.conf @@ -179,3 +179,14 @@ accounting_stop_query_alt = "INSERT into ${acct_table2} (RadAcctId, AcctSessionI group_membership_query = "SELECT GroupName FROM ${usergroup_table} WHERE UserName='%{SQL-User-Name}'" + # Authentication Logging Queries + ####################################################################### + # postauth_query - Insert some info after authentication + ####################################################################### + + postauth_query = "INSERT INTO ${postauth_table} \ + (username, pass, reply, authdate) \ + VALUES ( \ + '%{User-Name}', \ + '%{%{User-Password}:-%{Chap-Password}}', \ + '%{reply:Packet-Type}', TO_TIMESTAMP('%S','YYYY-MM-DDHH24:MI:SS'))"