diff options
author | Chris Buechler <cmb@pfsense.org> | 2009-12-30 17:54:53 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2009-12-30 17:54:53 -0500 |
commit | d1014c1822029a11c0b07758fda07aeec6341176 (patch) | |
tree | 6141cb518b6b23dd96d1f2f694c8ce3475a97285 | |
parent | b52f883a44acd97471ad3bd6e44f6e274676a14a (diff) | |
download | pfsense-d1014c1822029a11c0b07758fda07aeec6341176.zip pfsense-d1014c1822029a11c0b07758fda07aeec6341176.tar.gz |
fix openvpn user auth. thanks to thompsa@ for finding fix
-rw-r--r-- | etc/inc/openvpn.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/openvpn.inc b/etc/inc/openvpn.inc index e2a96e3..a9282c9 100644 --- a/etc/inc/openvpn.inc +++ b/etc/inc/openvpn.inc @@ -318,7 +318,7 @@ function openvpn_reconfigure($mode,& $settings) { $conf .= "writepid {$pfile}\n"; $conf .= "#user nobody\n"; $conf .= "#group nobody\n"; - $conf .= "script-security 2\n"; + $conf .= "script-security 3\n"; $conf .= "daemon\n"; $conf .= "keepalive 10 60\n"; $conf .= "ping-timer-rem\n"; |