From owner-svn-src-all@freebsd.org Wed Jan 27 14:10:44 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0FED0A6F81D; Wed, 27 Jan 2016 14:10:44 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [195.70.199.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 252151830; Wed, 27 Jan 2016 14:10:43 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from slw by zxy.spb.ru with local (Exim 4.86 (FreeBSD)) (envelope-from ) id 1aOQnv-0003Hs-DT; Wed, 27 Jan 2016 17:10:39 +0300 Date: Wed, 27 Jan 2016 17:10:39 +0300 From: Slawa Olhovchenkov To: Steven Hartland Cc: Dag-Erling =?utf-8?B?U23DuHJncmF2?= , 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> References: <201601271340.u0RDeiU5060523@repo.freebsd.org> <56A8CC97.6090000@multiplay.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <56A8CC97.6090000@multiplay.co.uk> User-Agent: Mutt/1.5.24 (2015-08-30) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jan 2016 14:10:44 -0000 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"