diff options
author | Nachtfalke <nachtfalkeaw@web.de> | 2011-12-16 16:26:45 +0100 |
---|---|---|
committer | Nachtfalke <nachtfalkeaw@web.de> | 2011-12-16 16:26:45 +0100 |
commit | f828b5c42b40837f63a28849477a40a104a97080 (patch) | |
tree | 6602675aaac47f0ef3cb071ef943284a5e7bdf0c /config | |
parent | 7e5cb1e9951f7afab0404506e61e0acf63e62709 (diff) | |
download | pfsense-packages-f828b5c42b40837f63a28849477a40a104a97080.tar.gz pfsense-packages-f828b5c42b40837f63a28849477a40a104a97080.tar.bz2 pfsense-packages-f828b5c42b40837f63a28849477a40a104a97080.zip |
disabled virtual-server "control-socket" which is experimental and misconfigured a security issue
disabled module proxy because in most environments we do not need to proxy requests to another RADIUS PROXY server
Diffstat (limited to 'config')
-rwxr-xr-x | config/freeradius2/freeradius.inc | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/config/freeradius2/freeradius.inc b/config/freeradius2/freeradius.inc index 29ca98f8..76fb23d5 100755 --- a/config/freeradius2/freeradius.inc +++ b/config/freeradius2/freeradius.inc @@ -29,6 +29,8 @@ function freeradius_install_command() { exec("chown -R root:wheel /usr/local/etc/raddb"); exec("chown -R root:wheel /usr/local/lib/freeradius-2.1.12"); + // disable an experimental module of freeRADIUS which could be a security issue if not configured correctly! + exec("rm -f /usr/local/etc/raddb/sites-enabled/control-socket"); closedir($handle); @@ -146,14 +148,15 @@ log { } checkrad = \${sbindir}/checkrad -security { +security { max_attributes = $varsettingsmaxattributes reject_delay = $varsettingsrejectdelay status_server = no ### Needs additional config in raddb/sites-available/status } -proxy_requests = yes -\$INCLUDE proxy.conf +### disbale proxy module. In most environments we do not need to proxy requests to another RADIUS PROXY server +#proxy_requests = yes +#\$INCLUDE proxy.conf \$INCLUDE clients.conf thread pool { start_servers = $varsettingsstartservers @@ -259,7 +262,7 @@ EOD; conf_mount_rw(); file_put_contents($filename, $conf); chmod($filename, 0600); - conf_mount_ro(); + conf_mount_ro(); restart_service('freeradius'); } @@ -296,11 +299,11 @@ client $varclientshortname { shortname = $varclientshortname ### Optional: Used by checkrad.pl for simultaneous use checks. Default: other - nastype = $varclientnastype + nastype = $varclientnastype ### Optional: will be used in future releases - #login = !root - #password = someadminpas + #login = !root + #password = someadminpas ### Additional configuration needed. See: raddb/sites-available/originate-coa #virtual_server = home1 |