From owner-freebsd-hackers@FreeBSD.ORG Sat Sep 27 10:15:16 2008 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18A2A1065694 for ; Sat, 27 Sep 2008 10:15:16 +0000 (UTC) (envelope-from bipolor@gmail.com) Received: from po-out-1718.google.com (po-out-1718.google.com [72.14.252.158]) by mx1.freebsd.org (Postfix) with ESMTP id DDF588FC1E for ; Sat, 27 Sep 2008 10:15:15 +0000 (UTC) (envelope-from bipolor@gmail.com) Received: by po-out-1718.google.com with SMTP id y22so1905223pof.3 for ; Sat, 27 Sep 2008 03:15:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=VAmie3E8Jo/cHSSVvMRsLnbIm82JjAC/z1blSKFTNkY=; b=EUr3q0nh8HJYFfWo5kyktQnZs8mYUBpDvwN93Xjx2A8qqHdUSuqUARGfpq+w1xg98u rnX7bag89Sfw7+WKKqU6Wze0I5UQ+iRAk5rF0Hf2/7RB4y0DUk2ei3OgBKuwwPAxrGeB SVXORZuBKppK7K/rhd8S/fOx2v18WB1tArVKc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=tPbxjKkbWUu/ShG5UbuSdOqtCvRgRHM3L+mcWtc2nG1ALw+3wDX/Ydd90yL1qwk1Ei L3R+x0aUkyZGyHYNYSWQPsDWlJk7EPkXSXMFDnqj5ZpreZ3r+wVdkK6kHVmIKtw3+Z2r PEmNfKvXVJ+tXJKXYm5iNQfwQln4q+7ynPgsU= Received: by 10.141.162.5 with SMTP id p5mr1267551rvo.113.1222509668376; Sat, 27 Sep 2008 03:01:08 -0700 (PDT) Received: by 10.141.128.12 with HTTP; Sat, 27 Sep 2008 03:01:08 -0700 (PDT) Message-ID: Date: Sat, 27 Sep 2008 03:01:08 -0700 From: "Mike Price" To: freebsd-hackers@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: SSH Tunneling All TCP Traffic X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Sep 2008 10:15:16 -0000 I need to tunnel all of my TCP SSH-2 traffic from my local box to my remote box that I will have an account on. I heard this can be done in one command? ssh -f me@lab.com -L 8888:lab.com:53 -N SOCKS: 8888 SSH2: 53 What am I doing wrong?