From owner-freebsd-questions@FreeBSD.ORG Fri Oct 6 21:31:29 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF46816A40F for ; Fri, 6 Oct 2006 21:31:29 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id B115C43D6A for ; Fri, 6 Oct 2006 21:31:29 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin07-en2 [10.13.10.152]) by smtpout.mac.com (Xserve/8.12.11/smtpout11/MantshX 4.0) with ESMTP id k96LVS4t020403; Fri, 6 Oct 2006 14:31:29 -0700 (PDT) Received: from [17.214.13.96] (a17-214-13-96.apple.com [17.214.13.96]) (authenticated bits=0) by mac.com (Xserve/smtpin07/MantshX 4.0) with ESMTP id k96LVQmq016578; Fri, 6 Oct 2006 14:31:27 -0700 (PDT) In-Reply-To: <4526C9F7.6090705@enabled.com> References: <4526C9F7.6090705@enabled.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <956C94E1-87FF-4216-999E-78F0C61BA3A5@mac.com> Content-Transfer-Encoding: 7bit From: Chuck Swiger Date: Fri, 6 Oct 2006 14:31:25 -0700 To: Noah X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAA== X-Brightmail-scanned: yes Cc: freebsd-questions@freebsd.org Subject: Re: problems ssh'ing debug1: An invalid name was supplied (OSX client) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Oct 2006 21:31:30 -0000 On Oct 6, 2006, at 2:26 PM, Noah wrote: > any clues why ssh is hanging before a prompt is provided from the > server side. this prompt stalling behavior is only happening when I > am coming from my OSX ssh client. Any clues on this? I have never > see this betwe. Looks like your SSH keypair has been mangled: % cat ~/.ssh/id_rsa -----BEGIN RSA PRIVATE KEY----- [ ...should contain base-64 encoded data... ] -----END RSA PRIVATE KEY----- If you don't have a valid keypair there in id_rsa and id_rsa.pub, use ssh-keygen to make a new one. -- -Chuck