summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--servconf.c8
-rw-r--r--sshd_config.56
2 files changed, 9 insertions, 5 deletions
diff --git a/servconf.c b/servconf.c
index a18ebb597..e0bfbe67d 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,5 +1,5 @@
1 1
2/* $OpenBSD: servconf.c,v 1.299 2016/11/06 05:46:37 djm Exp $ */ 2/* $OpenBSD: servconf.c,v 1.300 2016/11/23 23:14:15 markus Exp $ */
3/* 3/*
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved 5 * All rights reserved
@@ -528,8 +528,8 @@ static struct {
528 { "usedns", sUseDNS, SSHCFG_GLOBAL }, 528 { "usedns", sUseDNS, SSHCFG_GLOBAL },
529 { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL }, 529 { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
530 { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL }, 530 { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
531 { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL }, 531 { "clientaliveinterval", sClientAliveInterval, SSHCFG_ALL },
532 { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL }, 532 { "clientalivecountmax", sClientAliveCountMax, SSHCFG_ALL },
533 { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL }, 533 { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL },
534 { "authorizedkeysfile2", sDeprecated, SSHCFG_ALL }, 534 { "authorizedkeysfile2", sDeprecated, SSHCFG_ALL },
535 { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL}, 535 { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL},
@@ -1975,6 +1975,8 @@ copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
1975 M_CP_INTOPT(permit_user_rc); 1975 M_CP_INTOPT(permit_user_rc);
1976 M_CP_INTOPT(max_sessions); 1976 M_CP_INTOPT(max_sessions);
1977 M_CP_INTOPT(max_authtries); 1977 M_CP_INTOPT(max_authtries);
1978 M_CP_INTOPT(client_alive_count_max);
1979 M_CP_INTOPT(client_alive_interval);
1978 M_CP_INTOPT(ip_qos_interactive); 1980 M_CP_INTOPT(ip_qos_interactive);
1979 M_CP_INTOPT(ip_qos_bulk); 1981 M_CP_INTOPT(ip_qos_bulk);
1980 M_CP_INTOPT(rekey_limit); 1982 M_CP_INTOPT(rekey_limit);
diff --git a/sshd_config.5 b/sshd_config.5
index 82a3ad14a..281de141f 100644
--- a/sshd_config.5
+++ b/sshd_config.5
@@ -33,8 +33,8 @@
33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\" 35.\"
36.\" $OpenBSD: sshd_config.5,v 1.237 2016/10/07 14:41:52 jmc Exp $ 36.\" $OpenBSD: sshd_config.5,v 1.238 2016/11/23 23:14:15 markus Exp $
37.Dd $Mdocdate: October 7 2016 $ 37.Dd $Mdocdate: November 23 2016 $
38.Dt SSHD_CONFIG 5 38.Dt SSHD_CONFIG 5
39.Os 39.Os
40.Sh NAME 40.Sh NAME
@@ -1045,6 +1045,8 @@ Available keywords are
1045.Cm AuthorizedPrincipalsFile , 1045.Cm AuthorizedPrincipalsFile ,
1046.Cm Banner , 1046.Cm Banner ,
1047.Cm ChrootDirectory , 1047.Cm ChrootDirectory ,
1048.Cm ClientAliveCountMax ,
1049.Cm ClientAliveInterval ,
1048.Cm DenyGroups , 1050.Cm DenyGroups ,
1049.Cm DenyUsers , 1051.Cm DenyUsers ,
1050.Cm ForceCommand , 1052.Cm ForceCommand ,