為了方便登入伺服器,我們一般會使用putty、securecrt等等工具。在終端機如何透過伺服器別名來進行登入呢?
可以建立~/.ssh/config 檔案並為每台伺服器指定登入資訊和驗證方法,如下所示:
$ vim ~/.ssh/config host www hostname www.ttlsa.com port 22 user root identityfile ~/.ssh/id_rsa.pub identitiesonly yes host bbs hostname 115.28.45.104 user anotheruser pubkeyauthentication no
然後直接指定別名進行登入
shell
$ ssh www
1 $ ssh www
選項註解:
hostname 指定登入的主機名稱或ip位址
port 指定登入的連接埠號碼
user 登入用戶名
identityfile 登入的公鑰檔案
identitiesonly 只接受ssh key 登入
pubkeyauthentication
以上是linux ssh別名登入的方法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!