Home [Linux] ssh config 설정하기
Post
Cancel

[Linux] ssh config 설정하기

  1. ~/.ssh/config 파일 생성
  2. Config 설정
    1
    2
    3
    4
    5
    
    Host [호스트이름]
      HostName [private IP]
      User [user name]
      PORT [port번호]
      IdentityFile [키 위치]
    
  3. 보안을 위해 권한 제한 chmod 440 config

※ Vagrant로 생성한 VM을 추가하려면 vagrant ssh-config 명령어를 통해 설정 정보를 확인할 수 있다.

This post is licensed under CC BY 4.0 by the author.