# 2048 비트의 RSA키 생성
ssh-keygen -t rsa -b 2048 -f [파일이름]
# Server에 authorized_keys 파일 생성 (파일이 없는 경우)
mkdir ~/.ssh/
chmod 700 ~/.ssh/
touch ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
# 클라이언트에서 공개키 복사
cat ~/.ssh/[파일이름].pub
# 서버의 authorized_keys 에 붙여넣기
vi ~/.ssh/authorized_keys
# 개인키를 PEM 포맷으로 변경
openssl rsa -in [파일이름] -outform PEM -out [파일이름].pem
chmod 700 ru.pem
# 키 테스트
ssh -i ./[파일이름].pem user@host -p 22
개발/Linux