문제

I have an account on my college server and I access it on linux terminal using

  ssh {username}@{hostname}.com

I was Wondering if there is a way to access this account only by typing.

  ssh {hostname}

도움이 되었습니까?

해결책

Put this into your $HOME/.ssh/config:

Host somealias
    HostName example.com
    Port 22
    User myuser

You can then type ssh somealias and it will actually do a ssh -p 22 myuser@example.com

다른 팁

Like the comments say: Yes, if username is the same on both client and server

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top