Show pageOld revisionsBacklinksExport to PDFBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== 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 <system_user>@<domain>'' ===== SSH Agent Forwarding ===== ''ssh -A <system_user>@<domain>'' ===== Force Password Authentication (client-side) ===== <code> ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no <domain> </code> ===== SSH Folder Permissions Client ===== <code> chmod 700 ~/.ssh chmod 600 ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa.pub </code> ===== SSH Folder Permissions Server ===== <code> mkdir ~/.ssh touch ~/.ssh/authorized_keys chmod 600 ~/.ssh/authorized_keys vim ~/.ssh/authorized_keys </code> ssh.txt Last modified: 2020/12/29 02:09by 127.0.0.1