정기적으로 로그인하는 서버 중 하나에 다른 (할당되고 변경할 수없는) 사용자 이름이 있으며 매번 기록하지 않으려 고합니다. 이 라인을 만들 수 있습니까
[tohecz@localhost ~]$ ssh myserver.cz
[tohecz@localhost ~]$ ssh anotherserver.cz
다음과 같이 행동합니까?
[tohecz@localhost ~]$ ssh tohecz@myserver.cz
[tohecz@localhost ~]$ ssh anotheruser@anotherserver.cz
답변
~/.ssh/config
파일에 다음을 추가 하십시오.
Host myserver.cz
User tohecz
Host anotherserver.cz
User anotheruser
이 파일을 사용하여 호스트에 많은 기본 매개 변수를 지정할 수 있습니다. 다른 가능성에 대해서는 man ssh_config 를 살펴보십시오 .