forked from infra/ansible
93 lines
3.5 KiB
Plaintext
93 lines
3.5 KiB
Plaintext
|
# -*- text -*-
|
||
|
#
|
||
|
# $Id: 3e6bf2104f74ffad8866eb69459a94f623601130 $
|
||
|
|
||
|
#
|
||
|
# The rlm_sql_log module appends the SQL queries in a log
|
||
|
# file which is read later by the radsqlrelay program.
|
||
|
#
|
||
|
# This module only performs the dynamic expansion of the
|
||
|
# variables found in the SQL statements. No operation is
|
||
|
# executed on the database server. (this could be done
|
||
|
# later by an external program) That means the module is
|
||
|
# useful only with non-"SELECT" statements.
|
||
|
#
|
||
|
# See rlm_sql_log(5) manpage.
|
||
|
#
|
||
|
# This same functionality could also be implemented by logging
|
||
|
# to a "detail" file, reading that, and then writing to SQL.
|
||
|
# See raddb/sites-available/buffered-sql for an example.
|
||
|
#
|
||
|
sql_log {
|
||
|
path = "${radacctdir}/sql-relay"
|
||
|
acct_table = "radacct"
|
||
|
postauth_table = "radpostauth"
|
||
|
sql_user_name = "%{%{User-Name}:-DEFAULT}"
|
||
|
|
||
|
#
|
||
|
# Setting this to "yes" will allow UTF-8 characters to be
|
||
|
# written to the log file. Otherwise, they are escaped
|
||
|
# as being potentially invalid.
|
||
|
#
|
||
|
utf8 = no
|
||
|
|
||
|
#
|
||
|
# The names here are taken from the Acct-Status-Type names.
|
||
|
# Just add another entry here for Accounting-On,
|
||
|
# Accounting-Off, etc.
|
||
|
#
|
||
|
Start = "INSERT INTO ${acct_table} (AcctSessionId, UserName, \
|
||
|
NASIPAddress, FramedIPAddress, AcctStartTime, AcctStopTime, \
|
||
|
AcctSessionTime, AcctTerminateCause) VALUES \
|
||
|
('%{Acct-Session-Id}', '%{User-Name}', '%{NAS-IP-Address}', \
|
||
|
'%{Framed-IP-Address}', '%S', '0', '0', '');"
|
||
|
|
||
|
Stop = "INSERT INTO ${acct_table} (AcctSessionId, UserName, \
|
||
|
NASIPAddress, FramedIPAddress, AcctStartTime, AcctStopTime, \
|
||
|
AcctSessionTime, AcctTerminateCause) VALUES \
|
||
|
('%{Acct-Session-Id}', '%{User-Name}', '%{NAS-IP-Address}', \
|
||
|
'%{Framed-IP-Address}', '0', '%S', '%{Acct-Session-Time}', \
|
||
|
'%{Acct-Terminate-Cause}');"
|
||
|
|
||
|
Alive = "INSERT INTO ${acct_table} (AcctSessionId, UserName, \
|
||
|
NASIPAddress, FramedIPAddress, AcctStartTime, AcctStopTime, \
|
||
|
AcctSessionTime, AcctTerminateCause) VALUES \
|
||
|
('%{Acct-Session-Id}', '%{User-Name}', '%{NAS-IP-Address}', \
|
||
|
'%{Framed-IP-Address}', '0', '0', '%{Acct-Session-Time}','');"
|
||
|
|
||
|
# The same as "Alive"
|
||
|
Interim-Update = "INSERT INTO ${acct_table} (AcctSessionId, UserName, \
|
||
|
NASIPAddress, FramedIPAddress, AcctStartTime, AcctStopTime, \
|
||
|
AcctSessionTime, AcctTerminateCause) VALUES \
|
||
|
('%{Acct-Session-Id}', '%{User-Name}', '%{NAS-IP-Address}', \
|
||
|
'%{Framed-IP-Address}', '0', '0', '%{Acct-Session-Time}','');"
|
||
|
|
||
|
Post-Auth = "INSERT INTO ${postauth_table} \
|
||
|
(username, pass, reply, authdate) VALUES \
|
||
|
('%{User-Name}', '%{User-Password:-Chap-Password}', \
|
||
|
'%{reply:Packet-Type}', '%S');"
|
||
|
|
||
|
Accounting-On = "UPDATE ${acct_table} \
|
||
|
SET \
|
||
|
acctstoptime = '%S', \
|
||
|
acctsessiontime = unix_timestamp('%S') - \
|
||
|
unix_timestamp(acctstarttime), \
|
||
|
acctterminatecause = '%{Acct-Terminate-Cause}', \
|
||
|
acctstopdelay = %{%{Acct-Delay-Time}:-0} \
|
||
|
WHERE acctstoptime IS NULL \
|
||
|
AND nasipaddress = '%{NAS-IP-Address}' \
|
||
|
AND acctstarttime <= '%S'""
|
||
|
|
||
|
Accounting-Off = "UPDATE ${acct_table} \
|
||
|
SET \
|
||
|
acctstoptime = '%S', \
|
||
|
acctsessiontime = unix_timestamp('%S') - \
|
||
|
unix_timestamp(acctstarttime), \
|
||
|
acctterminatecause = '%{Acct-Terminate-Cause}', \
|
||
|
acctstopdelay = %{%{Acct-Delay-Time}:-0} \
|
||
|
WHERE acctstoptime IS NULL \
|
||
|
AND nasipaddress = '%{NAS-IP-Address}' \
|
||
|
AND acctstarttime <= '%S'""
|
||
|
}
|
||
|
|