매번 개인 키를 언급하지 않는 상황에서 ssh를 사용하여 인증하는 방법
~/.ssh
, Windows와git bash를 사용하면 C:\Users\<user>\.ssh
다음 형식으로 config
라는 파일을 만듭니다.Host *.someurl.com
IdentityFile ~/.ssh/my_key
이 예에서 *
(별표) 는 모든 것을 대표한다.현재 도 ssh [email protected]
를 연결합니다.ssh 프로필의 더 많은 예시.
Host someurl.com
IdentityFile <path to private key>
Host <ip address>
IdentityFile <path to private key>
컴퓨터에 연결하는 시간을 절약하기 위해 설정을 더 정의할 수 있습니다Host dev
HostName dev.mysite.com
IdentityFile <path to private key>
User ubuntu
Host stage
HostName stage.mysite.com
IdentityFile <path to private key>
User <username>
ssh dev
또는 ssh stage
에 직접 연결합니다.
Reference
이 문제에 관하여(매번 개인 키를 언급하지 않는 상황에서 ssh를 사용하여 인증하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mohitkyadav/how-to-authenticate-with-ssh-without-mentioning-private-key-each-time-6lk텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)