Re: SSH tunnel for ssh traffic

2010-05-18 Thread Bob Marcan
On Mon, 17 May 2010 10:38:55 -0400 Bill Davidsen wrote: > Christoph Höger wrote: > > Hi, > > > > I need to ssh to some remote VM that sit in a private LAN. For any other > > service (e.g. RDP) I'd use ssh tunneling just normal. > > But what do I do for ssh traffic? Since ssh is not host agnostic

Re: SSH tunnel for ssh traffic

2010-05-17 Thread Bill Davidsen
Christoph Höger wrote: > Hi, > > I need to ssh to some remote VM that sit in a private LAN. For any other > service (e.g. RDP) I'd use ssh tunneling just normal. > But what do I do for ssh traffic? Since ssh is not host agnostic, it > will always complain about localhost having a different RSA key

Re: SSH tunnel for ssh traffic

2010-05-16 Thread Cameron Simpson
On 16Apr2010 01:24, Matt Domsch wrote: | On Thu, Apr 15, 2010 at 04:12:20PM +0200, Christoph H?ger wrote: | > I need to ssh to some remote VM that sit in a private LAN. For any other | > service (e.g. RDP) I'd use ssh tunneling just normal. | > But what do I do for ssh traffic? Since ssh is not ho

Re: SSH tunnel for ssh traffic

2010-04-16 Thread Mail Llists
>> Hi, >> >> I need to ssh to some remote VM that sit in a private LAN. For any other >> service (e.g. RDP) I'd use ssh tunneling just normal. >> But what do I do for ssh traffic? Since ssh is not host agnostic, it >> will always complain about localhost having a different RSA key. >> I just do no

Re: SSH tunnel for ssh traffic

2010-04-16 Thread Bill Davidsen
Christoph Höger wrote: > Hi, > > I need to ssh to some remote VM that sit in a private LAN. For any other > service (e.g. RDP) I'd use ssh tunneling just normal. > But what do I do for ssh traffic? Since ssh is not host agnostic, it > will always complain about localhost having a different RSA key.

Re: SSH tunnel for ssh traffic

2010-04-16 Thread mike cloaked
On Fri, Apr 16, 2010 at 7:24 AM, Matt Domsch wrote: > On Thu, Apr 15, 2010 at 04:12:20PM +0200, Christoph H?ger wrote: >> Hi, >> >> I need to ssh to some remote VM that sit in a private LAN. For any other >> service (e.g. RDP) I'd use ssh tunneling just normal. >> But what do I do for ssh traffic?

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Matt Domsch
On Thu, Apr 15, 2010 at 04:12:20PM +0200, Christoph H?ger wrote: > Hi, > > I need to ssh to some remote VM that sit in a private LAN. For any other > service (e.g. RDP) I'd use ssh tunneling just normal. > But what do I do for ssh traffic? Since ssh is not host agnostic, it > will always complain

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Rick Sewill
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/15/2010 04:38 PM, Christoph Höger wrote: > >> >> Host remote >> HostKeyAlias myAliasForRemote >> HostName remote.com >> LocalForward veryremotehost:22 >> >> Host veryremote >> HostKeyAlias myAliasForVeryRemote >> Ho

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Christoph Höger
Am Donnerstag, den 15.04.2010, 18:04 -0400 schrieb Kevin J. Cummings: > RTFM Yeah, there was this -p switch because ssh uses : in a different way. I should have known this, its been a pretty long day. No time for reading man pages anymore ;) signature.asc Description: Dies ist ein digital signie

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Kevin J. Cummings
On 04/15/2010 05:40 PM, Christoph Höger wrote: > Am Donnerstag, den 15.04.2010, 07:48 -0700 schrieb Konstantin Svist: > > ssh localhost:12345 does not work (tries to resolve localhost:12345 as > hostname, dunno why) Because it should be: ssh -p 12345 localhost RTFM -- Kevin J. Cummings kjch..

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Christoph Höger
Am Donnerstag, den 15.04.2010, 07:48 -0700 schrieb Konstantin Svist: > On 04/15/2010 07:12 AM, Christoph Höger wrote: > > Hi, > > > > I need to ssh to some remote VM that sit in a private LAN. For any other > > service (e.g. RDP) I'd use ssh tunneling just normal. > > But what do I do for ssh traff

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Christoph Höger
> (are you really worried about someone hijacking localhost?) :-) Yeah, that would work. Although ... you never know where *they* are looking after us... ;) signature.asc Description: Dies ist ein digital signierter Nachrichtenteil -- users mailing list users@lists.fedoraproject.org To unsubsc

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Christoph Höger
> > Host remote > HostKeyAlias myAliasForRemote > HostName remote.com > LocalForward veryremotehost:22 > > Host veryremote > HostKeyAlias myAliasForVeryRemote > HostName localhost > port This comes very close to my needs. Only one thing left: Is there an

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Rick Sewill
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/15/2010 09:12 AM, Christoph Höger wrote: > Hi, > > I need to ssh to some remote VM that sit in a private LAN. For any other > service (e.g. RDP) I'd use ssh tunneling just normal. > But what do I do for ssh traffic? Since ssh is not host agnosti

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Roberto Ragusa
Christoph Höger wrote: > I need to ssh to some remote VM that sit in a private LAN. For any other > service (e.g. RDP) I'd use ssh tunneling just normal. > But what do I do for ssh traffic? Since ssh is not host agnostic, it > will always complain about localhost having a different RSA key. > I ju

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Tom Horsley
On Thu, 15 Apr 2010 07:48:41 -0700 Konstantin Svist wrote: > You could use a nonstandard port for the connection. known_hosts > includes the port information when the port is not 22 - it looks > something like [localhost:1234] Really? When did that start happening? It always honks about localhost

Re: SSH tunnel for ssh traffic

2010-04-15 Thread Konstantin Svist
On 04/15/2010 07:12 AM, Christoph Höger wrote: > Hi, > > I need to ssh to some remote VM that sit in a private LAN. For any other > service (e.g. RDP) I'd use ssh tunneling just normal. > But what do I do for ssh traffic? Since ssh is not host agnostic, it > will always complain about localhost hav

SSH tunnel for ssh traffic

2010-04-15 Thread Christoph Höger
Hi, I need to ssh to some remote VM that sit in a private LAN. For any other service (e.g. RDP) I'd use ssh tunneling just normal. But what do I do for ssh traffic? Since ssh is not host agnostic, it will always complain about localhost having a different RSA key. I just do not want to edit the kn