- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章基于Xshell使用密钥方式连接远程主机由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
基于xshell使用密钥方式连接远程主机,具体内容如下 。
连接远程主机,就验证身份而言,一般有两种方式,一种是通过用户密码;另一种通过公钥的方式(public key).
图1、xshell支持验证登录用户的方式 。
下面就使用public key的方式来实现连接,通过工具ssh-kengen生成密钥对.
注意:操作之前需要ping通本机和目的主机(如果ping不通,可能的原因是防火墙、selinux没关闭,或者网关设置有问题等) 。
使用xshell,这里使用的是xshell manager 5,目的主机为centos6,将需要连接的远程主机称为目的主机.
目的主机安装ssh服务端,并开启 。
1
2
3
4
5
6
|
[root@node1 ~]$ yum
install
-y openssh-server
# 安装openssh服务端
[root@node1 ~]$ yum
install
-y openssh-clients
#安装openssh客户端,可以不安装
[root@node1 ~]$ service sshd start
# 临时开启sshd服务
[root@node1 ~]$ chkconfig sshd on
# 永久开启sshd服务,服务器重启也生效
[root@node1 ~]$service sshd status
# 查看sshd服务运行状态
openssh-daemon (pid 1384) 正在运行...
# 显示正在运行
|
生成ssh密钥对(包括私钥和公钥) 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[root@node1 ~]$ (
umask
0077;
ssh
-keygen)
# 生成ssh密钥对,并将权限设置为600
generating public
/private
rsa key pair.
enter
file
in
which
to save the key (
/root/
.
ssh
/id_rsa
):
# 回车
enter passphrase (empty
for
no passphrase):
enter same passphrase again:
your identification has been saved
in
/root/
.
ssh
/id_rsa
.
your public key has been saved
in
/root/
.
ssh
/id_rsa
.pub.
the key fingerprint is:
fd:72:10:50:a6:7d:83:c7:93:d2:26:3d:12:0e:38:2f root@node1
the key's randomart image is:
+--[ rsa 2048]----+
| .o.+ |
| o b * . |
| o. o % |
| e .. o + |
| .s o |
| o |
| . o |
| o |
| |
+-----------------+
[root@node1 ~]$
cd
.
ssh
/
[root@node1 .
ssh
]$ ll
# 查看密钥/公钥对信息,权限都为600
总用量 8
-rw-------. 1 root root 1675 5月 21 14:26 id_rsa
# 私钥
-rw-------. 1 root root 392 5月 21 14:26 id_rsa.pub
# 公钥
[root@node1 .
ssh
]$
|
修改sshd连接配置文件vim /etc/ssh/sshd_config 。
1
2
3
|
passwordauthentication no
# 不允许密码验证登录
pubkeyauthentication
yes
# 允许公钥验证登录
authorizedkeysfile .
ssh
/id_rsa
.pub
# 指定公钥文件路径
|
将ssh密钥对导出到本机,建议创建一个目录专用放置密钥对 。
1
2
|
#]sz id_rsa
#]sz id_rsa.pub
|
重载sshd服务 。
1
2
|
[root@node1 .
ssh
]$ service sshd reload
重新载入 sshd: [确定]
|
使用xshell连接 。
1
|
ssh
root@ip
|
图2、选择密钥文件 。
图3、导入私钥并确定 。
注意:点击确定之后还要重新连接一次 。
图4、连接成功 。
客户端使用私钥去验证,而远程主机使用公钥验证.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
最后此篇关于基于Xshell使用密钥方式连接远程主机的文章就讲到这里了,如果你想了解更多关于基于Xshell使用密钥方式连接远程主机的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我知道我可以在 xshell 上键入 docker-engine ssh default ,但是内容将被连接,如果我按 ctrl + c (在 Linux 上经常中断命令),它将离开 docker 机
在我的Xshell中,一切都是这样的: 但是当我进入 gnu-screen 时,我的颜色变灰了...... 我用谷歌搜索,找到 Default, screen uses an 8-color term
我在使用xshell时无法通过alt+tab切换到其他窗口。 有人可以帮我吗?谢谢! 最佳答案 您的问题听起来像是您将 XShell 设置为“始终在最前面” 首先,确保在“ View ”选项下禁用“透
我是一名优秀的程序员,十分优秀!