Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ssh [2016/09/28 02:11] – created tmaier | ssh [2020/12/29 02:09] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | SSH-Keys erstellen: | + | ====== SSH ====== |
+ | |||
+ | ===== Create | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | ===== SSH Proxy ===== | ||
+ | |||
+ | '' | ||
+ | ===== SSH Agent Forwarding ===== | ||
+ | |||
+ | '' | ||
+ | ===== Force Password Authentication (client-side) ===== | ||
+ | |||
+ | < | ||
+ | ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no < | ||
+ | </ | ||
+ | |||
+ | ===== SSH Folder Permissions Client ===== | ||
+ | |||
+ | < | ||
+ | chmod 700 ~/.ssh | ||
+ | chmod 600 ~/ | ||
+ | chmod 600 ~/ | ||
+ | </ | ||
+ | |||
+ | ===== SSH Folder Permissions Server ===== | ||
+ | |||
+ | < | ||
+ | mkdir ~/.ssh | ||
+ | touch ~/ | ||
+ | chmod 600 ~/ | ||
+ | vim ~/ | ||
+ | </ | ||
+ |