linux ssh别名登录的方法是什么
时间:2023-05-16 10:30
为了方便登录服务器,我们一般使用putty、securecrt等等工具。在终端如何通过服务器别名来进行登录呢? 可以创建~/.ssh/config 文件并为每台服务器指定登录信息和验证方法,如下所示: 然后直接指定别名进行登录 shell hostname 指定登录的主机名或ip地址 以上就是linux ssh别名登录的方法是什么的详细内容,更多请关注Gxl网其它相关文章!$ vim ~/.ssh/confighost www hostname www.ttlsa.com port 22 user root identityfile ~/.ssh/id_rsa.pub identitiesonly yeshost bbs hostname 115.28.45.104 user anotheruser pubkeyauthentication no
$ ssh www
1 $ ssh www
选项注释:
port 指定登录的端口号
user 登录用户名
identityfile 登录的公钥文件
identitiesonly 只接受ssh key 登录
pubkeyauthentication