summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--servconf.c4
-rw-r--r--sshd.84
-rw-r--r--sshd_config4
-rw-r--r--sshd_config.54
5 files changed, 12 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 0936c83c9..290fd48fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,9 @@
7 [sshd.8] 7 [sshd.8]
8 `RSA' updated to refer to `public key', where it matters. 8 `RSA' updated to refer to `public key', where it matters.
9 okay markus@ 9 okay markus@
10 - stevesk@cvs.openbsd.org 2002/08/21 19:38:06
11 [servconf.c sshd.8 sshd_config sshd_config.5]
12 change LoginGraceTime default to 1 minute; ok mouring@ markus@
10 13
1120020820 1420020820
12 - OpenBSD CVS Sync 15 - OpenBSD CVS Sync
@@ -1548,4 +1551,4 @@
1548 - (stevesk) entropy.c: typo in debug message 1551 - (stevesk) entropy.c: typo in debug message
1549 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1552 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1550 1553
1551$Id: ChangeLog,v 1.2428 2002/09/04 06:24:55 djm Exp $ 1554$Id: ChangeLog,v 1.2429 2002/09/04 06:25:52 djm Exp $
diff --git a/servconf.c b/servconf.c
index 50fccdda8..211ebf6b0 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.113 2002/07/30 17:03:55 markus Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.114 2002/08/21 19:38:06 stevesk Exp $");
14 14
15#if defined(KRB4) 15#if defined(KRB4)
16#include <krb.h> 16#include <krb.h>
@@ -159,7 +159,7 @@ fill_default_server_options(ServerOptions *options)
159 if (options->server_key_bits == -1) 159 if (options->server_key_bits == -1)
160 options->server_key_bits = 768; 160 options->server_key_bits = 768;
161 if (options->login_grace_time == -1) 161 if (options->login_grace_time == -1)
162 options->login_grace_time = 600; 162 options->login_grace_time = 60;
163 if (options->key_regeneration_time == -1) 163 if (options->key_regeneration_time == -1)
164 options->key_regeneration_time = 3600; 164 options->key_regeneration_time = 3600;
165 if (options->permit_root_login == PERMIT_NOT_SET) 165 if (options->permit_root_login == PERMIT_NOT_SET)
diff --git a/sshd.8 b/sshd.8
index 2849a8b4c..c195c959e 100644
--- a/sshd.8
+++ b/sshd.8
@@ -34,7 +34,7 @@
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\" 36.\"
37.\" $OpenBSD: sshd.8,v 1.189 2002/08/21 11:20:59 espie Exp $ 37.\" $OpenBSD: sshd.8,v 1.190 2002/08/21 19:38:06 stevesk Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSHD 8 39.Dt SSHD 8
40.Os 40.Os
@@ -203,7 +203,7 @@ The default is
203refuses to start if there is no configuration file. 203refuses to start if there is no configuration file.
204.It Fl g Ar login_grace_time 204.It Fl g Ar login_grace_time
205Gives the grace time for clients to authenticate themselves (default 205Gives the grace time for clients to authenticate themselves (default
206600 seconds). 20660 seconds).
207If the client fails to authenticate the user within 207If the client fails to authenticate the user within
208this many seconds, the server disconnects and exits. 208this many seconds, the server disconnects and exits.
209A value of zero indicates no limit. 209A value of zero indicates no limit.
diff --git a/sshd_config b/sshd_config
index f20d812ee..527a58981 100644
--- a/sshd_config
+++ b/sshd_config
@@ -1,4 +1,4 @@
1# $OpenBSD: sshd_config,v 1.57 2002/07/30 17:03:55 markus Exp $ 1# $OpenBSD: sshd_config,v 1.58 2002/08/21 19:38:06 stevesk Exp $
2 2
3# This is the sshd server system-wide configuration file. See 3# This is the sshd server system-wide configuration file. See
4# sshd_config(5) for more information. 4# sshd_config(5) for more information.
@@ -32,7 +32,7 @@
32 32
33# Authentication: 33# Authentication:
34 34
35#LoginGraceTime 600 35#LoginGraceTime 60
36#PermitRootLogin yes 36#PermitRootLogin yes
37#StrictModes yes 37#StrictModes yes
38 38
diff --git a/sshd_config.5 b/sshd_config.5
index 0c799bfe8..1551126cf 100644
--- a/sshd_config.5
+++ b/sshd_config.5
@@ -34,7 +34,7 @@
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\" 36.\"
37.\" $OpenBSD: sshd_config.5,v 1.9 2002/08/12 17:30:35 stevesk Exp $ 37.\" $OpenBSD: sshd_config.5,v 1.10 2002/08/21 19:38:06 stevesk Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSHD_CONFIG 5 39.Dt SSHD_CONFIG 5
40.Os 40.Os
@@ -379,7 +379,7 @@ options must precede this option for non port qualified addresses.
379The server disconnects after this time if the user has not 379The server disconnects after this time if the user has not
380successfully logged in. 380successfully logged in.
381If the value is 0, there is no time limit. 381If the value is 0, there is no time limit.
382The default is 600 (seconds). 382The default is 60 seconds.
383.It Cm LogLevel 383.It Cm LogLevel
384Gives the verbosity level that is used when logging messages from 384Gives the verbosity level that is used when logging messages from
385.Nm sshd . 385.Nm sshd .