vote up 4 vote down star
3

My campus only lets ssh access through a gateway server. So to access the cluster I am coding on I have to ssh to the gateway and then ssh to the machine I am working on. The connection is very slow at times and is frustrating to work on.

I would love to use something like tramp which I understand would have the buffer open on my local machine and only talk through the network when I save to disk. I am not very familiar with tramp at all and struggling to get it to work, especially through the double hop. The documentation says this is accomplished through defining proxies in tramp, but I am unable to understand the syntax.

Does anyone know how to use emacs to code through a double hop or have an alternate workaround for editing code through two ssh hops?

flag

It might help if you could explain what exactly you don't understand about the documentation: gnu.org/software/tramp/#Multi_002dhops – Jouni K. Seppänen Apr 4 '09 at 6:31

3 Answers

vote up 3 vote down check

If you have the latest version of Emacs then multi is no longer supported.

In you .emacs config file add the following:

(add-to-list 'tramp-default-proxies-alist
                 '("HOSTB" nil "/ssh:USERA@HOSTA:"))

Where HOSTB is the destination host behind HOSTA.

Then type /ssh:USERB@HOSTB: and emacs will prompt for the HOSTA password then the HOSTB password.

link|flag
Any idea why multi has been removed? It was awesome :( – Legooolas May 20 at 15:42
vote up 5 vote down

You should use ssh to do the double hop. In your .ssh/config:

Host <host that must be proxied too>
ProxyCommand ssh -qxT <gateway host> nc %h %p
link|flag
I have never gotten that to work. I trid it just now and it prompts me for my password on the gateway and says: "ssh_exchange_identification: Connection closed by remote host" Then quits – f4hy Apr 3 '09 at 21:58
Keep in mind that you'll need netcat installed on the hop machine. However, you should be able to compile it yourself and keep it in ~/bin/ You may have to put the full path in the proxycommand (... /home/yourname/bin/nc %h %p) – Benson Apr 3 '09 at 21:59
Oh, and keep in mind that this will work best if you have keys set up, or you'll end up typing your password a lot (i.e. twice per login). – Benson Apr 3 '09 at 22:33
vote up 2 vote down

Tramp has a multi method. On GNU Emacs, you could use it like this:

/multi:ssh:user1@host1:ssh:user2@host2:/foo/bar/baz

to open /foo/bar/baz on host2. The same thing is possible on XEmacs, but with a somewhat different syntax. You can use different access methods, too.

link|flag
multi doesn't work using this for me. Hasn't it been removed in recent versions of Emacs? – Legooolas May 20 at 15:42
How recent? I am using Emacs 22.3 on Debian/unstable boxes and it works just fine. – hillu May 31 at 17:07

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.