soft@appleple.com

【SSH】鍵登録してログインする

■鍵を置くディレクトリィ作成。パーミッションは700に設定。

[root@www test]# ls -al
total 196
drwx------ 3 test test 4096 Jul 15 2008 .
drwxr-xr-x 49 test fwd-j 163840 Sep 14 15:11 ..
-rw------- 1 test test 1762 Mar 9 00:20 .bash_history
-rw-r--r-- 1 test test 24 Sep 25 2007 .bash_logout
-rw-r--r-- 1 test test 191 Sep 25 2007 .bash_profile
-rw-r--r-- 1 test test 124 Sep 25 2007 .bashrc
-rw-r--r-- 1 test test 5531 Sep 25 2007 .canna
drwx------ 2 test test 4096 Sep 25 2007 .ssh

■鍵ファイルの作成と、パーミッションを600に設定

・RSA1鍵(ssh version1)

% ssh-keygen -t rsa1
 作成される秘密鍵: ~/.ssh/identity
 作成される公開鍵: ~/.ssh/identity.pub
 
・RSA鍵(ssh version2)

% ssh-keygen -t rsa
 作成される秘密鍵: ~/.ssh/id_rsa
 作成される公開鍵: ~/.ssh/id_rsa.pub

[root@www .ssh]# ls -la
total 12
drwx------ 2 test test 4096 Sep 25 2007 .
drwx------ 3 test test 4096 Jul 15 2008 ..
-rw------- 1 test test 343 Sep 25 2007 authorized_keys

[root@www .ssh]# cat authorized_keys
1024 35 142249318003852329626915765756631136252451072708048892232552036132709975652844475119389797793720319612077273721302587975611649034126677685377997527539765093697062594857462703880931604259202784145615827348813136038542545303111802111213981593694806383548588397252716952726037253209088598574165847467801210525281 test@test.com

Last Update : 2010年03月09日 (火) 14:28