From owner-freebsd-questions@FreeBSD.ORG Mon Jun 26 10:39:38 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 3AE6916A514 for ; Mon, 26 Jun 2006 10:39:38 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out2.blueyonder.co.uk (smtp-out2.blueyonder.co.uk [195.188.213.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88D5D44141 for ; Mon, 26 Jun 2006 10:09:34 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.145] (helo=anti-virus03-08) by smtp-out2.blueyonder.co.uk with smtp (Exim 4.52) id 1Fuo29-0005Jz-RJ; Mon, 26 Jun 2006 11:09:33 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out6.blueyonder.co.uk with esmtp (Exim 4.52) id 1Fuo29-0004bz-5w; Mon, 26 Jun 2006 11:09:33 +0100 Message-ID: <449FB25D.9090301@dial.pipex.com> Date: Mon, 26 Jun 2006 11:09:33 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.13) Gecko/20060515 X-Accept-Language: en MIME-Version: 1.0 To: Nikolas Britton References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Mailing List Subject: Re: help with 'tar|rsh tar' 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: Mon, 26 Jun 2006 10:39:38 -0000 Nikolas Britton wrote: > I need to backup the /data directory on hostA to /data on hostB, about > 1TB of data on a gigabit link. Right now I'm using scp but the > handshake latency and ssh overhead is killing me. > Try openssh-portable from ports and set these two: HPN "Enable HPN-11 SSH/SCP patch" off \ HPN_NONECIPHER "Enable HPN-11 with None Cipher patch" off \ Then use "scp -z" to do the copy. You need this version of ssh at both ends for -z (no data encryption) to work. HPN improves the performance of ssh no end on internal gigabits. No idea if it will match the ttcp solution, but much safer than enabling rsh :-) --Alex