PDA

View Full Version : ssh question



SpriteSODA
July 13th, 2009, 11:52 AM
Hi guys, I've got a tricky problem: I was granted access to a server via ssh. the server has other servers connected to it, and in order to access them, i do it with an ssh connection inside the ssh, visualization:

my prompt> ssh server.server.com
server> ssh server2
server2> ..

How can I access server2 with a graphical sftp application?

ssam
July 13th, 2009, 12:21 PM
these might help you

https://www.nbcr.net/pub/wiki/index.php?title=SSH%2C_SCP_Tunneling
and
http://www.taclug.org/wiki/SSH

sanemanmad
July 13th, 2009, 12:28 PM
You can port forward.


serv1> ssh -L 22:localhost:2222 server.server.com
serv2> ssh -L 2222:localhost:22 server2

Now you can use sftp://localhost like normal and all should work