Date: Wed, 27 Jan 2016 17:10:39 +0300 From: Slawa Olhovchenkov <slw@zxy.spb.ru> To: Steven Hartland <steven.hartland@multiplay.co.uk> Cc: Dag-Erling =?utf-8?B?U23DuHJncmF2?= <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: <20160127141039.GQ37895@zxy.spb.ru> In-Reply-To: <56A8CC97.6090000@multiplay.co.uk> References: <201601271340.u0RDeiU5060523@repo.freebsd.org> <56A8CC97.6090000@multiplay.co.uk>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, Jan 27, 2016 at 01:56:39PM +0000, Steven Hartland wrote: > While I can guess the reason, it would be nice to document the reason on > things like this :-) Or use more clear commit message (on stable/10 UseDNS is on by default, but nothing about relation to host names in ~/.ssh/known_hosts). > 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 > > > > _______________________________________________ > svn-src-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-src-all > To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20160127141039.GQ37895>