freeradius RADIUS Users Add, edit, and delete RADIUS users.
Services
freeradius.xml
RADIUS Clients Add, edit, and delete RADIUS clients.
Services
freeradiusclients.xml
http://www.pfsense.com/packages/config/freeradiusclients.xml installedpackages->package->$packagename->configuration->settings Username username Description description Username username Enter the username here input Password password Enter the password here password Username Description description Enter the description of the user here input function sync_package() { global $config; $fout = fopen("/usr/local/etc/raddb/users","w"); if($config['installedpackages']['freeradius']['config'] != "") { foreach($config['installedpackages']['freeradius']['config'] as $rowhelper) { fwrite($fout, $rowhelper['username'] . " User-Password == \"" . $rowhelper['password'] . "\"\n"); } } fclose($fout); } sync_package(); sync_package();