From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Thompson, David" Subject: Re: Tor hidden services Date: Fri, 27 Nov 2015 19:17:32 -0500 Message-ID: References: <87mvtzvvrh.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49945) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a2TCp-00058L-0P for guix-devel@gnu.org; Fri, 27 Nov 2015 19:17:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a2TCn-0002aO-Sm for guix-devel@gnu.org; Fri, 27 Nov 2015 19:17:34 -0500 Received: from mail-yk0-x22d.google.com ([2607:f8b0:4002:c07::22d]:36763) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a2TCn-0002aB-Jh for guix-devel@gnu.org; Fri, 27 Nov 2015 19:17:33 -0500 Received: by ykdr82 with SMTP id r82so131256686ykd.3 for ; Fri, 27 Nov 2015 16:17:33 -0800 (PST) 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: =?UTF-8?Q?Ludovic_Court=C3=A8s?= Cc: guix-devel On Fri, Nov 27, 2015 at 6:59 PM, Ludovic Court=C3=A8s wrote: > Commit adds =E2=80=98tor-hidden-service=E2=80=99, which can be used to sp= ecify hidden > services quite easily. > > For example, to have your SSH daemon accessible over something.onion:22, > just do: > > (operating-system > ;; =E2=80=A6 > (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. Wow, awesome! I've never used a Tor hidden service before because I never understood how things work, but this configuration looks so simple that I don't have much excuse to not try it out. Thanks! - Dave