PDA

View Full Version : ssh manager for gnome?



bp1509
August 17th, 2008, 12:02 AM
d

Technoviking
August 17th, 2008, 06:32 AM
You can the sshmenu-gnome applet.

bp1509
August 17th, 2008, 04:48 PM
d

ssam
August 17th, 2008, 05:05 PM
i recommend making a ~/.ssh/config file. there is a simple example at http://lookherefirst.wordpress.com/2007/12/17/a-simple-ssh-config-file/ and some info at http://kimmo.suominen.com/docs/ssh/#config or in the ssh manpage.

I use one to get to 2 severs behind NAT. the router is set to forward port 23 to one of them, and 25 to the other


Host server1
Hostname 1.2.3.4
Port 23
HostKeyAlias server1

Host server2
Hostname 1.2.3.4
Port 24
HostKeyAlias server2

Host *
Compression yes
ForwardX11 yes
EscapeChar ~



sshmenu-gnome should use the info

bp1509
August 18th, 2008, 02:00 AM
d

JT9161
August 18th, 2008, 02:50 AM
Putty is available on Linux as well as in the repos

LookTJ
August 18th, 2008, 03:05 AM
One last question, how would i go about creating a dynamic socks proxy to route all traffic pointed to a particular point on the localhost through my ssh connection via the config file.

typically this is rather easy but i can't find anything that would let me know how to do this on the config file.
ssh -D alias/user@host(whatever you use)? Does this work?

bp1509
August 18th, 2008, 03:17 AM
d