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_always(5)							 FreeRADIUS Module						     rlm_always(5)

NAME
rlm_always - FreeRADIUS Module DESCRIPTION
The rlm_always module provides a simple way to "always" return a value during the processing of a configuration section. The module does nothing other than return a configured value. The main configuration item to be aware of is: rcode This module will always return with the rcode specified. The default, if none specified is: fail (RLM_MODULE_FAIL). The valid options are: reject RLM_MODULE_REJECT fail RLM_MODULE_FAIL ok RLM_MODULE_OK handled RLM_MODULE_HANDLED invalid RLM_MODULE_INVALID userlock RLM_MODULE_USERLOCK notfound RLM_MODULE_NOTFOUND noop RLM_MODULE_NOOP updated RLM_MODULE_UPDATED CONFIGURATION
modules { ... always ok { rcode = ok } ... } ... authorize { ... redundant { sql1 # try to find the user in sql1 sql2 # try to find the user in sql2 ok # if still not found, it's OK. } ... } SECTIONS
authorization, authentication, postauthentication, preaccounting, accounting, preproxy, postproxy FILES
/etc/raddb/radiusd.conf SEE ALSO
radiusd(8), radiusd.conf(5) AUTHOR
Chris Parker, cparker@segv.org 3 February 2004 rlm_always(5)