====== SSH ====== ===== Create SSH Keys ===== [[https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/|Github-Howto]] ===== SSH Proxy ===== ''ssh -C2qTnN -D 12345 -p 22 @'' ===== SSH Agent Forwarding ===== ''ssh -A @'' ===== Force Password Authentication (client-side) ===== ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no ===== SSH Folder Permissions Client ===== chmod 700 ~/.ssh chmod 600 ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa.pub ===== SSH Folder Permissions Server ===== mkdir ~/.ssh touch ~/.ssh/authorized_keys chmod 600 ~/.ssh/authorized_keys vim ~/.ssh/authorized_keys