From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: Tor hidden services Date: Sat, 28 Nov 2015 14:37:44 -0500 Message-ID: <20151128193744.GA10691@jasmine> References: <87mvtzvvrh.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a2lHg-0001qK-Gc for guix-devel@gnu.org; Sat, 28 Nov 2015 14:35:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a2lHd-0004Tb-0a for guix-devel@gnu.org; Sat, 28 Nov 2015 14:35:48 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:48834) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a2lHc-0004Sy-T9 for guix-devel@gnu.org; Sat, 28 Nov 2015 14:35:44 -0500 Content-Disposition: inline In-Reply-To: <87mvtzvvrh.fsf@gnu.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?iso-8859-1?Q?Court=E8s?= Cc: guix-devel On Sat, Nov 28, 2015 at 12:59:46AM +0100, Ludovic Courtès wrote: > Commit adds ‘tor-hidden-service’, which can be used to specify hidden > services quite easily. > > For example, to have your SSH daemon accessible over something.onion:22, > just do: > > (operating-system > ;; … > (services (cons* (lsh-service #:interfaces '("127.0.0.1")) > (tor-hidden-service "ssh" '((22 "127.0.0.1:22"))) > (tor-service) > %desktop-services))) > > and then you can: > > torify ssh something.onion > > from anywhere. That's awesome! Thanks for making this service. Are there any technical advantages to using lsh instead of OpenSSH, or is the primary advantage the copyleft license?