ssh(ssh-keygen) 비밀번호를 입력하지 않고 원격 호스트에 로그인하는 방법 설정

1475 단어
환경: 로컬 호스트:ha01eth0: 192.168.1.100//대외 IP 주소
원격 호스트:ha02eth0: 192.168.1.200//대외 IP 주소
로컬 호스트 ha01 구성:
 
  
[root@ha01 /]# cd /etc/ssh
[root@ha01 ssh]# ssh-keygen -t rsa -N "" ( key ,-N "" )
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
82:2c:74:43:8e:16:f4:ef:ac:91:0f:d7:6f:a6:f3:59 root@ha01

원격 호스트로 공공 키 복사 (원시 방법):ha02 서버에서/root/.ssh/authorized_keys 파일이 없습니다.
 
  
[root@ha01 ssh]# scp /root/.ssh/id_rsa.pub [email protected]:/root/.ssh/authorized_keys

authorizedkeys 파일이 ha01에서 실행됩니다.
 
  
[root@ha01 ssh]# scp /root/.ssh/id_rsa.pub [email protected]:/root/.ssh/

ha02에서 실행:
 
  
[root@ha02 /]# cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys

공공 키를 원격 호스트로 복사하기 (새로운 방법): ssh-copy-id를 사용하여 공공 키를 원격 호스트로 안전하게 복사할 수 있습니다
ha01에서 실행:
 
  
[root@ha01 ssh]# ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]

SSH 로그인 테스트:
 
  
[root@ha01 ssh]# ssh ha02
Last login: Fri Apr 8 10:41:28 2011 from ha01

좋은 웹페이지 즐겨찾기