RSS

Tag Archive | "openssh"

Passwordless SSH login using SSH Keys

Wednesday, July 1, 2009

0 Comments

SSH keys allow you to login without requiring you to type in your password this tutorial will teach you how to set them up First we need to create the key ssh-keygen -t rsa Then we need to move it over to the machine that we want to be able to login too without the need for a [...]

Continue reading...

Chroot Sftp

Sunday, May 3, 2009

0 Comments

Create a Chrooted group addgroup chrooted Open up /etc/ssh/sshd_config and add the following to the end of it Subsystem sftp internal-sftp Match group chrooted ChrootDirectory /home/%u X11Forwarding no ForceCommand internal-sftp Restart SSHD /etc/init.d/ssh restart Then make users chrooted by adding them to the chrooted group adduser user chrooted Now when the user sftps the server they will only see the contents of there home folder

Continue reading...

SSH Tunnel

Sunday, April 5, 2009

0 Comments

Download Putty From Here Run Putty and insert your servers host name Expand ssh on the sidebar and select tunnels Check the Dynamic Box and in Source port enter a port e.g 3000 and then Press Add Press open and login to your ssh account. Open the event log if you want by holding down ctrl right clicking and [...]

Continue reading...