Unix and Linux Discussions Tagged with detail |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
2,697 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,590 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,946 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,929 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,889 |
Shell Programming and Scripting |
|
|
|
6 |
3,298 |
Solaris |
|
|
|
1 |
39,059 |
Solaris |
|
|
|
3 |
2,593 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
4,353 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
4,675 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
10,472 |
Shell Programming and Scripting |
|
|
|
5 |
3,901 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,740 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,813 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
9,969 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
6,876 |
Cybersecurity |
|
|
|
2 |
5,524 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
271,447 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
6,787 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,978 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
18,909 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,388 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
7,312 |
UNIX for Dummies Questions & Answers |
rlm_detail(5) FreeRADIUS Module rlm_detail(5)
NAME
rlm_detail - FreeRADIUS Module
DESCRIPTION
The rlm_detail module writes radius packets to 'detail' files. It is primarily used for storing accounting information, but can be used in
other sections to write packet details as well.
The file format is similar to that of the old Livingston servers, and many 'detail' file parsers should work with FreeRADIUS.
The main configuration items to be aware of are:
file The file name in which to store the radius packet records. NOTE: this variable is run through dynamic string expansion, and can
include FreeRADIUS variables to create a dynamic filename.
%{radacctdir}/%{Client-IP-Address}/detail-%Y%m
This will create one file per month, for each client.
This accomplishes 'file rotation' automatically from
within the server.
perm The file permissions of the file. If omitted, the default is 0600.
dirperm
The directory permissions of the directory where the detail files are created. The default is 0755.
locking
This option is set to 'yes' or 'no'. By default it is 'no'. Set this to yes to enable file locking, which is used with the
'radrelay' program.
CONFIGURATION
modules {
...
detail {
filename = %A/%{Client-IP-Address}/detail-%Y%m
permissions = 0600
dir_permissions = 0755
locking = no
}
...
}
...
accounting {
...
detail
...
}
SECTIONS
authorization, accounting, pre_proxy, post_proxy, post_authentication
FILES
/etc/raddb/radiusd.conf
SEE ALSO
radiusd(8), radiusd.conf(5)
AUTHORS
Chris Parker, cparker@segv.org
27 June 2013 rlm_detail(5)