From owner-freebsd-questions@FreeBSD.ORG Sat Jun 7 21:36:32 2003 Return-Path: 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 9E41B37B401 for ; Sat, 7 Jun 2003 21:36:32 -0700 (PDT) Received: from mail.econolodgetulsa.com (mail.econolodgetulsa.com [198.78.66.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09CE143F93 for ; Sat, 7 Jun 2003 21:36:31 -0700 (PDT) (envelope-from user@mail.econolodgetulsa.com) Received: from mail (mail [198.78.66.163])h584aWnW017953 for ; Sat, 7 Jun 2003 21:36:32 -0700 (PDT) (envelope-from user@mail.econolodgetulsa.com) Date: Sat, 7 Jun 2003 21:36:32 -0700 (PDT) From: Josh Brooks To: freebsd-questions@freebsd.org Message-ID: <20030607213312.S81042-100000@mail.econolodgetulsa.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: How do I set up a ssh tunnel between two FreeBSD systems ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 04:36:32 -0000 Hello, I have read the ssh man page and am not getting the results I think I should. some background: serverA is the client serverB is running sendmail on port 25 I want to telnet to serverA on port 34 and get a response from the sendmail daemon running on serverB. I tried this: ssh -L 34:serverB:25 user@serverB ^^^ seems to be what the man page instructs me to do ... But when I run that command, it asks me for a password, and I log into serverB just like any other time I ssh there to log in. So that's that - the above command line does nothing but log me into serverB. If I port scan serverA, nothing is running on port 34. So basically it's a total bust. I am running this ssh command on serverA as root. So what am i doing wrong ? Thanx!