From owner-freebsd-stable@FreeBSD.ORG Mon Dec 29 03:40:18 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0084716A4CE for ; Mon, 29 Dec 2003 03:40:18 -0800 (PST) Received: from www.cyclades.de (mail.cyclades.de [62.225.173.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99EF943D45 for ; Mon, 29 Dec 2003 03:40:16 -0800 (PST) (envelope-from mh@kernel32.de) Received: from pd9eb16c6.dip.t-dialin.net ([217.235.22.198] helo=kernel32.de) by www.cyclades.de with asmtp (Exim 3.35 #1 (Debian)) id 1Aavko-0008D0-00; Mon, 29 Dec 2003 12:40:11 +0100 Message-ID: <3FF0129A.9080902@kernel32.de> Date: Mon, 29 Dec 2003 12:40:10 +0100 From: Marian Hettwer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5) Gecko/20031115 X-Accept-Language: en-us, en MIME-Version: 1.0 To: paolo.pisati@tin.it References: <3FE2611600005777@ims6a.cp.tin.it> In-Reply-To: <3FE2611600005777@ims6a.cp.tin.it> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-MailScanner: Found to be clean X-MailScanner-SpamCheck: cc: stable@freebsd.org Subject: Re: sshd: fatal: monitor_read: unsupported request: 24 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Dec 2003 11:40:18 -0000 Hi Paolo, just a short guess, paolo.pisati@tin.it wrote: > Hi guys, > > i've problem trying to login on a freebsd-stable box using ssh and pub key > authentication. > > If i try to login from a linux box i got this msg in my log: > > fatal: monitor_read: unsupported request: 24 > > this only happen if i try to login as root and the pub key is correct (cause > i used it with other account). > You are sure, that you allowed direct root login via ssh in your FreeBSD box, are you ? Because the default installation denies direct root login. See /etc/ssh/sshd_config the Parameter '#PermitRootLogin no' which is the default. You have to write 'PermitRootLogin yes' to allow it. FWIW, Marian