- dtucker@cvs.openbsd.org 2008/06/15 16:58:40
[servconf.c sshd_config.5] Allow MaxAuthTries within a Match block. ok djm@
This commit is contained in:
parent
c62a5af29a
commit
307c1d10a7
|
@ -18,6 +18,9 @@
|
||||||
- dtucker@cvs.openbsd.org 2008/06/15 16:55:38
|
- dtucker@cvs.openbsd.org 2008/06/15 16:55:38
|
||||||
[sshd_config.5]
|
[sshd_config.5]
|
||||||
MaxSessions is allowed in a Match block too
|
MaxSessions is allowed in a Match block too
|
||||||
|
- dtucker@cvs.openbsd.org 2008/06/15 16:58:40
|
||||||
|
[servconf.c sshd_config.5]
|
||||||
|
Allow MaxAuthTries within a Match block. ok djm@
|
||||||
|
|
||||||
20080614
|
20080614
|
||||||
- (djm) [openbsd-compat/sigact.c] Avoid NULL derefs in ancient sigaction
|
- (djm) [openbsd-compat/sigact.c] Avoid NULL derefs in ancient sigaction
|
||||||
|
@ -4390,4 +4393,4 @@
|
||||||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.5017 2008/06/15 21:55:46 djm Exp $
|
$Id: ChangeLog,v 1.5018 2008/06/15 21:56:20 djm Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: servconf.c,v 1.183 2008/06/10 23:06:19 djm Exp $ */
|
/* $OpenBSD: servconf.c,v 1.184 2008/06/15 16:58:40 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
* All rights reserved
|
* All rights reserved
|
||||||
|
@ -398,7 +398,7 @@ static struct {
|
||||||
{ "gatewayports", sGatewayPorts, SSHCFG_ALL },
|
{ "gatewayports", sGatewayPorts, SSHCFG_ALL },
|
||||||
{ "subsystem", sSubsystem, SSHCFG_GLOBAL },
|
{ "subsystem", sSubsystem, SSHCFG_GLOBAL },
|
||||||
{ "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
|
{ "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
|
||||||
{ "maxauthtries", sMaxAuthTries, SSHCFG_GLOBAL },
|
{ "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
|
||||||
{ "maxsessions", sMaxSessions, SSHCFG_ALL },
|
{ "maxsessions", sMaxSessions, SSHCFG_ALL },
|
||||||
{ "banner", sBanner, SSHCFG_ALL },
|
{ "banner", sBanner, SSHCFG_ALL },
|
||||||
{ "usedns", sUseDNS, SSHCFG_GLOBAL },
|
{ "usedns", sUseDNS, SSHCFG_GLOBAL },
|
||||||
|
@ -1403,6 +1403,7 @@ copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
|
||||||
M_CP_INTOPT(x11_forwarding);
|
M_CP_INTOPT(x11_forwarding);
|
||||||
M_CP_INTOPT(x11_use_localhost);
|
M_CP_INTOPT(x11_use_localhost);
|
||||||
M_CP_INTOPT(max_sessions);
|
M_CP_INTOPT(max_sessions);
|
||||||
|
M_CP_INTOPT(max_authtries);
|
||||||
|
|
||||||
M_CP_STROPT(banner);
|
M_CP_STROPT(banner);
|
||||||
if (preauth)
|
if (preauth)
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
.\"
|
.\"
|
||||||
.\" $OpenBSD: sshd_config.5,v 1.94 2008/06/15 16:55:38 dtucker Exp $
|
.\" $OpenBSD: sshd_config.5,v 1.95 2008/06/15 16:58:40 dtucker Exp $
|
||||||
.Dd $Mdocdate: June 15 2008 $
|
.Dd $Mdocdate: June 15 2008 $
|
||||||
.Dt SSHD_CONFIG 5
|
.Dt SSHD_CONFIG 5
|
||||||
.Os
|
.Os
|
||||||
|
@ -602,6 +602,7 @@ Available keywords are
|
||||||
.Cm HostbasedAuthentication ,
|
.Cm HostbasedAuthentication ,
|
||||||
.Cm KbdInteractiveAuthentication ,
|
.Cm KbdInteractiveAuthentication ,
|
||||||
.Cm KerberosAuthentication ,
|
.Cm KerberosAuthentication ,
|
||||||
|
.Cm MaxAuthTries ,
|
||||||
.Cm MaxSessions ,
|
.Cm MaxSessions ,
|
||||||
.Cm PasswordAuthentication ,
|
.Cm PasswordAuthentication ,
|
||||||
.Cm PermitOpen ,
|
.Cm PermitOpen ,
|
||||||
|
|
Loading…
Reference in New Issue