Date: Wed, 27 Jan 2016 13:56:39 +0000 From: Steven Hartland <steven.hartland@multiplay.co.uk> To: =?UTF-8?Q?Dag-Erling_Sm=c3=b8rgrav?= <des@FreeBSD.org>, src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r294909 - head/crypto/openssh Message-ID: <56A8CC97.6090000@multiplay.co.uk> In-Reply-To: <201601271340.u0RDeiU5060523@repo.freebsd.org> References: <201601271340.u0RDeiU5060523@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
While I can guess the reason, it would be nice to document the reason on
things like this :-)
Regards
Steve
On 27/01/2016 13:40, Dag-Erling Smørgrav wrote:
> Author: des
> Date: Wed Jan 27 13:40:44 2016
> New Revision: 294909
> URL: https://svnweb.freebsd.org/changeset/base/294909
>
> Log:
> Switch UseDNS back on
>
> Modified:
> head/crypto/openssh/FREEBSD-upgrade
> head/crypto/openssh/servconf.c
> head/crypto/openssh/sshd_config
> head/crypto/openssh/sshd_config.5
>
> Modified: head/crypto/openssh/FREEBSD-upgrade
> ==============================================================================
> --- head/crypto/openssh/FREEBSD-upgrade Wed Jan 27 10:34:07 2016 (r294908)
> +++ head/crypto/openssh/FREEBSD-upgrade Wed Jan 27 13:40:44 2016 (r294909)
> @@ -117,6 +117,7 @@
> - PasswordAuthentication defaults to "no".
> - VersionAddendum defaults to "FreeBSD-YYYYMMDD".
> - PrivilegeSeparation defaults to "sandbox".
> + - UseDNS defaults to "yes".
>
> 2) Modified client-side defaults
>
>
> Modified: head/crypto/openssh/servconf.c
> ==============================================================================
> --- head/crypto/openssh/servconf.c Wed Jan 27 10:34:07 2016 (r294908)
> +++ head/crypto/openssh/servconf.c Wed Jan 27 13:40:44 2016 (r294909)
> @@ -320,7 +320,7 @@ fill_default_server_options(ServerOption
> if (options->max_sessions == -1)
> options->max_sessions = DEFAULT_SESSIONS_MAX;
> if (options->use_dns == -1)
> - options->use_dns = 0;
> + options->use_dns = 1;
> if (options->client_alive_interval == -1)
> options->client_alive_interval = 0;
> if (options->client_alive_count_max == -1)
>
> Modified: head/crypto/openssh/sshd_config
> ==============================================================================
> --- head/crypto/openssh/sshd_config Wed Jan 27 10:34:07 2016 (r294908)
> +++ head/crypto/openssh/sshd_config Wed Jan 27 13:40:44 2016 (r294909)
> @@ -115,7 +115,7 @@
> #Compression delayed
> #ClientAliveInterval 0
> #ClientAliveCountMax 3
> -#UseDNS no
> +#UseDNS yes
> #PidFile /var/run/sshd.pid
> #MaxStartups 10:30:100
> #PermitTunnel no
>
> Modified: head/crypto/openssh/sshd_config.5
> ==============================================================================
> --- head/crypto/openssh/sshd_config.5 Wed Jan 27 10:34:07 2016 (r294908)
> +++ head/crypto/openssh/sshd_config.5 Wed Jan 27 13:40:44 2016 (r294909)
> @@ -1541,8 +1541,8 @@ the resolved host name for the remote IP
> very same IP address.
> .Pp
> If this option is set to
> -.Dq no
> -(the default) then only addresses and not host names may be used in
> +.Dq no ,
> +then only addresses and not host names may be used in
> .Pa ~/.ssh/known_hosts
> .Cm from
> and
> @@ -1550,6 +1550,8 @@ and
> .Cm Match
> .Cm Host
> directives.
> +The default is
> +.Dq yes .
> .It Cm UseLogin
> Specifies whether
> .Xr login 1
>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?56A8CC97.6090000>
