Sync LoginGraceTime with sshd_config = 60 seconds by default, not 600.

This commit is contained in:
Peter Wemm 2000-07-11 09:52:14 +00:00
parent e213d985b2
commit 44de2297a4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=62943
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ fill_default_server_options(ServerOptions *options)
if (options->server_key_bits == -1)
options->server_key_bits = 768;
if (options->login_grace_time == -1)
options->login_grace_time = 600;
options->login_grace_time = 60;
if (options->key_regeneration_time == -1)
options->key_regeneration_time = 3600;
if (options->permit_root_login == -1)

View File

@ -452,7 +452,7 @@ options must precede this option.
The server disconnects after this time if the user has not
successfully logged in.
If the value is 0, there is no time limit.
The default is 600 (seconds).
The default is 60 (seconds).
.It Cm LogLevel
Gives the verbosity level that is used when logging messages from
.Nm sshd .