ssh别名登录密钥登录实例教程

centos上使用别名和是用密钥登录:

vim /root/.ssh/config  #输入下列内容
Host *
User root   #以root登录
ServerAliveInterval 60   #存活时间
 
#test1
Host q0    #登录的别名
HostName 10.10.10.1 #ip地址
User root
Port 22
IdentityFile ~/.ssh/skey_web  #私钥的路径
 
#web1
Host q1
HostName 10.10.10.1
User root
Port 22
IdentityFile ~/.ssh/skey_web

 
把私钥传到上边定义的路径下修改权限:
chmod 600 ~/.ssh/skey_web
必须要改。只能是属主的才能读和写
 
然后重新启动ssh  试着登录一下:
ssh q1

© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享