SSH 암호 없이 로그인 구성

1758 단어

SSH 암호 없이 로그인 구성


1. 이 컴퓨터는 ssh의 공개 키를 생성해야 합니다

ssh-keygen -t rsa

2. 원격 서버에 공개 키 업로드

scp ~/.ssh/id_rsa.pub root@192.168.1.123:/root/.ssh/authorized_keys

3. 서버 공개 키 파일, 디렉터리 권한 수정

chmod 700 /root/.ssh
chmod 600 /root/.ssh/authorized_keys 

4. 시스템 ssh 설정 수정

 vi /etc/ssh/sshd_config

# Authentication:
...
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile      .ssh/authorized_keys
...

5. 비로컬 환경에서 원격 로그인 필요


# Authentication:

LoginGraceTime 2m
PermitRootLogin yes
StrictModes yes
MaxAuthTries 6

6. sshd 서비스 재시작

service sshd restart

7. 로컬 로그인 테스트

ssh root@192.168.1.123

좋은 웹페이지 즐겨찾기