User Tools

Site Tools


hgk:hacks:misc:ssh

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

hgk:hacks:misc:ssh [2015/11/17 12:40] – created michfielhgk:hacks:misc:ssh [2015/11/19 15:00] (current) – removed michfiel
Line 1: Line 1:
-====== Setting up SSH ====== 
- 
- 
-On the local workstation: 
-  * Open up Terminal.app 
-  * cd .ssh 
-  * ssh-keygen -t rsa1  (creates an RSA1 key pair for SSH protocol version 1 communication) 
-    * Choose default location, and leave the passphrase empty. 
-  * ssh-keygen -t dsa  (creates a DSA key pair for SSH protocol version 2 communication) 
-    * Choose default location, and leave the passphrase empty. 
-  * ssh-keygen -t rsa (creates an RSA key pair for SSH protocol version 2 communication) 
- 
-  * Copy identity.pub, id_dsa.pub and id_rsa.pub to the remote SSH server.   
- 
-On the remote server: 
- 
-  * cat identity.pub >> ~/.ssh/authorized_keys (appends the line in the file to the end of authorized_keys, for SSH protocol version 1 communication) 
-  * cat id_dsa.pub >> ~/.ssh/authorized_keys2  (appends the line in the file to the end of authorized_keys2, for SSH protocol version 2 communication) 
-  * cat id_rsa.pub >> ~/.ssh/authorized_keys2 
- 
-  * Make sure your .ssh directory is NOT group/world readable.  (chmod -R 0600 ~/.ssh will take care of this) 
-  * SSH to the remote server after creating and moving your SSH keys into place. You will be prompted to accept the remote server's host key.   
  
hgk/hacks/misc/ssh.1447760446.txt.gz · Last modified: 2015/11/17 12:40 by michfiel