From owner-freebsd-stable@FreeBSD.ORG Sat Mar 1 01:23:59 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31EFEA78 for ; Sat, 1 Mar 2014 01:23:59 +0000 (UTC) Received: from mail.intertainservices.com (mail.intertainservices.com [69.77.177.114]) by mx1.freebsd.org (Postfix) with ESMTP id 0D5E61E0B for ; Sat, 1 Mar 2014 01:23:58 +0000 (UTC) Received: from freebsd.local (unknown [172.16.10.114]) by mail.intertainservices.com (Postfix) with ESMTPSA id 55B4756454 for ; Fri, 28 Feb 2014 20:23:54 -0500 (EST) Message-ID: <531136AA.1050003@intertainservices.com> Date: Fri, 28 Feb 2014 20:23:54 -0500 From: Mike Jakubik User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-stable Subject: OpenSSH 6.5 breaks logins ! Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-intertainservices-MailScanner-Information: Please contact the ISP for more information X-intertainservices-MailScanner-ID: 55B4756454.ACAA2 X-intertainservices-MailScanner: Found to be clean X-intertainservices-MailScanner-From: mike.jakubik@intertainservices.com X-Spam-Status: No X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2014 01:23:59 -0000 Hello, I just updated a box to latest stable only to find i could not log in via ssh after the upgrade. Luckily i have remote access to the console. This is the error sshd threw. Feb 28 19:52:45 vmfbsd sshd[779]: fatal: ssh_sandbox_child: failed to limit the network socket [preauth] After some searching around i found the culprit to be the new option "UsePrivilegeSeparation sandbox". Changing this back to yes instead of sandbox fixed the problem. Below are the only customizations in my sshd_config PermitRootLogin yes PasswordAuthentication yes FreeBSD 10.0-STABLE #0 r262627 Thanks.