FreeNIBS 3.0.0 release candidate 2 (3.x branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News FreeNIBS 3.0.0 release candidate 2 (3.x branch)
# 1  
Old 11-08-2008
FreeNIBS 3.0.0 release candidate 2 (3.x branch)

FreeNIBS is a loadable plugin for the FreeRADIUS radius server. FreeNIBS provides authorization, authentication, and accounting for dial-in (PPP/PPPOE/PPTP) users. It can be used for real-time prepaid and postpaid billing. FreeNIBS can bill users based on service accuration, time, traffic, and both time and traffic. FreeNIBS has very flexible settings for groups, users, and prices. All data is stored in SQL databases such as MySQl, PgSQL, and Oracle. License: GNU General Public License v2 Changes:
The database backend was completely rewritten. PostgreSQL is now used as the only database backend. Many bugs were fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
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: detailfile 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. detailperm The file permissions of the detailfile. 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 { detailfile = %A/%{Client-IP-Address}/detail-%Y%m detailperm = 0600 dirperm = 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 5 February 2004 rlm_detail(5)